Mac下安装MariaDB
Posted zhengdianlong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于Mac下安装MariaDB的主要内容,如果未能解决你的问题,请参考以下文章
MySQL索引与Index Condition Pushdown
Centos6.6下安装MariaDB步骤,利用yum进行安装
11.6 MariaDB安装;11.7 Apache安装(上)11.8 Apache安装(中)11.9 Apache安装(下)