标签:
grep -v "#" /user/local/apache/bin/apachectl > /etc/init.d/apache
vi /etc/init.d/apache
#!/bin/sh
# chkconfig: 2345 85 15
# description: Apache is a World Wide Web server.
chmod +x /etc/init.d/apache
chkconfig --add apache
chkconfig --list apache
apache 0:off 1:off 2:on 3:on 4:on 5:on 6:off
表明apache服务已经生效,在2、3、4、5运行级别随系统启动而自动启动,以后可以使用service命令控制Apache的启动和停止。
同理,为mysql添加开机自启动:chkconfig mysqld on
标签:
原文地址:http://my.oschina.net/smilelxb/blog/526462