通过SSH启动/停止/重新启动Apache Web服务器

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

在Linux或者UNIX操作系统下,如何通过SSH(安全shell)启动/停止或者重新启动Apache Web服务器?

打开命令行终端(选择应用程序>附件>终端),然后执行以下命令,以使用ssh客户端登录到名为server1.theitroad.local的远程服务器:

$ ssh [email protected]

登录后,通过执行su并输入root密码切换到root用户,出现提示时:

$ su 

要通过ssh重新启动Apache 2 Web服务器,请执行:

# /etc/init.d/apache2 restart

要停止Apache 2,请执行:

# /etc/init.d/apache2 stop

要启动Apache 2,请执行:

# /etc/init.d/apache2 start

如果您使用的是基于RHEL/CentOS/Fedora的服务器,请执行:

# service httpd restart

要停止基于RHEL/CentOS/Fedora的Apache服务器,请执行:

# service httpd stop

要启动基于RHEL/CentOS/Fedora的Apache服务器,请执行:

# service httpd start

关于apachectl命令的注意事项

您还可以按以下方式使用apachectl命令来重新启动apache服务器:

# apachectl -k restart