假设当前Linux用户的apahce安装目录为/usr/local/apache2,那么在
命令行终端中使用以下命令启动,停止和
重启apache。\x0d\x0a1. 启动apahce的命令:\x0d\x0a/usr/local/apache2/bin/apachectl start apache\x0d\x0a2. 停止apache的命令:\x0d\x0a/usr/local/apache2/bin/apachectl stop \x0d\x0a3. 重启apache的命令:\x0d\x0a/usr/local/apache2/bin/apachectl restart \x0d\x0a要在重启 Apache 服务器时不中断当前的连接,则应运行:\x0d\x0a/usr/local/sbin/apachectl graceful\x0d\x0a\x0d\x0a如果当前用户的apache已经安装为linux的服务
的话,可以使用以下命令进行以上操作。\x0d\x0a1. 启动apache\x0d\x0aservice httpd start \x0d\x0a2. 停止服务apache\x0d\x0aservice httpd stop \x0d\x0a3. 重新启动apache\x0d\x0aservice httpd restartapahce启动命令:
推荐/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 停止服务
评论列表(0条)