- 工信部備案號 滇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ù)碼
通過ip連接MySQL時出現(xiàn)1449、1045異常
mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解決方法
把sql導(dǎo)到本地,執(zhí)行存儲過程 或者 查看視頻報(bào)錯:
mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解決方法
權(quán)限問題,授權(quán) 給 root 所有sql 權(quán)限
mysql> grant all privileges on *.* to root@"%" identified by ".";
SQLException: The user specified as a definer ('ebook'@'%') does not exist:解決辦法
grant all privileges on *.* to ebook@"%" identified by ".";
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
#Mysql
連接時出現(xiàn)1045異常:
如果是mysql 5.6以前的,輸入U(xiǎn)PDATE mysql.user SET Password=PASSWORD('123456') WHERE User='root';
如果是mysql 5.6以后的,輸入U(xiǎn)PDATE mysql.user SET authentication_string=PASSWORD('root') WHERE USER='root';
這是由于5.6以后user表中沒有password字段。
輸入FLUSH PRIVILEGES; 刷新數(shù)據(jù)庫。
售前咨詢
售后咨詢
備案咨詢
二維碼
TOP