navicat Access denied; you need (at least one of) the PROCES

navicat Access denied; you need (at least one of) the PROCES
点击领取淘宝京东拼多多唯品会优惠券

问题描述:

用navicat创建表、设计表的时候出现错误navicat Access denied; you need (at least one of) the PROCESS privilege(s) for this operation

解决办法:

  在phpmyadmin中使用root账户密码登录后,在[sql]中执行
GRANT process ON *.* TO 'test_admin'@'%';
GRANT process ON *.* TO 'test_admin';
需要重启数据库即可
 GRANT:授权命令
*.*通配符,表示所有数据库和所有表
TO:指定要授权的用户
'text_admin'@'%':表示用户'text_admin'在任意主机上。
'%'是 MySQL 中表示任意主机的通配符。