会话中断后如何返回 cerbot 进程

会话中断后如何返回 cerbot 进程

当我在等待 DNS txt 设置时,会话中断了。我想返回该进程并继续执行后续进程。我该怎么办?

root@device1:~/youtube# sudo certbot certonly --manual --preferred-challenges=dns
Another instance of Certbot is already running.

这是流程信息。

root@device1:~/youtube# ps -ef | grep certb
root      7963  7836  0 07:35 pts/0    00:00:00 sudo certbot certonly --manual --preferred-challenges=dns
root      7964  7963  0 07:35 pts/0    00:00:00 /usr/bin/python3 /usr/bin/certbot certonly --manual --preferred-challenges=dns
root      8571 19933  0 08:01 pts/9    00:00:00 grep --color=auto certb

答案1

终止程序并真的强制终止

杀死-9 PID

如果你很懒,你也可以使用

killall -9 程序名

按照你的观点,是否需要同时终止 PID(进程标识描述符

您可以使用

杀死-9 PID PID

如果您的网络连接不稳定,我建议您使用可以断开和恢复的程序,如 screen。即使您丢失了连接,您也可以稍后恢复。

相关内容