Ubuntun安装Mysql8.0以及解决远程连接错误

Ubuntun安装MySQL8.0以及远程连接出错

一、安装

sudo apt-get install mysql-server
sudo apt-get install mysql-client
sudo apt-get install libmysqlclient-dev

测试

mysql -u root -p

二、远程连接
首先进入Linux登陆到mysql,在mysql命令行界面下,使用:

alter user 'root'@'localhost' identified by 'password' password expire never;
alter user 'root'@'localhost' identified with mysql_native_password by 'password';
flush privileges;

三、项目测试可能取不到值
在Idea使用数据库进行测试,如果取不到值或者异常出错,考虑是不是MySQL8.0的时区异常。

set global time_zone = '+8:00';

以上命令行在mysql的命令行界面使用。

你可能感兴趣的:(Ubuntun安装Mysql8.0以及解决远程连接错误)