美文网首页我爱编程
CentOS 7下Apache的安装

CentOS 7下Apache的安装

作者: Liumouren | 来源:发表于2017-03-29 11:04 被阅读3104次

    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.安装目录介绍

    • Apache默认将网站的根目录指向/var/www/html
    • 默认的主配置文件/etc/httpd/conf/httpd.conf
    • 配置存储在的/etc/httpd/conf.d/目录
    参考文章:

    相关文章

      网友评论

        本文标题:CentOS 7下Apache的安装

        本文链接:https://www.haomeiwen.com/subject/qrdeottx.html