码迷,mamicode.com
首页 > 数据库 > 详细

ubuntu安装mysql

时间:2021-03-29 11:37:21      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:serve   set   mamicode   获取   The   plugin   alt   date   com   

1.执行安装mysql的语句
sudo apt-get install mysql-server mysql-client

 2.查看可登陆账户并查看密码

技术图片

 3.获取到了登陆mysql的账户密码登陆

技术图片

4.之后依次进入mysql数据库,修改root密码,刷新缓存。之后就可以exit退出使用root账户登录了:

use mysql;
update user set plugin="mysql_native_password",authentication_string=password(新密码) where user="root";
FLUSH PRIVILEGES;

5.使用修改后的帐号密码登陆

mysql -uroot -p新密码 

ubuntu安装mysql

标签:serve   set   mamicode   获取   The   plugin   alt   date   com   

原文地址:https://www.cnblogs.com/520dada/p/14582276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!