나는 물건을 테스트하고 있었고 다음을 추가했다.
grant usage on statistics.* to cptnotsoawesome@localhost identified by 'password';
그래서 지금 할 때
show grants for cptnotsoawesome@localhost;
나는 그들 중 하나가 다음을 볼 수 있습니다 :
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
이제 보안 위험이라고 생각하여 제거하고 싶습니다.
REVOKE USAGE ON *.* FROM 'cptnotsoawesome'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
그러나 여전히 보조금 목록에 USAGE 보조금이 표시됩니다.
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
어떤 아이디어가 있습니까? 내가 도대체 뭘 잘못하고있는 겁니까?