Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 807 Bytes

MySQL安装.md

File metadata and controls

53 lines (38 loc) · 807 Bytes

MySQL 安装

安装

brew update
brew install mysql

安装完成

==> Summary
🍺  /usr/local/Cellar/mysql/8.0.19_1: 286 files, 288.8MB
==> Caveats
==> mysql
We've installed your MySQL database without a root password. To secure it run:
    mysql_secure_installation

MySQL is configured to only allow connections from localhost by default

To connect run:
    mysql -uroot

To have launchd start mysql now and restart at login:
  brew services start mysql
Or, if you don't want/need a background service you can just run:
  mysql.server start

启动服务

brew services start mysql

重置 root 密码为 12345678

mysql_secure_installation

客户端连接服务

mysql -uroot -p

my.cnf 位置

/usr/local/etc/my.cnf