linux下apache启动、重启、停止的命令

发布时间:2019-07-25编辑:脚本学堂
本文介绍下,在Linux下,对apache服务实现启动、重启与停止的相关命令,感兴趣的朋友可以参考学习下。

本节内容:
apache启动、重启、停止命令

操作方法:
假定apahce安装目录为/usr/local/apache2

apahce启动命令:
推荐/usr/local/apache2/bin/apachectl start apaceh启动

apache停止命令:
 

复制代码 代码示例:
/usr/local/apache2/bin/apachectl stop 停止

apache重新启动命令:
 

复制代码 代码示例:
/usr/local/apache2/bin/apachectl restart 重启

要在重启 Apache 服务器时不中断当前的连接,则应运行:
 

复制代码 代码示例:
/usr/local/sbin/apachectl graceful

如果apache安装成为linux的服务,则用命令:
 

service httpd start 启动
service httpd restart 重新启动
service httpd stop 停止服务

附,Ubuntu系统中apache服务的启动、重启、停止的命令。

一、启动apache服务
 

复制代码 代码示例:
# /etc/init.d/apache2 start
or
$ sudo /etc/init.d/apache2 start

二、 重启apache服务
 

复制代码 代码示例:
# /etc/init.d/apache2 restart
or
$ sudo /etc/init.d/apache2 restart

三、停止apache服务
 

复制代码 代码示例:
# /etc/init.d/apache2 stop
or
$ sudo /etc/init.d/apache2 stop