小樱 发表于 2014/7/26 18:23

Linux发行版的centos设置程序或者命令开机/etc/rc.d/rc.local自动运行启动执行的方法

第一种方法,把启动程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是设置开机启动kangle代理服务器。

vi /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
/vhs/kangle-proxy/bin/kangle


另一种方法,例如设置mysql自动启动
chkconfig --level 2345 mysqld on


chkconfig --list 查看Linux开机启动项列表
http://bbs.itzmx.com/thread-8000-1-1.html

只爱小玉 发表于 2014/7/27 10:24

您好:您的帖子已经被我们记录。根据我们 2014年1月1日最新出台的《互联网发言管理认证条例》,您的IP已经被我们锁定。有关部门目前正在组织网络技术相关人员进行对您的资料搜集以及相关惩罚措施的制订等工作。我们即将对您进行抓捕。
页: [1]
查看完整版本: Linux发行版的centos设置程序或者命令开机/etc/rc.d/rc.local自动运行启动执行的方法