如果centos8默认软件包里没有certbot,就需要更新软件包:
dnf install epel-release dnf upgrade
一般更新包后就可以安装了
dnf install certbot
nginx安装后设置自启动:
1、一般使用systemctl enable nginx.service,但这个命令有可能无效,如果不成功可以使用其他的方法
2、直接修订文件/etc/rc.local,添加nginx启动命令即可(不推荐)
3、使用chkconfig(未亲测)
在/etc/init.d目录下新建一个脚本nginx.sh并设置执行权限,脚本开头加入以下代码:
#!/bin/sh #chkconfig:2345 80 90 #description:自定义的脚本描述如nginx
#chkconfig:后面的数字暂不了解含义。
使用chkconfig命令将脚本添加到开机启动
chkconfig --add nginx.sh chkconfig nginx.sh on
4、在/etc/profile.d/添加新脚本nginx.sh,不用设置执行权限
service nginx start
标签:dnf,nginx,sh,自启动,chkconfig,certbot From: https://www.cnblogs.com/liuzhenwei/p/16740548.html