Centos-LAMP安裝

出自幸福奉學網
在2022年6月12日 (日) 22:28由Birdd對話 | 貢獻所做的修訂版本

跳轉到: 導覽搜尋

目錄

1.幸福奉學

1-1 Centos-LAMP安裝

2.幸福分享

一、安裝Apache

  • 1.安裝httpd:yum install httpd

圖示 01圖示 02

  • 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

圖示01圖示02

  • 2.開啟Mariadb Server:systemctl start mariadb
  • 3.確認Mariadb Server是否開啟

圖示01圖示02

4.啟動mariadb to start during system boot(開機時就啟動)

圖示

3.幸福茶香

3-1


4.幸福彩虹

4-1