Rsshub upgrade failed because of low memory available

What app is this about, and its version: rsshub 2026.01.09~ynh1
What YunoHost version are you running: 12.1.39
What type of hardware are you using: VPS bought online

Describe your issue

I have rsshub version 2025.02.03~ynh1 installed and while trying to upgrade to version 2026.01.09~ynh1 that has been available since a few days, the process fails.

Share relevant logs or error messages

https://paste.yunohost.org/raw/uhakemukey

Quoting directly from StackOverflow:

“No space left on device” can also cause exit code 137. So check memory, disk space and exit code propagation from compose (or handling of sigterm correctly within timeout). Info for others searching for exit code 137.

Do you have enough RAM available (what does free -h say?) and some free disk space left (df -h - what does it have to say about your / mount?)

Well lack of memory could be the cause, yes.

$ free -h
total        used        free      shared  buff/cache   available
Mem:           1.9Gi       1.6Gi        78Mi       261Mi       657Mi       299Mi
Swap:             0B          0B          0B

while the disk looks ok

$ df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            938M     0  938M   0% /dev
tmpfs           192M  816K  192M   1% /run
/dev/sda1        38G   22G   15G  60% /
tmpfs           960M  1.1M  959M   1% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
/dev/sda15      241M  138K  241M   1% /boot/efi

Maybe try adding a 2-4GB swap file and see if it helps?

sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile

(if you want to make that permanent follow up with echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab)

It worked like a charm! :sparkles:
Thank you

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.