Linux MySQL 8.0 安装和配置
(在MySQL 8.0中,caching_sha2_password是默认的身份验证插件,而不是mysql_native_password)
1.更新 sudo apt-get update
2.下载 sudo apt-get install mysql-server
3.设置root初始密码
mysql -u root -p
以root进入mysql
alter user 'root'@'localhost' identified with mysql_native_password by 'your_password';
4.运行mysql 安全配置向导
sudo mysql_secure_installation
根据情况自主选择(以下仅作参考):
是否建立密码验证插件(用以验证密码强度):n
首次运行则会要求输入并确认root密码,设置过第2步的root初始密码则会提示是否修改密码。
如果遇到以下报错,请先执行上面第3步的设置root初始密码:
Failed! Error: SET PASSWORD has no significance for user ‘root’@’localhost’
as the authentication method used doesn’t store authentication data in the MySQL server.
Please consider using ALTER USER instead if you want to change authentication parameters.
是否删除匿名用户:y
是否禁止root远程登陆:n
是否删除test数据库:y
刷新权限:y
5.检查mysql 状态
sudo systemctl status mysql
6.登陆mysql 创建新用户修改权限
mysql -u root -p
以root进入mysql
给root账号开放所有权限
grant all privileges on . to root@'locahost';
创建新用户 开放所有权限
******说明******
@后边'localhost'就是仅限本地访问 配置成'%'就是所有主机都可连接
******说明******
create user new_user@'%' identified by 'your_password';
grant all privileges on . to new_user@'%';
修改root账户密码且修改身份验证插件为mysql_native_password
alter user 'root'@'locahost' identified with mysql_native_password by 'your_password';
刷新权限
flush privileges;
#######---------注意--------######
如果无法远程连接 端口监听不是0.0.0.0 而是127.0.0.0
1.vim /etc/my.cnf 注释掉bind-adreess
2.如果/etc/my.cnf为空 vim /etc/mysql/mysql.conf.d/mysqld.cnf注释掉bind-adreess
如果远程链接报加密规则caching_sha2_password问题
以root进入mysql
alter user 'new_user'@'%' identified with mysql_native_password by 'your_password';
flush privileges;
sudo service mysql restart
mysql8 设定可远程连接
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1.7.查询用户密码: 查询用户密码命令:mysql> select host, user, authentica...
- 这个目前应该是MySQL比较新的版本了,教程仅在Linux平台上验证通过,其他平台请自证。提供步骤和思路方便快速分...