1. 程式人生 > >VMware中centos7搭建AMP環境

VMware中centos7搭建AMP環境

採用yum的方式安裝環境

1、安裝Apache

yum install httpd httpd-deve

2、開啟Apache服務

systemctl start httpd.service

3、檢視Apache狀態

systemctl status httpd.service

下圖表示Apache在執行 

 

 4、關閉防火牆

 
  1. 關閉firewall:

  2.  
  3. systemctl stop firewalld.service #停止firewall

  4.  
  5. systemctl disable firewalld.service #禁止firewall開機啟動

  6.  
  7. firewall-cmd --state #檢視預設防火牆狀態(關閉後顯示notrunning, 開啟後顯示running)

表示防火牆關閉

5、在瀏覽器輸入IP地址,出現如下頁面代表Apache安裝成功:

 6、安裝mysql

yum install mariadb-server -y

安裝完成

7、開啟並檢視MySQL狀態

 
  1. systemctl start mariadb.service //開啟服務

  2. systemctl status mariadb.service //檢視服務狀態

下圖表示MySQL在執行

8、開始的MySQL是沒有密碼的,直接就可以進入,更改MySQL的密碼 

輸入MySQL進入資料庫

 mysql

選擇資料庫:

use mysql

  

修改資料庫密碼

update user set password = password('root') where user = 'root';

重新整理許可權

flush privileges;

 

退出MySQL,輸入密碼後重新進入,出現下圖則密碼修改成功

9、安裝PHP

yum install php php-devel

 安裝完成

10、重啟Apache

systemctl restart httpd.service

11、建立PHP檔案,檢視安裝是否成功

PHP的核心目錄:/var/www/html(相當於Windows中的htdocs目錄)

若test.php不存在則會建立,若存在則編輯

開啟後,預設的進入命令模式,按a或i進入編輯模式,編輯內容,因為編輯模式不能直接切換到末行模式,所以在編輯模式下退出到命令模式時按ESC退回到命令模式,輸入:wq儲存並退出

12、在位址列輸入地址/檔名,若出現下圖,則表示安裝成功

13、安裝PHP擴充套件

yum install php-mysql php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc

出現下圖則表示安裝成功 

14、重啟Apache,設定生效

systemctl restart httpd.service