美文网首页
linux 开机启动脚本

linux 开机启动脚本

作者: 空气KQ | 来源:发表于2019-04-16 22:35 被阅读0次

sh /etc/init.d/inotifywaitreloadnginx.sh

方法一

1、赋予脚本可执行权限(/opt/script/autostart.sh是你的脚本路径)
chmod +x /opt/script/autostart.sh

2、打开/etc/rc.d/rc.local或/etc/rc.local文件,在末尾增加如下内容
su - user -c '/opt/script/autostart.sh'

3、在centos7中,/etc/rc.d/rc.local的权限被降低了,所以需要执行如下命令赋予其可执行权限
chmod +x /etc/rc.d/rc.local

方法二

1、将脚本移动到/etc/rc.d/init.d目录下
mv /opt/script/autostart.sh /etc/rc.d/init.d

2、增加脚本的可执行权限
chmod +x /etc/rc.d/init.d/autostart.sh

3、添加脚本到开机自动启动项目中
cd /etc/rc.d/init.d
chkconfig --add autostart.sh
chkconfig autostart.sh on


作者:wang123459
来源:CSDN
原文:https://blog.csdn.net/wang123459/article/details/79063703
版权声明:本文为博主原创文章,转载请附上博文链接!

相关文章

网友评论

      本文标题:linux 开机启动脚本

      本文链接:https://www.haomeiwen.com/subject/bfhwwqtx.html