PHP技术论坛

标题: cnetos 添加开机启动脚本 [打印本页]

作者: admin    时间: 2022-3-12 16:27
标题: cnetos 添加开机启动脚本
方法一:

1:创建启动脚本

   /home/www/start.sh

2: 打开/etc/rc.d/rc/local文件,在末尾增加脚本路径

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



方法二:

1:将脚本移动到/etc/rc.d/init.d目录下


2:增加脚本的可执行权限

  1. chmod +x /etc/rc.d/init.d/start.sh
复制代码



3:添加脚本到开机自动启动项目中

  1. cd /etc/rc.d/init.d
  2. chkconfig --add start.sh
  3. chkconfig start.sh on
复制代码







欢迎光临 PHP技术论坛 (http://php.hh85.com/) Powered by Discuz! X3.2