网盘地址
链接:https://pan.baidu.com/s/1r-Je09AJrZcmbPYnCI6rfA?pwd=k22h
提取码:k22h
安装
打开Vmware
一直下一步就行了
xshell连接
打开虚拟机,右键进入Terminal终端,
只复制op@ubuntu:~$后面的语句,前面op代表用户,ubuntu代表我的虚拟机的名字,实际操作的时候只复制后半部分内容:sudo ufw disable
bash
op@ubuntu:~$ sudo ufw disable
bash
op@ubuntu:~$ sudo apt update
op@ubuntu:~$ sudo apt install openssh-server
查看你的IP地址,并打开xshell软件,点击新建连接
bash
ifconfig
安装MySQL
安装指令
bash
sudo apt update
bash
sudo apt install mysql-server
bash
sudo systemctl mysql-server
sudo /etc/init.d/mysql start
修改密码
bash
sudo mysql
bash
SELECT user,authentication_string,plugin,host FROM mysql.user;
bash
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';