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
5.打開Linux瀏覽器,輸入server的IP或數入localhost,看到以下畫面代表成功
二、安裝Mariadb 參考網址
- 1. yum install mariadb-server mariadb
- 2.開啟Mariadb Server:systemctl start mariadb
- 3.確認Mariadb Server是否開啟
4.啟動mariadb to start during system boot(開機時就啟動)
- 5.設定mariadb Secure(設定帳號密碼):mysql_secure_installation
3.幸福茶香
3-1
4.幸福彩虹
4-1