Apache:从Shell重新启动优美的服务器

时间:2020-01-09 10:37:09  来源:igfitidea点击:

如何从shell提示符下正常重启Apache Web服务器?
以root用户身份使用以下命令。
通过ssh会话登录。

Debian/Ubuntu Linux

键入以下命令以在Debian/Ubuntu Linux下正常重启Apache 2 Web服务器:

apache2ctl graceful

要么

sudo apache2ctl graceful

Redhat/CentOS/RHEL/Fedora Linux

以root用户身份键入以下命令:

apachectl -k graceful

要么

sudo apachectl -k graceful

如何查看正常重启日志?

在CentOS/RHEL下输入以下命令:

tail -f /var/log/httpd/error_log

或在Debian/Ubuntu Linux下键入以下命令:

tail -f /var/log/apache2/error.log

输出示例:

[Tue Oct 27 00:45:38 2009] [notice] Graceful restart requested, doing restart
[Tue Oct 27 00:45:38 2009] [notice] Digest: generating secret for digest authentication ...
[Tue Oct 27 00:45:38 2009] [notice] Digest: done
[Tue Oct 27 00:45:38 2009] [notice] Apache/2.2.3 (Red Hat) configured -- resuming normal operations