欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

服务开机自启

程序员文章站 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

 

 

 

 

 

 

 

 

 

 

 

 

 

 

相关标签: Linux