最近遇到个问题,在 Github Actions 的 MacOS 系统环境中,用 brew 安装 MySQL,之前都是好的,最近两天启动后连接不了,这个很难受。
经过一番折腾后给出解决办法:
- name: installdbrun: |brew installmysqlmysqld --initialize-insecurebrew services start mysqlmysql -uroot -e ‘select version()‘
最关键的就是:
mysqld --initialize-insecure |
需要初始化一下 MySQL,也不知道为啥之前不初始化也能用,不管了,总之解决了问题