如何优雅地重启Apache服务器
时间:2019-11-20 08:54:16 来源:igfitidea点击:
以root用户执行下面命令:
Debian/Ubuntu-Linux
在Debian/Ubuntu Linux中优雅地重启Apache2 web服务器:
apache2ctl graceful
或者
sudo apache2ctl graceful
Redhat/CentOS/RHEL/Fedora-Linux
在Redhat/CentOS/RHEL/Fedora-Linux中优雅地重启Apache2 web服务器:
apachectl -k graceful
或者
sudo apachectl -k graceful
如何查看apache重启日志?
在CentOS/RHEL中:
tail -f /var/log/httpd/error_log
在Debian/Ubuntu Linux中:
tail -f /var/log/apache2/error.log