mysql8和原来的版本有点不一样,8的安全级别更高,所以在创建远程连接用户的时候,不能用原来的命令(同时创建用户和赋权):mysql>grant all PRIVILEGES on *.* to test@'localhost' identified by '12... /
2018-07-08 22:57:05 / 查看
1096 次
创建用户CREATE USER 'root'@'%' IDENTIFIED BY 'password';创建用户并赋予指定权限grant create,select,update,insert,delete,alter on bbs.* to lvtao@localhost identified by ... /
2018-07-01 20:48:34 / 查看
288 次
grant all privileges on zabbix.* to ihunter@'%' identified by '***'; # 增加授权revoke all privileges on zabbix.* from ihunter@'%' identified by ... /
2018-07-01 20:48:27 / 查看
218 次
在 Navicat for MySQL 下面直接执行 SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass'); 就可以 方法1: 用SET PASSWORD命令 mysql -u root mysql> SET PASSWORD... /
2018-07-01 20:47:14 / 查看
251 次