Another instance of Certbot is already running.

From Wurst-Wasser.net
Revision as of 08:35, 20 September 2023 by Heiko (talk | contribs) (Created page with " Another instance of Certbot is already running. <syntaxhighlight lang="bash"> deep-thought ~ # ps -aux | grep cert root 4225 0.0 0.0 2480 580 ? SNs Sep19 0:00 /bin/sh -c test -x /usr/bin/certbot -a \! -d /run/systemd/system && perl -e 'sleep int(rand(43200))' && certbot -q renew root 10892 0.0 0.0 7808 648 pts/0 S+ 08:33 0:00 grep cert root 50361 0.0 1.2 91564 51576 ? SN Sep19 0:01 /usr/bin/python3 /bin/certbot...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Another instance of Certbot is already running.
deep-thought ~ # ps -aux | grep cert
root       4225  0.0  0.0   2480   580 ?        SNs  Sep19   0:00 /bin/sh -c test -x /usr/bin/certbot -a \! -d /run/systemd/system && perl -e 'sleep int(rand(43200))' && certbot -q renew
root      10892  0.0  0.0   7808   648 pts/0    S+   08:33   0:00 grep cert
root      50361  0.0  1.2  91564 51576 ?        SN   Sep19   0:01 /usr/bin/python3 /bin/certbot -q renew
deep-thought ~ # kill 4225
deep-thought ~ # ps -aux | grep cert
root      11018  0.0  0.0   7808   652 pts/0    S+   08:33   0:00 grep cert
root      50361  0.0  1.2  91564 51576 ?        SN   Sep19   0:01 /usr/bin/python3 /bin/certbot -q renew
deep-thought ~ # kill 50361
deep-thought ~ # ps -aux | grep cert
root      11031  0.0  0.0   7808   712 pts/0    S+   08:34   0:00 grep cert
root      50361  0.0  1.2  91564 51576 ?        SN   Sep19   0:01 /usr/bin/python3 /bin/certbot -q renew
deep-thought ~ # kill -9 50361
deep-thought ~ # ps -aux | grep cert
root      11033  0.0  0.0   7808   712 pts/0    S+   08:34   0:00 grep cert
deep-thought ~ #