解决在 Github Actions 的 MacOS 环境中安装使用 MySQL 启动后无法连接的问题

最近遇到个问题,在 Github Actions 的 MacOS 系统环境中,用 brew 安装 MySQL,之前都是好的,最近两天启动后连接不了,这个很难受。

经过一番折腾后给出解决办法:

- name: installdbrun: |brew installmysqlmysqld --initialize-insecurebrew services start mysqlmysql -uroot -e ‘select version()‘

最关键的就是:

mysqld --initialize-insecure

需要初始化一下 MySQL,也不知道为啥之前不初始化也能用,不管了,总之解决了问题

 

解决在 Github Actions 的 MacOS 环境中安装使用 MySQL 启动后无法连接的问题

上一篇:centos启动mysql,提示ysqld_safe Directory '/var/lib/mysql' for UNIX socket file don't exists.


下一篇:基于zabbix+grafana 监控oracle database、goldengate数据库面板展示