在Ubuntu上安裝LAMP伺服器

zting科技發表於2017-08-31

1.安裝Ubuntu上安裝LAMP

1
apt-get install lamp-server^

2.安裝過程中設定MySql密碼

3.測試 建立index.php

var/www/html/index.php

index.php的內容為

1
<?php phpinfo(); ?>

重啟apache,

service apache2 restart

在瀏覽器中輸入

1
http://localhost/index.php

或者localhost改為IP地址

5配置MYSql

1
cat /etc/hosts | grep localhost

顯示:127.0.0.1  localhost

1
cat /etc/mysql/my.cnf | grep bind-address

顯示:bind-address = 127.0.0.1

 

6.  安裝phpMyAdmin

1
apt-get install phpmyadmin

7. 配置Apache伺服器

1
cp /etc/phpmyadmin/apache.conf /etc/apache2/conf-enabled/phpmyadmin.conf

然後重啟apache

訪問http://localhost/phpmyadmin頁面

如果出現如下錯誤:

#2002 – The server is not responding (or the local MySQL server`s socket is not correctly configured)

解決方法:

/etc/mysql/my.cnf

1
2
3
[client]
port            = 3306
socket          = /var/run/mysqld/mysqld.sock

 

本文轉自Work Hard Work Smart部落格園部落格,原文連結:http://www.cnblogs.com/linlf03/p/5819075.html,如需轉載請自行聯絡原作者


相關文章