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

Ubuntu下的的Mysql

时间:2019-08-04 01:17:56      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:sel   src   code   ubunt   apt-get   server   set   新版本   art   

一、安装

通过使用sudo apt-get install mysql-server安装库中最新版本的mysql

安装好之后,使用mysql -u root -p进入mysql时报错。

技术图片

通过在/etc/mysql/mysql.conf目录下的mysqld.cnf文件中增加skip-grant-tables,以便在登录时可以无需密码进入mysql技术图片

修改后需要使用service mysql restart命令来重启mysql服务,使得刚刚添加的属性生效

技术图片

使用use mysql;

使用select user, plugin, authentication_string from user;来查询用户中的有关信息

通过使用update user set authentication_string=password("mysqlmysql"), plugin=‘mysql_native_password‘ where user=‘root‘;来更新表中相关信息。

技术图片

 

感谢以下博客博文的帮助。

https://www.cnblogs.com/cpl9412290130/p/9583868.html

Ubuntu下的的Mysql

标签:sel   src   code   ubunt   apt-get   server   set   新版本   art   

原文地址:https://www.cnblogs.com/feiyang930112/p/11296802.html

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