1. php与mysql的安装
#安装mysql
sudo apt-get install mysql-server
#这个完成后会有一个要求输入root用户密码的部分
sudo apt-get install mysql-client
#安装apache
sudo apt-get install apache2
#安装php
sudo apt-get install php5
#安装连接关系(直接都配置好了,windows下改这个改那个的情况完全不用担心)
sudo apt-get install libapache2-mod-auth-mysql
sudo apt-get install php5-mysql
网友评论