zoukankan      html  css  js  c++  java
  • [Linux] Centos 添加开机启动脚本

    Centos 添加开机启动脚本

    一、添加开机自启脚本

    脚本autostart.sh为例:

    #!/bin/bash
    #chkconfig:345 85 15   (要加, 否则service pptpd does not support chkconfig)
    #description:开机自启脚本(要加)
    /usr/local/tomcat/bin/startup.sh  #启动tomcat
    

    方法一

    1. 赋予脚本可执行权限
      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
    
  • 相关阅读:
    数据库设计范式
    SQL 触发器
    SQL查询上月和本月两个月的语句
    angularjs学习总结 详细教程
    指令
    重复 HTML 元素
    AngularJS 数据绑定
    AngularJS 指令.
    AngularJS 数组
    AngularJS 对象
  • 原文地址:https://www.cnblogs.com/abeen/p/14658006.html
Copyright © 2011-2022 走看看