Mac安装mysql

Mac安装mysql

# 首先安装mysql
brew install mysql

# 此时root无密码
mysql -uroot

# 初始化密码
mysql -uroot
ALTER USER'root'@'localhost'IDENTIFIED BY ‘123456’;
flush privileges;
quit;

# 此时再登陆需要密码
mysql -uroot -p
posted @ 2022-09-10 20:34  eryo  阅读(24)  评论(0)    收藏  举报