Centos-LAMP安裝
出自幸福奉學網
目錄 |
1.幸福奉學
1-1 Centos-LAMP安裝
2.幸福分享
一、安裝Apache
- 1.安裝httpd:yum install httpd
- 2.開啟httpd:systemctl start httpd
- 3.確認是否Apache是否運行:systemctl status httpd
- 4.啟動apache to start during system boot:systemctl enable httpd
備註:需要設定防火牆讓http跟https通過,否則如果從本機開啟瀏覽器,會看不到apache網頁
開啟防火牆,讓 web (port:80, 443) 流量可以穿過 firewall
$ sudo firewall-cmd --permanent --zone=public --add-service=http
$ sudo firewall-cmd --permanent --zone=public --add-service=https
$ sudo firewall-cmd --reload
3.幸福茶香
3-1
4.幸福彩虹
4-1