虚拟机安装mysql-8.0.25-linux-xxx.tar.xz(未完待续)
2021/9/9 19:34:09
本文主要是介绍虚拟机安装mysql-8.0.25-linux-xxx.tar.xz(未完待续),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
安装出现的问题:
1.启动mysql,输入密码错误导致的报错:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
解决:https://blog.csdn.net/qq_36228916/article/details/99632783
改mysql密码:
[root@mas /]# mysql -u root -p
mysql> use mysql;
mysql> update user set password=password(“你的新密码”) where user=“root”;
mysql> flush privileges;
mysql>exit;
更多方式:https://www.cnblogs.com/peashooter/archive/2018/08/10/9456255.html
2.配置文件出错导致的异常:
mysql: [ERROR] unknown variable 'symbolic-links=0'.
解决:
查看my.cnf文件,文件中
# Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0
应该是分两行展示了,修改该行为一行显示
3.my.cnf 配置文件中设置了 [mysqld] 的参数 socket ,而没有设置[client]的参数socket:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
解决:添加 [client] 配置项,如下所示
4.启动mysql报错:mysqld_safe error: log-error set to /var/log/mariadb/mariadb.log
解决:
mkdir /var/log/mariadb
touch /var/log/mariadb/mariadb.log
# 用户组及用户
chown -R mysql:mysql /var/log/mariadb/
/usr/local/mysql/support-files/mysql.server start
5.navicat连接数据库失败(1):
can't connect to mysql server on localhost(10060)
原因:防火墙的问题,3306端口没有开放
解决:开放3306端口或者关闭防火墙,命令如下
1:查看防火状态
systemctl status firewalld(方式一)
service iptables status(方式二)
2:暂时关闭防火墙
systemctl stop firewalld
service iptables stop
3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off
4:重启防火墙
systemctl enable firewalld
service iptables restart
6.navicat连接数据库失败(2):
1130-host 'xxx' is not allowed to connect to this mysql server
解决:
1.修改user表中的Host:update user set Host='%' where User='root';
2.最后刷新一下:flush privileges;
原文链接:https://www.cnblogs.com/asplover/p/13966533.html
学习:虚拟机CENTOS7下 安装8.0版本MySQL MySQL主从配置详细~
https://blog.csdn.net/weixin_42859280/article/details/84587330
这篇关于虚拟机安装mysql-8.0.25-linux-xxx.tar.xz(未完待续)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南
- 2024-10-22MySQL数据库入门教程:从安装到基本操作
- 2024-10-22MySQL读写分离入门教程:轻松实现数据库性能提升
- 2024-10-22MySQL分库分表入门教程
- 2024-10-22MySQL慢查询的诊断与优化指南
- 2024-10-22MySQL索引入门教程:快速理解与应用指南
- 2024-10-22MySQL基础入门教程:从安装到基本操作
- 2024-10-22MySQL数据库中的Binlog详解与操作教程
- 2024-10-12部署MySQL集群项目实战:新手入门教程