tar包编译安装完成后将apache加入系统服务

加入apache的安装路径为:/usr/local/apache
apache的相关命令为 /usr/local/apache/bin/apachectl start|stop|restart
 
现在将其加入系统服务
 
1>复制启动脚本至/etc/rc.d/init.d
cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd
 
2>在启动级别3中加入链接
cd /etc/rc3.d/
ln -s /etc/rc.d/init.d/httpd S85httpd
ln -s /etc/rc.d/init.d/httpd K85httpd
 
3>在/etc/rc.d/init.d/httpd脚本中第二行开始加入如下内容:
#chkconfig:3 85 85
#description:apache
 
4>将服务添加至chkconfig
chkconfig --add httpd
 
5>添加至启动级别
chkconfig --level 3 httpd on

你可能感兴趣的:(apache,职场,tar,httpd,休闲)