概述
如果想在自己的服务器上挂自己的个人网站,如果是静态的页面的话,可能就会配置一个Web静态页面服务器。静态页面服务器有很多,用的比较多的就是
Apache
,最快的就要属Nginx
。在这里给大家介绍一下 在CentOS 7
下面怎么配置启动Apache 2.4
安装 Apache 2.4
在
CentOS 7
上面安装Apache 2.4
推荐使用yum
安装。
既方便有快捷,使用如下命令:yum -y install httpd
启动 Apache 2.4
下面总结了一些启动
Apache
的命令:
systemctl start httpd.service
//启动apachesystemctl stop httpd.service
//停止apachesystemctl restart httpd.service
//重启apachesystemctl enable httpd.service
//设置apache开机启动
更改Apache配置文件
配置文件的路经在
/etc/httpd/conf/httpd.conf
可以根据自己的需要对其做相应的修改。