码迷,mamicode.com
首页 > 其他好文 > 详细

让apach 开机自启动

时间:2015-12-21 00:40:42      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:apache开机启动



在linux 源码编译安装了apache 服务

apache 服务启动命令:
/usr/local/apache/bin/apachectl start  或是把apachectl 软链接或cp到 /sbin目录下

apachectl start


用chkconfig 工具让apache服务运行在运行级别345下面,  命令如下:


cp  /usr/local/apache/bin/apachectl /etc/init.d/apachectl

ln -s /etc/init.d/apachectl /etc/rc.d/rc3.d/apachectl

vi /etc/init.d/apachectl

在行  #!/bin/sh  下,添加一行

# chkconfig: 345 85 15


chkconfig --add apachectl


到此 apache服务就可以在运行级别345下 随机自动启动了。


另外,也可把启动命令 /usr/local/apache/bin/apachectl start 直接写入 /etc/rc.d/rc.local 文件中,达到开启启动的目的


让apach 开机自启动

标签:apache开机启动

原文地址:http://752030200.blog.51cto.com/8936921/1726555

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!