Java|快速上手 Linux 系统部署 Java 项目( 五 )



16、exit 退出 , 使用新密码重新登陆 。
17、开启远程访问 。
create user 'root'@'%' identified with mysql_native_password by 'root';
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;

18、CentOS 开放 3306 端口 。
firewall-cmd --zone=public --add-port=3306/tcp --permanent
systemctl restart firewalld.service
firewall-cmd --reload

19、使用 DataGrip 连接 , 如果报如下错误 , 是数据库的时区问题 , 因为 MySQL 安装默认设置为美国时区 , 而北京时间比美国晚 8 小时 。

在数据库中修改时区即可 。

set global time_zone='+8:00';

再次连接 , 成功 。


推荐阅读