-
@erikscholz Snapshots are your friend. Good luck!
-
@girish I have checked the Cloudron docs and seen the following:
βUpgrade fails with Full text search feature
There is a bug in Cloudron 7.2 where in the mail server does not start in Ubuntu 22 when the Full text search feature is turned on. Please wait till Cloudron 7.3 to upgrade.βSource: Upgrading to Ubuntu 22.04 (Jammy Jellyfish)
I think this note is obsolete and the docs can be updated?
Best
Jay -
@girish
Hi Girish. Upgrading from 18.04 to 20.04 went pretty well. Now I am kind of stuck at the end of the upgrade from 20.04 to 22.04. It's the step "/home/yellowtent/box/scripts/recreate-containers". I started it around 3 hours ago. It has not finished yet as you can see in the attached screenshot. I just have 6 apps running: 2 Ghost instances, Surfer, Umami and Chatwoot. Any idea what the issue could be? -
@erikscholz can you try rebooting the server? Sometimes that fixes the docker getting hung.
-
-
-
@girish Thank's, everything works
however, I had a problem with an in-house application Cantaloupe app (IIIF server). It didn't restart with this message in the logs:
cat: /sys/fs/cgroup/memory/memory.memsw.limit_in_bytes: No such file or directory
This application is based on the instructions given in the Cloudron documentation: Packaging app - Cheat Sheet. Specifically, the part that indicates that memory usage must be restricted for a java application with the following code:
LIMIT=$(($(cat /sys/fs/cgroup/memory/memory.memsw.limit_in_bytes)/2**20)) export JAVA_OPTS="-XX:MaxRAM=${LIMIT}M"
To solve my problem quickly, I redeployed this application by hard-coding a value to the
LIMIT
variable. But it's a hack -
This then means, that the system is using cgroups v2 now. I have updated the main docs section at https://docs.cloudron.io/packaging/cheat-sheet/#memory-limit for a start to make an app compatible with cgroup v1 and v2 (I guess in your case its sufficient to only support v2 now.)