- 工信部備案號 滇ICP備05000110號-1
- 滇公安備案 滇53010302000111
- 增值電信業(yè)務(wù)經(jīng)營許可證 B1.B2-20181647、滇B1.B2-20190004
- 云南互聯(lián)網(wǎng)協(xié)會理事單位
- 安全聯(lián)盟認(rèn)證網(wǎng)站身份V標(biāo)記
- 域名注冊服務(wù)機(jī)構(gòu)許可:滇D3-20230001
- 代理域名注冊服務(wù)機(jī)構(gòu):新網(wǎng)數(shù)碼
MySQL修改密碼報錯:ERROR 1290 (HY000) The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
修改MySQL數(shù)據(jù)庫密碼報1290 錯誤 如下:
alter user ‘root’@‘localhost’ identified by ‘root’;
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
需要刷新下配置
flush privileges;
Query OK, 0 rows affected (0.00 sec)
然后就可以修改密碼了
set password for root@localhost=password('root');
Query OK, 0 rows affected, 1 warning (0.00 sec)
修改密碼后重啟mysql
systemctl restart mysqld
售前咨詢
售后咨詢
備案咨詢
二維碼
TOP