一、从官网下载压缩的包(建议去官网下载,可以省去很多麻烦),如果不知道官网可以应用rpm -qi 包名 可以看到该包的许多详细信息。
二、解压缩,一般情况下都会使用tar压缩,所以使用tar -xvf 可以解开压缩包,然后进入已经解压的包里。
三、./configure --prefix=/app/apache24 --sysconfdir=/etc/apache24 --enable-rewrite
使用该命令,进行文件配置和各种文件分类。
四、make&&make install 进行编译
五、启动服务
/app/apache24/bin/apachectl start
同时检查防火墙:iptable -vnL
如果没有关闭:centos6:service iptable stop
永久关闭:chkconfig iptable off
centos7:systemctl stop firewall.service
永久关闭:systemctl disable firewalld.service
监控窗口80是否开启:
查看端口:ss -ntl
启动服务:service httpd start
时间: 2024-11-10 01:21:44