zoukankan      html  css  js  c++  java
  • Centos6.1 , Centos6.5 开机启动

    楼主2个服务器,一个是centos6.5  一个是6.1

       

        1.cat /etc/issue 查看版本,。

        centos 6.1  方法一,方法二都可以开机启动 (自定义的脚本)

        centos6.5  我这里测试只能方法二启动成功,或许是我系统未知问题导致(自定义的脚本)

        开机启动 2个方式:

        方法一 chkconfig 管理:

              第一步:  vi  /etc/init.d/test

              第二步:  

                            #! /bin/bash

                            # chkconfig:3 88 88

                             nohup python3 /root/xx.py > /dev/null 2>&1 &

                           保存

                
    第三步: chmod +x /etc/init.d/test 

                              #  添加到chkconfig,开机自启动

                               chkconfig --add test

                       具体chkconfig 命令查看: https://www.runoob.com/linux/linux-comm-chkconfig.html

      方法二  将服务启动命令加入到/etc/rc.d/rc.local中:

         #!/bin/sh

         #
         # This script will be executed *after* all the other init scripts.
         # You can put your own initialization stuff in here if you don't
         # want to do the full Sys V style init stuff.

         touch /var/lock/subsys/local

         nohup python3 /root/xx.py  > /dev/null 2>&1 &
       

      需要将完整路径写入,否则不起作用  (有软连接的不算)

               

  • 相关阅读:
    mr程序无法输出日志进行调试的解决方法
    2015年度总结
    Hadoop数据目录迁移
    Oracle数据迁移至HBase操作记录
    Hadoop端口一览表
    Hadoop Maven pom文件示例
    十个书写Node.js REST API的最佳实践(下)
    iOS 程序从开发完到上 AppStore 那点事儿
    拿什么拯救你,我的三十五岁
    Spark 以及 spark streaming 核心原理及实践
  • 原文地址:https://www.cnblogs.com/pythonSF/p/14488499.html
Copyright © 2011-2022 走看看