redis 安装
mysql 安装
- brew install mysql
启动
- brew services start mysql(后台启动)
- mysql.server start(非后台启动)
- 没有详细的配置文件,可参考其他系统下的my.cnf进行自我配置
1、我们在没有root 密码的情况下安装了您的MySQL数据库。确保它运行:mysql_secure_installation
2、登录mysql: mysql -uroot
3、如果忘记密码:
1 | cd /usr/local/bin/mysql/ |
4、
1
ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY ‘你的密码’;
mongodb 安装
- brew install mongodb
启动
- brew services start mongodb (后台启动)
- mongod –config /usr/local/etc/mongod.conf (非后台启动)