在 CentoOS 上安裝 LAMP 堆疊
安裝 Apache Web Server
第一步是安裝 Web 伺服器 Apache。
sudo yum -y install httpd
安裝後,啟用(在啟動時執行)並啟動 Apache Web 伺服器服務。
sudo systemctl enable --now httpd
將瀏覽器指向:
你將看到預設的 Apache Web 伺服器頁面。
安裝 MariaDB Server
第二步是安裝 MariaDB:
sudo yum -y install mariadb-server
然後啟動並啟用(啟動時)MariaDB 伺服器:
sudo systemctl enable --now mariadb
根據需要,使用 mysql_secure_installation 來保護你的資料庫。
此指令碼將允許你執行以下操作:
- 更改 root 使用者的密碼
- 刪除測試資料庫
- 禁用遠端訪問
安裝 PHP
sudo yum -y install php php-common
然後重啟 Apache 的 httpd 服務。
sudo systemctl restart httpd
要測試 PHP,請在 / var / www / html 中建立一個名為 index.php 的檔案。 ****
然後將以下行新增到檔案中:
然後將瀏覽器指向:
你應該看到與你的伺服器相關的資訊。如果不這樣做,請通過執行以下命令確保正確安裝 php:
php --version
如果你收到以下內容:
PHP 5.4.16 (cli) (built: Nov 6 2016 00:29:02) Copyright (c) 1997-2013 The PHP Group
然後正確安裝 PHP。如果是這種情況,請確保你已重新啟動 Web 伺服器。