nginx已添加systemctl,但不能开机自启动问题

[root@kgj01]# 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 就是将服务添加到开机自启动项

你可能感兴趣的:(systemctl,开机,自启动)