内容简介:过去公司都是用的5.7 系列的MySQL,随着8.0的发版,也想试着升级一下。遇到了两个小错误,记录在此。路径设置:安装包路径:/data/mysql80/
过去公司都是用的5.7 系列的MySQL,随着8.0的发版,也想试着升级一下。遇到了两个小错误,记录在此。
路径设置:
安装包路径:/data/mysql80/
数据路径:
/data/mysql/
下面描述一下,我安装时遇到的错误 和 问题解决方案:
问题1 Premission denied
因为 mysql80 安装文件 是我从其它Server上Copy过来的,不是官网下载解压,所以,我在初始化MySQL 和 启动MySQL 服务是报错,提示权限不够。
初始化报错:
启动服务报错 :
解决方案:
针对第一个错误,执行以下代码:
chmod -R 755 /data/mysql80/bin/
针对第二个错误,执行以下代码:
chmod -R 755 ./mysql.server (这个文件是 /data/mysql80/support-files)
和
chmod -R 755 /etc/init.d/mysqld
问题2 ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'password('XXXXX')' at line 1
在登录MySQL,修改root密码时,使用就方法 SET PASSWORD=PASSWORD(‘[新密码]’) 报错。
查看网上的相关解释为:
以前版本的MySQL的密码认证插件是“mysql_native_password”,而现在使用的是“caching_sha2_password”。
解决方案:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';
FLUSH PRIVILEGES;
问题3 开启远程登入报错,You are not allowed to create a user with GRANT
当开启远程登入时,提示错误信息如下:
解决方案:
通过命令
select host,user,authentication_string,plugin from user;
查看host 栏位值 确实限定为 localhost ;
则直接通过 命令
update user set host = "%" where user='root';
直接修改。
验证,可以远程连接了。
Linux公社的RSS地址: https://www.linuxidc.com/rssFeed.aspx
本文永久更新链接地址: https://www.linuxidc.com/Linux/2018-09/154246.htm
以上所述就是小编给大家介绍的《安装MySQL 8.0 遇到的问题及解决》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Lamp 安装 MySQL 遇到的问题汇总
- MacOS 下安装 flutter 遇到的一个依赖问题
- golang安装遇到问题和解决,初始化beego项目
- Vue项目升级webpack4.x和遇到的那些安装包Error
- 遇到的加密算法
- 静态库遇到静态库
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Modeling the Internet and the Web
Pierre Baldi、Paolo Frasconi、Padhraic Smyth / Wiley / 2003-7-7 / USD 115.00
Modeling the Internet and the Web covers the most important aspects of modeling the Web using a modern mathematical and probabilistic treatment. It focuses on the information and application layers, a......一起来看看 《Modeling the Internet and the Web》 这本书的介绍吧!