nginx已添加systemctl,但不能开机自启动问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx已添加systemctl,但不能开机自启动问题相关的知识,希望对你有一定的参考价值。
[[email protected]]# ll /lib/systemd/system/nginx.service
-rw-r--r--. 1 root root 640 3月 9 15:35 /lib/systemd/system/nginx.service
显示已创建systemctl的开机自启动文件,但是在服务器重启时nginx.service不能随机重启
原因:
没有将nginx.service添加到/usr/lib/systemd/system/,需要执行
systemctl enable nginx.service
将/lib/systemd/system/nginx.service软连接到/usr/lib/systemd/system/nginx.service
之后即会随服务器重启服务。
总结:systemctl enable xxx 就是将服务添加到开机自启动项
以上是关于nginx已添加systemctl,但不能开机自启动问题的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 1604 安装配置 kafka,并配置开机自启(systemctl)