Mac下安装MariaDB
1.进官网https://downloads.mariadb.org/mariadb/10.2.6/,下载MariaDB 10.2.6稳定版(免费),选择版本时选择MAC .pkg版本,下载好后双击安装
2.打开MAC终端
sudo /usr/local/mariadb/server/bin/mariadb
输入管理员密码,连接上MariaDB后,需要更改root密码和新建用户,因为远程工具不能用root用户登录(默认root用户密码为空)
3.修改root密码和连接方式:(mysql_native_password: 密码登陆,unix_socket 默认shell登陆)
update mysql.user set authentication_string=password('密码'), plugin='mysql_native_password',password=password('密码') where user='root';
flush privileges;
4.启动MariaDB:
sudo launchctl start com.mariadb.server
5.关闭DB:
sudo launchctl stop com.mariadb.server