Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task
-
@girish said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
@jdaviescoates I updated the docker on your server already . That's why, please let us know if you hit the issue again (which then means that docker upgrade didn't fix the issue).
Ah, right, got it, thanks! Will see what happens going forward...
-
@girish I'm sorry to report that it doesn't seem outdated Docker was the issue because I noticed there were still outstanding updates to run and so clicked on one and the exact same thing has happened:
I've left it exactly as is if you want to go and have another poke around my server to see what you can discover...
-
@girish I'm using Contabo's NVMe Storage Extension ( it's different than their Object storage) that doubles my storage. Do you think that has anything to do with it?
When I got it, I had to do the standard Ubuntu partition expansion commands to get it set up. What type of storage would this be? CIFS?
-
@humptydumpty said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
Do you think that has anything to do with it?
I don't think so because lots of us who aren't using Contabo at all are experiencing the same thing.
-
@jdaviescoates You mentioned you're using storage box and I'm using some sort of storage expansion. Also, Girish mentioned it's a "known" Contabo issue. I'm interested to know if other Contabo users are also using storage expansion. Maybe that's the common factor/issue here?
-
@jdaviescoates said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
@girish I'm sorry to report that it doesn't seem outdated Docker was the issue because I noticed there were still outstanding updates to run and so clicked on one and the exact same thing has happened:
I've left it exactly as is if you want to go and have another poke around my server to see what you can discover...
Did you login to my server again and poke around with this? Because I note that that update has now completed (and I didn't intervene myself).
So, I figured I'd hit update on another app to see what happens, but same thing:
-
@jdaviescoates yes, sorry, I am investigating on the server. I am able to reproduce this quite reliably, though I have no clue yet what is causing the issue.
-
@humptydumpty said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
Maybe that's the common factor/issue here?
That was an initial theory of @girish too, but e.g. @fbartels has also hit this issue and he isn't using external storage at all afaiu
-
@jdaviescoates Oh, I see.
I just want to add that uninstalling apps gets stuck too. I installed Searx earlier and didn't like it and now I can't get rid of it (until tonight when I can restart the server).
It's stuck at " Uninstalling - Deleting image ".
Edit: Ending the task and retrying the uninstall actually deleted it without restarting the server.
-
@girish said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
I am able to reproduce this quite reliably, though I have no clue yet what is causing the issue.
Fingers and toes crossed you'll be able to work it out!
-
@humptydumpty said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
It's stuck at " Uninstalling - Deleting image ".
Yup, that's exactly where I have narrowed it down to. Something deep in
dockerode
a node module we use. Because docker itself is responding fine. -
I narrowed it down to image delete API call not getting a response. I wrote a simple example and that works So, some strange issue in the docker-modem module. Unfortunately, there's a lot of code there to investigate.
I do still wonder why this happens just now...!
'use strict'; const http = require('http'); const opts = { path: '/images/cloudron/org.moodle.cloudronapp:20220912-100537-1689a722e?force=false&noprune=false', method: 'DELETE', headers: {}, key: undefined, cert: undefined, ca: undefined, socketPath: '/var/run/docker.sock' }; const req = http.request(opts, function () { }); req.on('response', function (res) { console.log('got a response'); res.on('data', function () { console.log('data'); }); res.on('end', function () { console.log('ended'); }); }); req.on('error', function (error) { console.log(error); }); req.end();
-
@girish said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
I do still wonder why this happens just now...!
something deprecated upstream?
-
It turns out it is docker issue after all. If I replace the module with calling docker CLI, it just hangs as well It seems the command itself succeeds (i.e images gets deleted) but the command does not return. This happens across many commands, docker just hangs. No error in their logs.
Restarting docker fixes the issue. So, not sure where we go from here.
-
@jdaviescoates I wonder if upgrading to Ubuntu 22 helps. Do you want to try that? Since you are on 7.3, it should be safe to upgrade.
-
@girish said in Apps Stuck Updating - Cleaning up old install - even after stopping/restarting task:
I wonder if upgrading to Ubuntu 22 helps.
Spin up a VPS and test?
-
@girish @jdaviescoates my home server v7.3.2 (Ubuntu 22.04.1 LTS) works just fine. I installed Searx and uninstalled it without an issue. I can probably try upgrading my Contabo server tonight. All I need to do is run the following command, right?
sudo do-release-upgrade
-