Home > Article > Backend Development > 1212
Recently found that some servers failed to successfully download certbot-auto when installing the panel, resulting in the inability to obtain the Let's Encrypt certificate normally. We now provide a manual download and installation method
Uninstall the possibly damaged epel source (if confirmed There is no problem with the epel source, you can skip it):
yum remove epel-release -y
Download script:
wget -O /www/server/panel /certbot-auto http://download.bt.cn/install/certbot-auto.init -T 5
Installation dependencies:
The installation process may take a long time. It will take about 5-10 minutes, please wait patiently!
chmod +x /www/server/panel/certbot-auto && /www/server/panel/certbot-auto -n
Copy code
The following content is prompted, indicating that the installation is successful
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Missing command line flags. For non-interactive execution, you will need to specify a plugin on the command line. Run with '--help plugins' to see a list of options, and see https://eff.org/letsencrypt-plugins for more detail on what the plugins do and how to use them.
The above is the detailed content of 1212. For more information, please follow other related articles on the PHP Chinese website!