您的位置:首页 > 理论基础 > 计算机网络

Linux下将Apache(httpd)新增为系统服务及开机自启动

2015-07-14 22:29 746 查看
转自:http://www.linuxidc.com/Linux/2012-11/74517p2.htm

1> 查看一下/etc/init.d/下是否存在httpd这个服务

ls /etc/init.d/ | grep httpd 如果没有执行下一步

2>将自己安装目录下的apachect1复制到该目录下并改为httpd

cp /home/houqingdong/http-exe/bin/apachect1 /etc/init.d/httpd 注:红色为自己的安装目录

3>执行 chkconfig --add httpd 目的是想新增所制定的系统服务 但是会出现以下警告:



这里说的是httpd服务不支持chkconfig , 添加支持: vi /etc/init.d/httpd 在 #!/bin/sh 下添加这两句:

#chkconfig:345 85 15

#description:Start and stop the Apache HTTP Server 最终结果为:



4> 执行: chkconfig --add httpd

chkconfig httpd on 就可以添加成功了

5>查看一下是否添加成功:

chkconfig --list httpd



Linux 设置Apche+MySQL开机启动

mysql设为linux服务

cp /usr/local/mysql5/share/mysql/mysql.server /etc/init.d/mysqld

chkconfig --add mysqld

chkconfig --level 2345 mysqld on

chown mysql:mysql -R /usr/local/mysql5/

service mysqld start

apache设为linux服务

cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd

vi /etc/init.d/httpd

在在#!/bin/sh后面加入下面两行

#chkconfig:345 85 15

#description: Start and stops the Apache HTTP Server.

然后

chmod +x /etc/rc.d/init.d/httpd

chkconfig --add httpd

然后可以用setup命令进入服务设置,设置为开机启动

 

第二种方法:

 

在/etc/rc.d/rc.local中增加启动apache的命令,例如:/usr/local/httpd/bin/apachectl start
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息