安装:brew install mysql启动:brew services start mysql关闭:brew services stop mysql 登陆:默认没有root用户密码,登陆命令 mysql -uroot设置登陆密码: alter user 'root'@'localhost' identified with mysql_native_password by 'admin';flush privileges; mysql