服务开机自启
程序员文章站
2022-06-21 18:39:20
...
Centos7
把服务添加到开机自启
方法1
systemctl enable nfs
方法2 把启动命令添加到rc.local中
vim /etc/rc.local
注:centos7中rc.local默认是没有可执行权限的,需要手动添加 chmod +x /etc/rc.d/rc.local
2 取消服务开机自启
systemctl disable nfs
查看系统所有开机自启的服务
方法1
ll /etc/systemd/system/multi-user.target.wants/
方法2
systemctl list-unit-files |grep enable
Centos6
把服务添加到开机自启
方法1
chkconfig nfs on
方法2 把启动命令添加到rc.local中
vim /etc/rc.local
2 取消服务开机自启
chkconfig nfs off
查看系统所有开机自启的服务
chkconfig --list |grep 3:on
新装系统优化启动服务
# 1 关闭所有开机自启服务
for i in `chkconfig --list|grep 3:on|awk '{print $1}'`;do chkconfig --level 3 $i off;done
# 2 只开启必须的服务
for i in crond network rsyslog sshd;do chkconfig --level 3 $i on;done
上一篇: zabbix3.0 短信报警