每次启动Apache服务器都要在命令行下输入/usr/local/apache2/bin/apachectl start才能启动,相比Mysql在服务里自启动麻烦了不少,刚才找到了两种实现开机自启动的方法,原理都是一样的.
1.
把/usr/local/apache/bin/apachectl start放在/etc/rc.local中
从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
/usr/local/apache/bin/apachectl start
2.
cp /usr/local/apache/bin/apachectl /etc/rc.d/rc3.d/S80apache
直接将apache的启动文件复制到rc3.d中,并且重命名为S80apache
S代表开机自启动,相反K代表开机不起动
80代表优先级
3.
将apache注册为系统服务
将apachectl命令拷贝至/etc/rc.d/init.d目录下,改名为httpd
使用编辑器打开httpd文件,并在第一行#!/bin/sh下增加两行文字如下
# chkconfig: 35 70 30
# description: Apache
接着注册该服务
chkconfig –add httpd
一切OK了,启动服务
service httpd start
其中所增加的第二行中三个数字第一个表示在运行级别3和5下启动apache,第二、三是关于启动和停止的优先级配置,无关紧要
本文出自 “Enthusiasm 10年” 博客,请务必保留此出处http://baiyan425.blog.51cto.com/1573961/616413
拥有帝国一切,皆有可能。欢迎访问phome.net |