linux下獨立安裝lamp步驟

2021-08-20 14:46:56 字數 667 閱讀 8023

2 –進行配置 和 掛鉤

apache 掛鉤 php -> 讓apache 支援字尾為.php的檔案

並且能夠將.php的檔案交給apache配置中php模組去解析

php 掛鉤mysql

啟動mysql服務

讓php **中可以執行mysql函式,所以要開啟mysql擴充套件

3 – 設定apache開機自動啟動

chkconfig 檢查,設定系統的各種服務。

新增:    directoryindex index.html index.php    

找到:    #servername www.example.com:80    

修改為:  servername 127.0.0.1:80或者servername localhost:80    記得要去掉前面的「#」  

修改預設的web站點目錄

找到:documentroot "/usr/local/apache2/htdocs"

修改為:documentroot "/home/www/website" --該目錄為自己建立的目錄

找到:修改為:

判斷安裝成功與否

在瀏覽器中輸入你的公網ip,能夠看到apache的歡迎介面,並且傳上php**,能夠訪問執行

重啟資料庫

最好 能夠進行資料庫連線操作

linux下LAMP安裝與配置

安裝 一.apache 安裝yum install y httpd 啟動 etc init.d httpd start 備註 apache啟動之後會提示錯誤 正在啟動httpd httpd could not reliably determine the server s fully qualif ...

linux下安裝yum命令安裝lamp環境

1.用yum安裝apache,mysql,php.1.1安裝apache 安裝完成後,用 etc init.d httpd start 啟動apache 設為開機啟動 chkconfig httpd on 1.2 安裝mysql 1.2.1 yum install mysql mysql serve...

Linux系統安裝LAMP

說明 步驟一,安裝apache2 1sudo apt get install apache2 安裝完成。執行如下命令重啟下 1sudo etc init.d apache2 restart 在瀏覽器裡輸入http localhost或者是如果看到了it works 那就說明apache就成功的安裝了...