Navicat连接KSWEB中的Mysql
mysql中执行
use mysql;
update user set host ='%' where user ='root';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;
my.ini中添加
[mysqld]
skip-grant-tables
学海无涯,回头是岸
use mysql;
update user set host ='%' where user ='root';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;
[mysqld]
skip-grant-tables