安装apache
sudo apt install apache2 -y
安装MySQL
apt install mysql-server -y
安装中间没有设置密码,下面开始设置密码
打开配置文件 /etc/mysql/debian.cnf
sudo vim debian.cnf
//使用这里边的user和password进入mysql
登入mysql之后,重置root密码
use mysql
update user set authentication_string=PASSWORD('123456') where User='root' //mysql5.7的密码保存字段是authentication_string,
update user set plugin='mysql_native_password';
flush privileges;
quit;
到这已经可以使用root 123456 进入mysql
安装php
apt install php -y