Centos下设置程序开机自动启动命令介绍
时间:2016-05-23 14:04 来源:linux.it.net.cn 作者:IT
1.默认为系统服务的程序开机启动方法
例如:mysqld,httpd等
可以直接使用命令
chkconfig mysqld on 这样开机就可以启动mysql了。
2.不是系统服务,需要命令启动的
直接编辑 /etc/rc.d/rc.local
在最下面一行加入启动命令即可。例如:
代码如下
复制代码
su - svn -c "svnserve -d --listen-port 9999 -r /opt/svndata" //这样开机就可以自动启动svnserver了。
1、把启动程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是设置开机启动httpd。
代码如下
复制代码
#!/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
/usr/local/apache/bin/apachectl start
2、把写好的启动脚本添加到目录/etc/rc.d/init.d/,然后使用命令chkconfig设置开机启动。
例如:我们把httpd的脚本写好后放进/etc/rc.d/init.d/目录,使用
代码如下
复制代码
chkconfig --add httpd
chkconfig httpd on
命令即设置好了开机启动。
(责任编辑:IT)
1.默认为系统服务的程序开机启动方法 例如:mysqld,httpd等 可以直接使用命令 chkconfig mysqld on 这样开机就可以启动mysql了。 2.不是系统服务,需要命令启动的 直接编辑 /etc/rc.d/rc.local 在最下面一行加入启动命令即可。例如:
2、把写好的启动脚本添加到目录/etc/rc.d/init.d/,然后使用命令chkconfig设置开机启动。
|