我爱编程

CentOS 7下Apache的安装

2017-03-29  本文已影响3104人  Liumouren

CentOS下使用yum安装Apache极为方便,只需要在终端键入以下命令即可

1.安装Apache

yum install httpd

2.设置服务器开机自动启动Apache

systemctl enable httpd.service

若要验证是否自动启动可在重启服务器后在终端键入以下命令来检测Apache是否已经启动

systemctl is-enabled httpd.service

如果看到了enable这样的响应,则表示Apache已经启动成功

3.手动启动Apache

systemctl start httpd.service 在浏览器中输入IP地址即可验证是否启动成功

4.手动重启Apache

systemctl restart httpd.service

5.手动停止Apache

systemctl stop httpd.service

6.安装目录介绍

参考文章:
上一篇下一篇

猜你喜欢

热点阅读