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


Skip to content

Support

3.6k Topics 25.9k Posts

Get help for your Cloudron

  • mysql -> "too many connections"

    Unsolved mysql
    7
    1 Votes
    7 Posts
    333 Views
    jamesJ
    Hello @philkunz I can't tell what is accessing your MySQL Service, but if you use Cloudron in the default and not something out of the ordinary, it should be some app. To get details about the hosts and connection errors, ssh into your Cloudron server, then run: docker exec -it mysql bash -c 'mysql --user=root --password=$CLOUDRON_MYSQL_ROOT_PASSWORD --execute="SELECT * FROM performance_schema.host_cache"' This will show all. If you want to filter for the connection error specifically, run: docker exec -it mysql bash -c 'mysql --user=root --password=$CLOUDRON_MYSQL_ROOT_PASSWORD --execute="SELECT HOST, SUM_CONNECT_ERRORS FROM performance_schema.host_cache WHERE SUM_CONNECT_ERRORS > 0;"' it will create an output like: mysql: [Warning] Using a password on the command line interface can be insecure. +-----------------+--------------------+ | HOST | SUM_CONNECT_ERRORS | +-----------------+--------------------+ | my-cloudron-dev | 1 | +-----------------+--------------------+ You can also filter for the amount of auth errors with something like this: docker exec mysql bash -c 'mysql --user=root --password=$CLOUDRON_MYSQL_ROOT_PASSWORD --execute="SELECT HOST, IP, SUM_CONNECT_ERRORS, COUNT_AUTHENTICATION_ERRORS FROM performance_schema.host_cache \G;"' Which will return something like this: *************************** 1. row *************************** HOST: my-cloudron-dev IP: fd00:c107:d509::1 SUM_CONNECT_ERRORS: 0 COUNT_AUTHENTICATION_ERRORS: 40 *************************** 2. row *************************** HOST: mysql IP: fd00:c107:d509::5 SUM_CONNECT_ERRORS: 0 COUNT_AUTHENTICATION_ERRORS: 17 *************************** 3. row *************************** HOST: mysql IP: 172.18.30.1 SUM_CONNECT_ERRORS: 0 COUNT_AUTHENTICATION_ERRORS: 1 *************************** 4. row *************************** HOST: my-cloudron-dev IP: 172.18.0.1 SUM_CONNECT_ERRORS: 1 COUNT_AUTHENTICATION_ERRORS: 2 There you can see I intentionally failed to connect many times from inside a Cloudron app by running: for i in {1..20}; do mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=WRONGPASSWORD --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE}; done When running this again from inside a Cloudron app, I can run the above MySQL query again and can see: *************************** 1. row *************************** HOST: my-cloudron-dev IP: fd00:c107:d509::1 SUM_CONNECT_ERRORS: 0 COUNT_AUTHENTICATION_ERRORS: 60 Is now 60 and was before 40. If this value keeps rising, without you doing anything manually. There is some app that is failing to connect to the MySQL service for some reason. My first suspect would be some WordPress developer app or a restored app that has old credentials from before the restore.
  • This topic is deleted!

    Unsolved
    0
    0 Votes
    0 Posts
    4 Views
    No one has replied
  • Mail app - FTS indexing fails on mailboxes with large attachments (HTTP timeout)

    Unsolved mail solr
    4
    4 Votes
    4 Posts
    303 Views
    girishG
    @paradoxbound I will look into this for Cloudron 10 for sure.
  • 1 Votes
    6 Posts
    256 Views
    girishG
    Whoops, this should be fixed now. We made a bad fix couple of days ago in cloudron.io, and it was providing incorrect subscription information.
  • Error - Error getting IP of mysql service

    Solved upgrade mysql
    3
    1
    1 Votes
    3 Posts
    139 Views
    J
    This was handled via support . The issue was related to docker storage corruption. Recreating docker images fixed it . And for the record, the issue was not related to 9.2 but 9.0.17 and still had ubuntu 20.04.
  • backup has started failing

    Solved backups
    4
    2 Votes
    4 Posts
    243 Views
    A
    Not sure exactly the cause, however the app being backed up was peertube, and a update was scheduled and failed around the same time. The fix was deleting the corrupt file in the snapshot folder on my truenas from shell. Then re-running the backup
  • Cloudron v9.2.0 makes app-menu items disappear

    Solved gui cloudron
    5
    2
    0 Votes
    5 Posts
    214 Views
    jamesJ
    Hello @imc67 A surfer app that I just installed on 7.2 does have the admin note: To access the admin interface, visit /_admin.
  • BoxError: Another backup task is in progress: Update task is active

    Solved backups
    3
    1 Votes
    3 Posts
    194 Views
    J
    Please re-open the topic if you hit the problem in the latest releases.
  • permission issue after installtion with hardened umask

    Solved platform
    4
    1 Votes
    4 Posts
    255 Views
    J
    Given that nodejs is really meant for cloudron only, maybe this can simply be installed in the yellowtent home directory itself Maybe this will get solved by moving box code into it's own container as well.
  • 1 Votes
    7 Posts
    392 Views
    F
    Hi, The issue is fixed now. I backed up /etc/docker/daemon.json, deleted it, then ran: systemctl daemon-reload systemctl restart docker Docker is now running again and Cloudron/apps are accessible. Thanks for your help!
  • Bug Report - UI inconsistensy on custom Udp Port

    Moved Solved
    8
    1 Votes
    8 Posts
    370 Views
    nebulonN
    Great catch! This is fixed for the next release with https://git.cloudron.io/platform/box/-/commit/5e2b531d9bc4fc180395b58c704b1ee083b0aa5f
  • 1 Votes
    16 Posts
    1k Views
    L
    @joseph thank you so much! What a wild ride this was - I found the smoking gun by checking package manager logs: On 2026-03-29 21:23:20 I installed prometheus-node-exporter to ship metrics to my Grafana monitoring stack - apparently the workflow also installed iptables-persistent which installed netfilter-persistent as a dependency. why, I don't know - but lesson learned.
  • Docker service is failing, cannot access dashboard

    Solved docker
    4
    2 Votes
    4 Posts
    198 Views
    jamesJ
    Hello @tyren_bm That is great to read! On another cautious note from me, Ubuntu 22 will be EOL May 2027. I know this is still one year into the future, but time is fleeting. You might want to upgrade your Ubuntu 22 to 24. Since Cloudron version 10 will also come with support for Ubuntu 26 this would mean that you'd only have to upgrade from 24 to 26 and not 2x versions when the time comes.
  • DNS Problem After Backup and restore -invalid api password

    Solved restore netcup dns
    6
    1 Votes
    6 Posts
    382 Views
    girishG
    @sponch it's possible to slow down but we have to know what the rate limit is. I cannot find anything in our docs about this. Do you have happen to be in touch with their support?
  • Cloudron won't update - No backup site for update

    Solved backup update
    27
    0 Votes
    27 Posts
    2k Views
    potemkin_aiP
    I was under impression I'm quite clear... I don't think the decision made by authors correct. I'm forced to do the backup, even though there is no technical requirement for that. I'm forced to do the backup the way authors want, even though I have my remedies. As a result, I've just found out one Cloudron instance seriously out of date with a Docker security vulnerability in it. Just because authors decided that I have to have a backup to have automatic backup - to have my systems up to date. Not sure I follow that...
  • Backup Integrity check runs into oom

    Solved backup integrity oom
    4
    1
    1 Votes
    4 Posts
    237 Views
    nebulonN
    If the second contains the System backups it would include those of stopped apps, where a backup was made there (since otherwise the backup data simply wouldn't be there). But I agree this is not great to migrate. I guess for now you would have to start the app, make a full system backup on the scondary backup site and then stop the app again. The code for retrieving backup data for integrity check depeneds on format and storage type. Memory consumption is hard to predict, so presumably S3 with some kind of data on that storage just gets it over the 400MB
  • 1 Votes
    13 Posts
    744 Views
    T
    @girish Thanks a lot - Much appreciated!
  • Seems like my server may be affected by the 9.1.7 update, lots of weird problems

    Solved
    15
    1 Votes
    15 Posts
    837 Views
    nebulonN
    glad it worked out in the end, when too many things fail all at once it is often a hardware/virtualization issue
  • SSHFS "Failed to mount (inactive): Could not determine mount failure reason"

    Solved
    4
    1
    1 Votes
    4 Posts
    215 Views
    jamesJ
    Hello @cylon Always happy to help.
  • Server do not reboot after Cloudron update

    Solved hostinger docker
    3
    2 Votes
    3 Posts
    314 Views
    C
    @sebastienserre Thank you. Your input on this error was very useful!