Linux开机自启动设置
文章目录
本文介绍linux开机配置文件目录、systemctl enable实际机制、chkconfig、rc.local
一、/etc/systemd/system和/usr/lib/systemd/system 的区别
/etc/systemd/system/ Systemd 默认从目录/etc/systemd/system/读取配置文件。 里面存放的大部分文件都是符号链接,指向目录/usr/lib/systemd/system/
/usr/lib/systemd/system 真正的配置文件存放
二、关于systemctl enable
[root@FPPTSVR10104123 system]# systemctl enable nginx.service Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.
等价于:
|
|
然后重启systemd,
|
|
查看服务是否启动
|
|
配置文件的后缀名,就是该 Unit 的种类,比如sshd.socket。如果省略,Systemd 默认后缀名为.service,所以sshd会被理解成sshd.service
三、关于chkconfig
服务类型–使用chkconfig
|
|
四、关于rc.local
简单命令类型,添加到rc.local
|
|
文章作者 HiOFD
上次更新 2024-12-13