用chkconfig将自编译设置为系统服务的时候,httpd 服务不支持chkconfig。解决过程如下:
1.编辑/etc/init.d/httpd
#!/bin/bash
#chkconfig:345 61 61
#description:Apache httpd
(哈哈,复制粘贴好像有问题,手动输入)
2.配置
[root@localhost ~]# chkconfig --add httpd
[root@localhost ~]# chkconfig --list|grep httpd
httpd
[root@localhost ~]# chkconfig --level 345 httpd on
[root@localhost ~]# chkconfig --list|grep httpd
httpd
来源:(http://blog.sina.com.cn/s/blog_53b45c4d0100k3ji.html) - 编译的httpd不支持chkconfig的解决方法_天南地北_新浪博客