解决办法:
check whether there are .certbot.lock
files in your system.
find / -type f -name ".certbot.lock"
If there are, you can remove them:
find / -type f -name ".certbot.lock" -exec rm {} \;
And try again.
解决办法:
check whether there are .certbot.lock
files in your system.
find / -type f -name ".certbot.lock"
If there are, you can remove them:
find / -type f -name ".certbot.lock" -exec rm {} \;
And try again.