ERROR 1290 (HY000): The MySQL server is running with

你好我是李白發表於2020-07-15

1.mysqld --defaults-file=my.cnf --skip-grant-tables &

2.mysql -uroot -S mysql.sock

mysql> alter user root@'192.168.0.%' identified by '111111';
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
mysql> flush privileges;       # 不進行flush privileges會報錯
Query OK, 0 rows affected (0.16 sec)
mysql> alter user root@'192.168.0.%' identified by '111111';
Query OK, 0 rows affected (0.03 sec)

3.重啟mysql

參考:

https://www.cnblogs.com/mschen/p/11511578.html


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

相關文章