Ubuntu安装MySQL8.0,并用Navicat远程连接

1.安装MySQL

sudo apt-get install mysql-server

2.查看默认用户名和密码

新版的MySQL安装后,默认用户名不是root,为了方便,一般我们需要修改成我们想要的用户名和密码。进入配置文件:

root@vivobook:/home/thanlon# vim /etc/mysql/debian.cnf
debian.cnf:
  # Automatically generated for Debian scripts. DO NOT TOUCH!
  [client]
  host     = localhost
  user     = debian-sys-maint
  password = UwPyJArufIVRvuYC
  socket   = /var/run/mysqld/mysqld.sock
  [mysql_upgrade]
  host     = localhost
  user     = debian-sys-maint
  password = UwPyJArufIVRvuYC
  socket   = /var/run/mysqld/mysqld.sock

可以看到配置文件中的默认用户名和密码,在这里我们先使用配置文件中的用户名user和password登录到数据库。

3.使用默认用户登陆MySQL

mysql -udebian-sys-maint -p

Ubuntu安装MySQL8.0,并用Navicat远程连接_第1张图片

4.修改用户名和密码

查看mysql中默认数据库:

show databases;

Ubuntu安装MySQL8.0,并用Navicat远程连接_第2张图片

使用数据库mysql:

use mysql;

在这里插入图片描述

将root用户的密码设置为空:

update user set authentication_string='' where user='root';

注意:不可以使用update user set authentication_string=password(密码) where
user=‘root’;,其原因是该版本mysql没有password函数。

Ubuntu安装MySQL8.0,并用Navicat远程连接_第3张图片

清空root用户默认的密码:

select user,authentication_string from user where user='root';

为root设置密码:

ALTER user 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';

查看设置root用户和密码:

select user,authentication_string from user where user='root';

Ubuntu安装MySQL8.0,并用Navicat远程连接_第4张图片

5.配置MySQL远程登陆

#修改配置文件,注释掉 bind-address = 127.0.0.1
$ sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf

# 保存退出,然后进入mysql服务,执行授权命令:
$ mysql -uroot -p

#进入数据库后
use mysql;
select host from user where user='root';

进入数据库后,可以看到当前主机配置信息为localhost.
Ubuntu安装MySQL8.0,并用Navicat远程连接_第5张图片
将Host设置为通配符%

update user set host = '%' where user ='root';

修改后要刷新一下

flush privileges

退出数据库后重启数据库服务

sudo /etc/init.d/mysql restart #重启mysql服务

然后就可以在数据库工具远程MySQL数据库了。
参考连接:
链接1
链接2
链接3

你可能感兴趣的:(笔记,Linux,mysql,ubuntu)