Bazı şeyleri test ediyordum ve şunları ekledim:
grant usage on statistics.* to cptnotsoawesome@localhost identified by 'password';
şimdi yaptığımda
show grants for cptnotsoawesome@localhost;
Bunlardan birinin olduğunu görebiliyorum:
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
Şimdi bir güvenlik tehlikesi olduğunu düşünüyorum olarak kaldırmak istiyorum, bu yüzden:
REVOKE USAGE ON *.* FROM 'cptnotsoawesome'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Ancak hâlâ USAGE'nin hibe listesinde olduğunu gösteriyor.
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
Neden herhangi bir fikir? Neyi yanlış yapıyorum?