ubuntu20.04 安装 mysql8.0.27
2021/12/13 19:18:58
本文主要是介绍ubuntu20.04 安装 mysql8.0.27,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
安装mysql
$ sudo apt update
$ sudo apt install mysql-server
进行初始化配置$ sudo mysql_secure_installation
查看MySQL版本
$ mysql --version
查看MySQL运行状态systemctl status mysql.service
进行连接$ sudo mysql -u root -p
$ sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
打开文件修改bind-address=0.0.0.0
重启MySQL服务$ sudo systemctl restart mysql.service
连接MySQL
$ sudo mysql -u root -p
创建远程连接账户并授权
mysql> use mysql;
mysql> CREATE USER 'root'@'%' IDENTIFIED BY 'Movies123.';
mysql> grant all privileges on *.* to 'root'@'%';
如果远程连接时报错plugin caching_sha2_password could not be loaded,执行
mysql> alter user 'root'@'%' identified with mysql_native_password by 'Movies123.';
刷新权限
mysql> FLUSH PRIVILEGES;
查看用户
mysql> select host, user, authentication_string, plugin from user;
使用Navicat远程连接
这篇关于ubuntu20.04 安装 mysql8.0.27的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-19Mysql安装教程:新手必看的详细安装指南
- 2024-11-18Mysql安装入门:新手必读指南
- 2024-11-18MySQL事务MVCC原理入门详解
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南