使用绝对路径,调用启动脚本来启动。不同的源码包的启动脚本不同。可以查看源码包的安装说明,查看启动脚本的方法。
/usr/local/apache2/bin/apachectl start|stop
/usr/local/nginx/sbin/nginx -s stop
vi /etc/rc.d/rc.local
# 加入
/usr/local/apache2/bin/apachectl start
让源码包安装的 apache 服务能被 service 命令管理启动
ln -s /usr/local/apache2/bin/apachectl /etc/init.d/apache
# 或
ln -s /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/apache
让源码包安装的 apache 服务能被 chkconfig 与 ntsysv 命令管理自启动
vim /etc/init.d/apache
# chkconfig:35 86 76
# 指定httpd脚本可以被chkconfig命令管理。格式是:
# chkconfig: 运行级别 启动顺序 关闭顺序
# description: source package apache
# 说明,内容随意
cd /etc/rc3.d/
# 启动顺序和关闭顺序不能和/etc/rc3.d/中的重叠
chkconfig --list | grep apache
chkconfig --add apache
# 把源码包apache加入chkconfig命令
chkconfig --list | grep apache