mac mysql安装后的操作
首次安装MySQL时会提示你一个默认密码如:
2016-03-05T08:49:48.666137Z 1 [Note] A temporary password is generated for root@localhost:,ktbs,7wk/%Q If you lose this password, please consult the section How to Reset the Root Password in the MySQL reference manual. 这样的语句。
加粗斜体的就是默认的密码,你就可以直接去phpMyAdmin登陆了,有的时候你在登陆的时候回提示,密码过期(Your password has expired. To log in you must change it using a client that supports expired passwords)
这样的话,所以你需要在终端做一下操作
1.进入终端,输入指令:cd /usr/local/mysql/bin/,进入安装目录(安装目录可能会不同);
2.输入指令:sudo su,进入管理员权限(需要输入mac的密码);
3.输入指令:./mysqld_safe --skip-grant-tables &,禁止mysql验证功能。此时mysql服务会自动重启了;
这是命令行输入后的效果
现在就可以用之前的密码通过终端进入MySQL了 使用命令如下:
可以先使用这个命令
mysql -uroot -p
如果提示以下错误:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock'
就通過這種方式打開MySQL:
4、mysql -uroot -h127.0.0.1 -p
你可以通过这个命令改密码:
./mysqladmin -u root -p password 123
但是你可能也会遇见这样的问题:
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
意思是你没有权限去改密码
你可以直接用下面的命令就可以去修改密码了:
5、mysql> SET PASSWORD = PASSWORD('new_password');