起航学习网

- 让每个人都能学到最前沿新知识、新技能!
起航学习网
当前位置: 起航学习网 > 短期培训 > IT培训 > Linux开机如何自己启动脚本?老男孩Linux学习班

Linux开机如何自己启动脚本?老男孩Linux学习班

时间:2021-01-25 14:07:17来源:未知 作者:老男孩教育 已有: 名学员访问该课程

  快捷搜索:

前言:Linux配置开机自启动执行脚本的方法有很多,今天老男孩教育为大家分享两种方法,分别是修改/etc/rc.local方法和chkconfig管理设置的方法。 设置test.sh为开机要启动的脚本 [root@oldboy scripts]# vim /server/scripts/test.sh [root@oldboy scripts]# cat /server/scripts/ test.sh #!/bin/bash /bin/echo $(/bin/date +%F_%T) /tmp/ test.log 方法一:修改

  Linux配置开机自启动执行脚本的方法有很多,今天老男孩教育为大家分享两种方法,分别是修改/etc/rc.local方法和chkconfig管理设置的方法。

  设置test.sh为开机要启动的脚本

  [root@oldboy scripts]# vim /server/scripts/test.sh

  [root@oldboy scripts]# cat /server/scripts/ test.sh

  #!/bin/bash

  /bin/echo $(/bin/date +%F_%T) >> /tmp/ test.log

  方法一:修改/etc/rc.local

  [root@oldboy ~]# ll /etc/rc.local

  lrwxrwxrwx. 1 root root 13 Mar 30 10:50 /etc/rc.local -> rc.d/rc.local

  修改/etc/rc.local文件

  [root@oldboy scripts]# tail -n 1 /etc/rc.local

  /bin/bash /server/scripts/test.sh >/dev/null 2>/dev/null

  重启系统,查看结果

  [root@oldboy ~]# cat /tmp/test.log

  2018-03-30_12:00:10

  方法二:chkconfig管理

  删除掉方法一的配置

  [root@oldboy ~]# vim /etc/init.d/test

  #!/bin/bash

  # chkconfig: 3 88 88

  /bin/bash /server/scripts/test.sh >/dev/null 2>/dev/null

  [root@oldboy ~]# chmod +x /etc/init.d/test

  添加到chkconfig,开机自启动

  [root@oldboy ~]# chkconfig --add test

  [root@oldboy ~]# chkconfig --list test

  test 0:off 1:off 2:off 3:on 4:off 5:off 6:off

  重启系统,查看结果

  [root@oldboy ~]# cat /tmp/test.log

  2018-03-30_12:00:10

  2018-03-30_12:33:20

  操作成功

  关闭开机启动

  [root@oldboy ~]# chkconfig test off

  [root@oldboy ~]# chkconfig --list test

  test 0:off 1:off 2:off 3:off 4:off 5:off 6:off

  从chkconfig管理中删除test

  [root@oldboy ~]# chkconfig --list test

  test 0:off 1:off 2:off 3:off 4:off 5:off 6:off

  [root@oldboy ~]# chkconfig --del test

  [root@oldboy ~]# chkconfig --list test

  service test supports chkconfig, but is not referenced in any runlevel (run 'chkconfig --add test')

文章出自:http://qh.itpxw.cn/peixun/it/202168387.html

文章标题:Linux开机如何自己启动脚本?老男孩Linux学习班



免责声明:本站文章均由入驻起航学习网的会员所发或者网络转载,所述观点仅代表作者本人,不代表起航学习网立场。如有侵权或者其他问题,请联系举报,必删。侵权投诉

(责任编辑:深圳学历教育网)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
培训学校
老男孩教育 访问该机构站点 报名留言 加为好友 用户等级:高级会员 用户级别:0 机构名称:老男孩教育 联 系 人:任女士 联系电话:18710030740 联系手机:18710030740 在线客服:起航学习网客服 在 线 QQ:起航学习网客服 电子邮件:768386696@qq.com 网站域名:https://www.oldboyedu.com/ 注册时间:2019-03-20 15:03 最后登录:2023-02-02 13:02
推荐内容