阿里云安装mysql

阿里云安装mysql

1.安装MySql

yum install -y mysql-server

显示Complete!说明安装成功

2.设置开机启动Mysql

systemctl enable mysqld.service

3.检查是否已经安装了开机自动启动

systemctl list-unit-files | grep mysqld

如果显示以下内容说明已经完成自动启动安装

mysqld.service enabled

4.设置开启服务

systemctl start mysqld.service

5.查看MySql默认密码

在/var/log/mysql目录下

6.、登陆MySql,输入用户名和密码

mysql -uroot -p

7.修改密码

7.1.在数据库外修改密码

mysqladmin -u root -p旧密码 password 新密码;

7.2.数据库内修改密码
7.2.1.新建用户设置密码

create user root@'localhost' identified by '密码';

7.2.2.已有用户修改密码

alter user root@'localhost' identified by '密码';

7.3在mysql数据库里的user表中,改自己的密码

set password = password ('新密码');

7.4.修改其他用户的密码

set password for '用户名'@'localhost或者%' =password('密码');

7.5.更新用户密码

update MySQL.user set authentication_string=password('密码') where user='root';
flush privileges‘;

8、开启远程登录,授权root远程登录
MySQL8.0之前的

grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456with grant optio

而MySQL8.0及之后的,设置[远程连接]权限要用下面的语句才可以

create user root@'%' identified by '123456';

grant all privileges on *.* to root@'%' with grant option;

9.命令立即执行生效

flush privileges;

11、切换到mysql数据库

use mysql

12、查看一下现有用户及连接权限

select user, host from user;

看到%则代表开通远程成功。

 其它相关的命令收集

# 查看MySql相关文件
[root@localhost ~]# find / -name mysql

# 重启MySql服务
[root@localhost ~]# service mysqld restart

# 查看MySql版本
[root@localhost ~]# yum repolist all | grep mysql

# 查看当前的启动的 MySQL 版本
[root@localhost ~]# yum repolist enabled | grep mysql

# 通过Yum来安装MySQL,会自动处理MySQL与其他组件的依赖关系
[root@localhost ~]# yum install mysql-community-server

# 查看MySQL安装目录
[root@localhost ~]# whereis mysql

# 启动MySQL服务
[root@localhost ~]# systemctl start mysqld

# 查看MySQL服务状态
[root@localhost ~]# systemctl status mysqld

# 关闭MySQL服务
[root@localhost ~]# systemctl stop mysqld

# 测试MySQL是否安装成功
[root@localhost ~]# mysql

# 查看MySql默认密码
[root@localhost ~]# grep 'temporary password' /var/log/mysqld.log

# 查看所有数据库
mysql>show databases;

# 退出登录数据库
mysql>exit;

# 查看所有数据库用户
mysql>SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user


# 问题``1251 - Client does not support authentication protocol requested by server; Consider upgrading the MysQL client

1、问题原因
上网搜索解决方案,网上说出现这种情况的原因是:mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password, 

解决问题方法有两种:

方法1.升级navicat驱动;

方法2.把mysql用户登录密码加密规则还原成mysql_native_password. 

2、解决
在命令行输入如下命令,修改密码。

ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则 (这行我没有写,不过貌似也可以)
 
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #更新一下用户的密码 
 
FLUSH PRIVILEGES; #刷新权限

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值