Tôi đã thử nghiệm một số thứ và thêm:
grant usage on statistics.* to cptnotsoawesome@localhost identified by 'password';
vì vậy bây giờ khi tôi làm
show grants for cptnotsoawesome@localhost;
Tôi có thể thấy rằng một trong số họ là:
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
Bây giờ tôi muốn xóa nó vì tôi nghĩ đó là một mối nguy hiểm bảo mật, vì vậy tôi làm:
REVOKE USAGE ON *.* FROM 'cptnotsoawesome'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Nhưng nó vẫn cho thấy USAGE cấp trong danh sách tài trợ.
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
Bất cứ ý tưởng tại sao? Tôi đang làm gì sai?