ERROR 1054 (42S22): Unknown column 'plugin' in 'mysql.user'

孤竹星發表於2017-02-27
新增使用者時報錯
mysql> grant all privileges on *.* to 'aaa'@'%' identified by 'aaa123';
ERROR 1054 (42S22): Unknown column 'plugin' in 'mysql.user'

升級mysql資料庫時,mysql.user表沒有升級,導致欄位缺少,
透過一下方法修改mysql.user表
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> ALTER TABLE user ADD Create_tablespace_priv ENUM('N','Y') NOT NULL DEFAULT 'N' AFTER Trigger_priv;
Query OK, 14 rows affected (0.08 sec)
Records: 14  Duplicates: 0  Warnings: 0


mysql> ALTER TABLE user ADD plugin CHAR(64) NULL AFTER max_user_connections;
Query OK, 14 rows affected (0.09 sec)
Records: 14  Duplicates: 0  Warnings: 0


mysql> ALTER TABLE user ADD authentication_string TEXT NULL DEFAULT NULL AFTER plugin;
Query OK, 14 rows affected (0.05 sec)
Records: 14  Duplicates: 0  Warnings: 0


mysql> ALTER TABLE user ADD password_expired ENUM('N','Y') NOT NULL DEFAULT 'N' AFTER authentication_string; 
Query OK, 14 rows affected (0.04 sec)
Records: 14  Duplicates: 0  Warnings: 0


mysql> grant all privileges on *.* to 'aaa'@'%' identified by 'aaa123';
Query OK, 0 rows affected (0.00 sec)

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

相關文章