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

【教程】CentOS 设置开机自启动脚本

程序员文章站 2022-07-12 13:40:49
...

《CentOS 设置开机自启动脚本》


  1. 新建脚本文件autorun.sh
#!/bin/sh
#chkconfig:2345 85 15
​#description: test

echo "Hello Linux !!"

注意:#chkconfig和​#description必须添加,要不然chkconfig报错

  1. 给autorun.sh添加可执行权限:
    chmod +x autorun.sh
  2. 将autorun.sh移动到/etc/init.d/目录下
  3. chkconfig --add autorun.sh
  4. chkconfig --level 2345 autorun.sh on

end…