Apache服务器的配置

修改Apache服务器的配置文件

Apache配置文件路径 : /etc/httpd/conf.d

映射域名配置文件:
vim /etc/httpd/conf.d/vhosts.conf


        ServerName www.ahzy.top
        DocumentRoot /var/www/html 

其中:

ServerName 为域名
DocumentRoot 为html主页的路径

Apache 操作命令行

  1. 启动apahce的命令:
/usr/local/apache2/bin/apachectl start apache   
  1. 停止apache的命令:
/usr/local/apache2/bin/apachectl stop
  1. 重启apache的命令:
/usr/local/apache2/bin/apachectl restart

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

/usr/local/sbin/apachectl graceful

如果当前用户的apache已经安装为linux的服务的话,可以使用以下命令进行以上操作。

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

你可能感兴趣的:(Linux,Linux)