配置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的基本步驟,可以根據具體需求進行進一步的配置和優化。