1.安装数据库服务:
sudo apt-get install mariadb-server
2.安装数据库客户端:
sudo apt-get install mariadb-client
3.安装好之后,默认使用sudo权限登录mysql库是没有密码的:
sudo mysql -u root 回车
4.设置mysql的root用户密码:
update user set authentication_string=password("ln122920"),plugin='mysql_native_password' where user='root';
5.在mysql8中设置mysql的root密码:
ALTER user 'root'@'localhost' IDENTIFIED BY 'newpassward';