Centos lamp指令:修訂版本之間的差異
出自幸福奉學網
(新頁面: ==1.幸福奉學== 1-1 請寫出台北市教育資訊中心的ipv4&ipv6 ==2.幸福分享== **CENTOS LAMP安裝** **1.Apache** yum install httpd systemctl start httpd systemctl sta...) |
|||
第 3 行: | 第 3 行: | ||
==2.幸福分享== | ==2.幸福分享== | ||
− | + | *CENTOS LAMP安裝 | |
− | + | *1.Apache | |
yum install httpd | yum install httpd | ||
第 24 行: | 第 24 行: | ||
打開Linux瀏覽器,輸入server的IP或數入localhost,看到以下畫面代表成功 | 打開Linux瀏覽器,輸入server的IP或數入localhost,看到以下畫面代表成功 | ||
− | + | *2.安裝maridb | |
yum install mariadb-server mariadb | yum install mariadb-server mariadb |
2022年6月12日 (日) 23:05的修訂版本
目錄 |
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