博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mac os Mojave中brew安装的mysql因升级导致无法启动问题的解决
阅读量:6656 次
发布时间:2019-06-25

本文共 945 字,大约阅读时间需要 3 分钟。

估计是手欠,一不小心把mysql5.7升到8.0.15,版本高看着就爽啊。

结果是mysql起不起来了。。。

于是想了各种办法:

  • 办法1:把版本降回去。结果还是不能启动,说的是用到了高版本的文件,需要删除所有的数据重装,这是万万不能接受的。
  • 办法2:看错误日志一个问题一个问题解。结果花了一下午,仍然没有搞定。直到。。。找到这个错误
[ERROR] [MY-013129] [Server] A message intended for a client cannot be sent there as no client-session is attached. Therefore, we're sending the information to the error-log instead: MY-001146 - Table 'mysql.component' doesn't exist

然后在google上搜“[ERROR] [MY-013129] [Server]”,原来已经有人遇到同样的问题了:

1. stop 5.7.212. swap binaries for 8.0.43. start mysql with skip-networking and skip-grant-tables etc.4. sudo mysql_upgrade --no-defaults $(sudo my_print_defaults client | egrep '^--socket' | head -1)5. restart mysql

依样画葫芦:

1.brew services stop mysql2.mysqld_safe --user=mysql --skip-grant-tables --skip-networking &3.sudo mysql_upgrade --no-defaults $(sudo my_print_defaults client | egrep '^--socket' | head -1)4.brew services start mysql

问题解决

转载于:https://blog.51cto.com/ustb80/2384166

你可能感兴趣的文章
Centos7 配置 sendmail、postfix 端口号25、465
查看>>
ActiveMQ - 初体验,探讨JMS通信模型
查看>>
URL的井号(转自阮一峰)
查看>>
我的友情链接
查看>>
解密FFmpeg播放状态控制内幕
查看>>
我的友情链接
查看>>
90、MPLS基础配置实验
查看>>
51cto博客 存在csrf漏洞
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
路由器的密码恢复
查看>>
使用Hystrix守护应用(3)
查看>>
mysql数据库show processlist查看当前连接数及状态,show status查看所有状态
查看>>
收集了一些linux的命令
查看>>
Scenario 6 –HP C7000 Virtual Connect FlexFabric SUS with A/A Uplinks, 8
查看>>
Java 框架新贵入驻 TechEmpower Framework Benchmark
查看>>
CentOS6.3 64位安装wine出错,牛人帮帮忙
查看>>
国内的Maven服务器
查看>>
C# winform DataGridView 的18种常见属性
查看>>
MySQL存储过程
查看>>