Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • 8.3.0: postgres upgrade failure

    Solved Support update postgresql
    5
    2 Votes
    5 Posts
    378 Views
    fbartelsF
    I could not let go if it, so I kept digging a bit. I had previously reset the memory limit back to its default, but bumped it to 6gb now for another test. This time the restore of Nextcloud went through. So now everything is operational again (and I also cleaned out some apps that had errors, but I was not using anyways anymore). To get back to a working state I needed to restore each up using a postgres database to the state from before the upgrade to 8.3.0. Else the app would have no data in their databases (Mastodon users and toots gone, Matrix rooms gone, for example).
  • Cloudron cli no longer asks for 2fa?

    Solved Support cli
    7
    1 Votes
    7 Posts
    161 Views
    fbartelsF
    Ah, I just found the error. For whatever reason the 2fa got disabled for my user and therefore the cli app did not ask for it. My password manager always filled out the 2fa field so I was unaware that it had actually been deactivated.
  • Update to Cloudron 8.3 error

    Unsolved Support tasks crash update
    3
    1
    2 Votes
    3 Posts
    205 Views
    girishG
    I will leave this question as unsolved.
  • 1 Votes
    6 Posts
    309 Views
    BrutalBirdieB
    @visamp said in New Hetzner Server Installation Best Practices: Do you recommend installing CrowdSec or not? Maybe it's overkill? I had it installed once, looked at pretty graphs for maybe 4–5 days. Then I forgot it, re-setup the server and did not install it again. So, I can not even tell you if it was helpful or not. But what I can say is, no one here really uses crowdsec, nor maintains support for it with cloudron. Good thing is, backup or snapshot, try it, decide for yourself, rollback if it is not to your liking.
  • 1 Votes
    3 Posts
    137 Views
    B
    Ok thanks. that was helpful! For other people seeking answers: You need to setup new subdomains & app to get one user by app. Example: Tony : tony_n8n.app.mydomain.com Chris : chris_n8n.app.mydomain.com etc
  • Cannot install Cloudron using Gandi API

    Solved Support gandi dns
    10
    1
    0 Votes
    10 Posts
    564 Views
    K
    @joseph that was indeed correct. I just generated another token, and it is now working correctly. There was an issue with the Gandi dashboard yesterday. Did not take the time to properly troubleshoot it. Looks like it indeed was a problem on the Gandi side of things. Thanks for your help. Side note: I love your product, and I have been happy paying subscriber for the past few years now. Keep up with the good work
  • Free version does not give 2 apps

    Solved Support appstore subscription
    9
    2 Votes
    9 Posts
    1k Views
    nebulonN
    @sweetea got your mail in support, will deal with that there.
  • TLSA and DANE is missing on Cloudron mailserver

    Solved Support email dane tlsa
    14
    2 Votes
    14 Posts
    2k Views
    P
    Just a quick note here. Route53 supports TLSA records now.
  • Membership questions

    Solved Support subscription
    4
    1 Votes
    4 Posts
    148 Views
    J
    @tzolak yes, no worries
  • 1 Votes
    6 Posts
    332 Views
    imc67I
    @jdaviescoates said in Cloudron seems to have changed to set-up ?all SPF records instead of ~all - why?: whereas only my newer ones have ?all I checked some domains on my Cloudron and noticed one has -all where all others have ~all. Then I realised that one was a recently transferred domain that was already 'working' and obviously the previous hoster had it like this, Cloudron didn't touch it when "importing" it.
  • Unreachable Dashboard

    Solved Support dashboard
    3
    0 Votes
    3 Posts
    121 Views
    nebulonN
    The posted error logs do not seem to be related as far as I can tell. But anyways if some food solves it, even better, hopefully also stays that way
  • Propagation isn't working

    Solved Support installation dns
    2
    1
    1 Votes
    2 Posts
    146 Views
    nebulonN
    Not sure what you mean with "redirect" here, but the code checks if the DNS A (and AAAA if you use ipv6 also) are in sync at all configured nameservers for this domain. So basically you just have to make sure that you have setup A records for my.heavendigital.com.br pointing to your server IP. Then after some time, depending on your DNS provider, this should succeed.
  • Cloudflare DNS, custom DNS server error

    Solved Support cloudflare domains
    8
    2 Votes
    8 Posts
    386 Views
    andreasduerenA
    @girish Much appreciated
  • OpenSSL version mismatch: impossible to use rsync or scp

    Solved Support cli openssl
    3
    0 Votes
    3 Posts
    216 Views
    BrutalBirdieB
    I never thought of this use-case. Using sftp inside a Cloudron app to move data away. Unique, I must admit. Testing inside a LAMP app to the new unstable SFTPgo app. mkdir -p /tmp/testing; cd /tmp/testing ssh-keygen -t ed25519 -f /tmp/testing/this -q -N "" # put the publickey into my profile in sftpgo.cloudron.dev sftp -i this -P 2022 elias.hackradt@sftpgo.cloudron.dev:/ sftp> put /app/data/tcl.zip [image: 1740783672764-e26df4a0-195d-43cb-9f69-46f3fa8516d4-image-resized.png] Seems to be working Sorry, where was I? Ah yes, your issue The error message OpenSSL version mismatch. Built against 30000020, you have 30100070 indicates that the version of OpenSSL used to build the sftp or related binary (such as ssh, libssh, openssh) is different from the version of OpenSSL currently installed on your system. Specifically: Built against 30000020: This means the binary was compiled against OpenSSL version 3.0.2 (I think don't pinpoint me on the semver). You have 30100070: This means your system currently has OpenSSL version 3.1.7 (same again, don't pinpoint me on the semver, not used to the 30100070 format). This mismatch can cause compatibility issues because the binary expects a specific version of OpenSSL but finds a different one at runtime. Running this in my LAMP App: openssl version OpenSSL 3.0.2 15 Mar 2022 (Library: OpenSSL 3.0.2 15 Mar 2022) and ssh -V OpenSSH_8.9p1 Ubuntu-3ubuntu0.4, OpenSSL 3.0.2 15 Mar 2022 Reveals, there is no issue inside the LAMP app. @chetbaker Could you maybe run openssl version, ssh -V and ldd $(which sftp) in your app with the id 23f10ac0-d9a3-4a1d-8265378464d7b1caasdasdas0 and post that output? Also can you tell us what app 23f10ac0-d9a3-4a1d-8265378464d7b1caasdasdas0 is? Since most apps are inherited from the Cloudron base image, that should be the same everywhere. So this error might be rather unique to your app. Could it be that your app is a custom packaged app? Since you are comfortable using the cloudron-cli, is this by chance an issue from your custom packaged app?
  • Weird email log probably spam attack?

    Solved Support email botnet
    8
    0 Votes
    8 Posts
    225 Views
    N
    You can also follow this great guide and set up an automated blocklist update: https://forum.cloudron.io/topic/3795/firewall-spamassassin-automatic-list-update/41?_=1740739173375 Might mitigate some (few) of these annoying spam attacks.
  • 1 Votes
    5 Posts
    224 Views
    BrutalBirdieB
    Somehow, this issue resolved itself overnight. I mean yea nice, it solved itself, but I wanted to understand whhhyyyyyy. Anyway. #SOLVED
  • Why removing packages?

    Solved Support update networking
    11
    1 Votes
    11 Posts
    911 Views
    potemkin_aiP
    For the future generations: better do ln -s /usr/bin/resolvectl /usr/local/bin/resolvconf to avoid messing with system's and cloudron settings Or use netplan's WireGuard capabilities.
  • glauth ldap backend

    Solved Support external-ldap
    20
    0 Votes
    20 Posts
    2k Views
    girishG
    @NCKNE added in https://git.cloudron.io/platform/box/-/commit/f78f6634fa29e0ca638f482c8e4f941c885e6301 . It hasn't run through our CI yet, but maybe that works for you already . You can patch server at /home/yellowtent/box/src/externalldap.js .
  • self-hosted server behind "freebox"

    Moved Solved Support installation
    3
    1 Votes
    3 Posts
    136 Views
    V
    Thank you for your answer. So I have to figure out how to redirect port 443. As it stands, I can't, but I'll try to find a way, thank you and good luck!
  • Cloudron stuck in restart loop since 8.x

    Solved Support troubleshooting crash
    10
    1
    1 Votes
    10 Posts
    350 Views
    J
    @im-fabian can you reach out at support@cloudron.io ? I think we have debug further with access to the server. thanks!