Mac 下的MySQL ERROR 1227(42000): Access denied; you need (at least one of)

urgel_babay發表於2016-02-29

Mac 下的MySQL(只有連個庫)

AC-IT002deMacBook-Pro:bin ac-it002$ mysql -u root -p

Enter password:

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 61

Server version: 5.6.17 MySQL Community Server (GPL)


Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.


Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;

+--------------------+

| Database |

+--------------------+

| information_schema |

| test |

+--------------------+

2 rows in set (0.00 sec)


mysql>


報錯:

建立資料庫的時候:

create user newUser;

ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation


ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD privilege(s) for this operation


解決辦法:

都是在終端命令列下面操作的,建議在操作前重新設定一下path

方法一:
1.
關閉mysql
# service mysqld stop
2.
遮蔽許可權
# mysqld_safe --skip-grant-table
螢幕出現: Starting demo from .....
3.
新開起一個終端輸入
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;//
記得要這句話,否則如果關閉先前的終端,又會出現原來的錯誤
mysql> \q

方法二:
1.
關閉mysql
# service mysqld stop
2.
遮蔽許可權
# mysqld_safe --skip-grant-table
螢幕出現: Starting demo from .....
3.
新開起一個終端輸入
# mysql -u root mysql
mysql> delete from user where USER='';
mysql> FLUSH PRIVILEGES;//
記得要這句話,否則如果關閉先前的終端,又會出現原來的錯誤
mysql> \q


mysql> show databases;

+--------------------+

| Database |

+--------------------+

| information_schema |

| d0 |

| d7 |

| mysql |

| performance_schema |

| ptsub |

| test |

+--------------------+

7 rows in set (0.00 sec)

mysql> UPDATE user SET Password=PASSWORD('123456') where USER='root';

ERROR 1046 (3D000): No database selected

mysql> use mysql

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A


Database changed

mysql> UPDATE user SET Password=PASSWORD('123456') where USER='root';

Query OK, 4 rows affected (0.00 sec)

Rows matched: 4 Changed: 4 Warnings: 0


mysql> FLUSH PRIVILEGES;

Query OK, 0 rows affected (0.00 sec)


mysql> \q

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30936525/viewspace-2016622/,如需轉載,請註明出處,否則將追究法律責任。

相關文章