c6c7服务开机自启
注意:c7默认没有ckfconfig命令,可以安装 net-tools,然后就可以用chkconfig来管理服务
一.服务
c7如果是系统自带的服务可以 systemctl enable firewalld
二.脚本
1.c6的方法
1.1创建文件 mv /opt/script/test.sh /etc/rc.d/init.d
文件格式
#!/bin/bash
echo 111>>/tmp/test.log
# chkconfig: 2345 90 01 (必须有这一行)
1.2给予执行权限或者sh运行一遍都有x权限了
chmod +x /etc/rc.d/init.d/autostart.sh
1.3查看chkconfig管理服务
chkconfig --list
1.4.增加开机自启服务
chkconfig --add test.sh
2.c7方法
1.1创建脚本
touch /service/script/test.sh
echo 111>>/tmp/test.log
1.2 查看文件绝对路径并进入/etc/rc.d
1.3 编辑里面的rc.local 加入/service/script/test.sh即可让服务开机自启