Home  >  Article  >  Backend Development  >  chkconfig 添加httpd的方法

chkconfig 添加httpd的方法

WBOY
WBOYOriginal
2016-05-19 14:05:161453browse

修改你的/etc/init.d/httpd脚本
在开始处#!/bin/bash之后的行后
插入
# chkconfig: 345 61 61
# description:Apache httpd
#符号不能去掉

启用方法一:运行ntsysv 选中 httpd,就可以了
启用方法二:
1、添加httpd服务:
[root@localhost ~]# chkconfig –add httpd

2、查看httpd服务:[root@localhost ~]# chkconfig –list|grep httpd
httpd      0:关闭 1:关闭  2:关闭 3:关闭  4:关闭  5:关闭  6:关闭

3、开机时自动运行httpd服务:
[root@localhost ~]# chkconfig –level 345 httpd on

4、查看httpd服务状态:
[root@localhost ~]# chkconfig –list|grep httpd
httpd      0:关闭  1:关闭 2:关闭 3:启用 4:启用 5:启用  6:关闭


http://www.086php.com/index.php/rcd-2/566

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]