1、MAC Mysql安裝mysql
一、下載dmg安裝sql
從http://dev.mysql.com/downloads/mysql/下載dmg安裝this
2、Mysql密碼修改命令行
一、經過mysql -uroot -ppwd進入到命令行,會發現任何操做都會出現ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement。也就是必須馬上修改密碼。string
修改密碼方法:io
ALTER USER 'root'@'localhost' IDENTIFIED BY 'pwd' ;date
update mysql.user set authentication_string=PASSWORD('pwd') where user='root' and host='localhost';下載
flush privileges;密碼
修改完畢方法