ubuntu16.04 LTS Server 安裝mysql phpmyadmin apache2 php5.6環境
1、安裝apache
sudo apt-get install apache2
為了測試apache2是否正常,訪問http://localhost/或http://127.0.0.1/,出現It Works!即是安裝成功。
sudo /etc/init.d/apache2 restart
2、安裝php5.6
Ubuntu16.04 php5安裝失敗解決方案 http://blog.csdn.net/u011511945/article/details/51379480
Ubuntu 16.04 comes with PHP7 as the standard, so there are no PHP5 packages
However if you like you can add a PPA to get those packages anyways:
Add the PPA
sudo add-apt-repository ppa:ondrej/php
Install your PHP Version
sudo apt-get update
sudo apt-get install php5.6
3、安裝mysql
sudo apt-get install mysql-server
編輯my.cnf,預設為/etc/mysql/my.cnf。
老版本中註釋掉skip-networking,新版本中註釋掉bind-address = 127.0.0.1或者修改為0.0.0.0(或本機IP)。
#bind-address = 127.0.0.1
重啟mysql
sudo /etc/init.d/mysql restart
sudo apt-get install php5.6-mysql
sudo apt-get install phpmyadmin
sudo apt-get install php5.6-mbstring
sudo apt-get install php-gettext
sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin