第一个问题
Mac先卸载MySQL, 然后使用brew installmariadb安装成功后, 启动时无法使用mariadb
解决方法
如果已安装mysql,可以先删除了:brew uninstall mysqlbrew cleanup;
1. 确保安装最新xcode;
2. brew 检测 brew doctor; 显示Your system is ready to brew.
3. brew升级, brew update;升级过程很慢, 也有些许问题, [github 上brew关于更新问题,](https://github.com/Homebrew/brew);github中指出可以在遇到问题时对`brew doctor`和`brew update`多执行两次,
4. 删除原来的Mariadb, brew uninstall mariadb; 重新安装brew install mariadb;
5. 启动`mysql.server start`;
6. 链接`mysql -uroot`,
第二个问题:运行mysql_install_db安装程序遇到的问题:
解决方法: 先关闭mysql,然后再次执行安装
$ mysql.server stop