安装Apache

作者: Jason_lai | 来源:发表于2018-04-07 09:38 被阅读0次

    安装gcc

    检测是否安装gcc

    gcc -v
    

    如果没有安装先安装gcc

    yum install -y gcc-c++
    

    安装

    yum -y install httpd
    

    同时安装vim

    yum install vim
    

    修改Apache配置文件指向路径

    /etc/httpd/conf/httpd.conf
    

    启动Apache

    systemctl start httpd
    

    停止Apache

    systemctl stop httpd
    

    重启Apache

    systemctl restart httpd
    

    查看Apache状态

    systemctl status httpd
    

    配置Apache开机启动项

    chkconfig --add httpd
    chkconfig httpd on
    

    相关文章

      网友评论

        本文标题:安装Apache

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