ubuntu18.04 安装mysql(命令)

1.安装MySQL

#命令1
sudo apt-get update
#命令2
sudo apt-get install mysql-server

2.配置MySQL

sudo mysql_secure_installation

ubuntu18.04 安装mysql(命令)_第1张图片

 2.2 检查mysql服务状态

systemctl status mysql.service

3.配置远程访问

在Ubuntu下MySQL缺省是只允许本地访问的

3.1 首先用根用户进入 使用2中的密码

sudo mysql -uroot -p

3.2 创建远程账号和密码

GRANT ALL PRIVILEGES ON *.* TO 'remotedb'@'%' IDENTIFIED BY "Rt123456789.";

-- 后刷新MySQL系统权限相关表
flush privileges;

quit;

其中remotedb@%localhost就是本地访问,配置成%就是所有主机都可连接,也可以是具体的ip;

'Rt123456789.'为你给新增权限用户设置的密码;

mysql报错 Your password does not satisfy the current policy requirements_mysql your password does not satisfy the current p-CSDN博客

3.3 修改远程配置 

vim /etc/mysql/mysql.conf.d/mysqld.cnf

 只需注释掉 bind-address = 127.0.0.1,在前面加#

ubuntu18.04 安装mysql(命令)_第2张图片

 4:重启mysql


service mysql restart

5:远程连接

ubuntu18.04 安装mysql(命令)_第3张图片

99:其他相关命令

查看用户
use mysql;
select user,host from user;

创建用户
create user 'root'@'%' identified by '123456';
用户授权
grant all privileges on *.* to ‘root’@’%’
修改成原来的加密方式
alter user 'root'@'%' identified with mysql_native_password by '123456';
刷新MySQL系统权限相关表
flush privileges;

如果还不能远程连接 可以是服务器的防火墙未开 参考 ubuntu 关闭防火墙 - CSDN文库

如果是腾讯云或者是阿里云 请检查用例详情防火墙是否开了 3306端口

你可能感兴趣的:(mysql,数据库)