配置Apache在CentOS上的步骤如下:
sudo yum install httpd
sudo systemctl start httpd
sudo systemctl enable httpd
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload
配置Apache:编辑Apache的配置文件/etc/httpd/conf/httpd.conf
,可以根据需要进行一些配置,如更改默认端口、虚拟主机等。
测试Apache:打开浏览器,输入服务器IP地址或域名,查看是否能访问Apache默认页面,如果可以访问则表示Apache已经配置成功。
以上就是在CentOS上配置Apache的基本步骤,可以根据具体需求进行进一步的配置和优化。