Centos lamp指令
出自幸福奉學網
目錄 |
1.幸福奉學
1-1 請寫出台北市教育資訊中心的ipv4&ipv6
2.幸福分享
- CENTOS LAMP安裝**
- 1.Apache**
yum install httpd
systemctl start httpd
systemctl status httpd
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
打開Linux瀏覽器,輸入server的IP或數入localhost,看到以下畫面代表成功
- 2.安裝maridb**
yum install mariadb-server mariadb
systemctl start mariadb
systemctl status mariadb
systemctl enable mariadb
- 2-1設置資料庫帳號密碼**
mysql_secure_installation
- 3.安裝PHP+mysql_extension**
yum install php php-mysql
3-1測試php是否能用
(1)到/var/www/html資料夾之後,新增一個php檔案 linux指定: touch test.php
3-2打入phpinfo(); 測試是否能開起來
<?php phpinfo(); ?>
- 4.systemctl restart httpd**
3.幸福茶香
3-1
4.幸福彩虹
4-1