分类: 系统运维
2009-04-19 10:58:24
apache安装路径:/usr/local/apache
方法1
编辑/etc/rc.d/rc.local,增加一行:
/usr/local/apache/bin/apachectl start
方法2
#cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/
编辑/etc/init.d/apachectl,在第一行#!/bin/sh下增加两行:
# chkconfig: 2345 80 60
# description: Apache Start&Stop Scripts
添加到系统服务
#chkconfig --add apachectl
手动启动/停止服务
#/etc/init.d/apachectl start/stop
或:
#service apachectl start/stop