আমি কিছু স্টাফ পরীক্ষা করছিলাম এবং একটি যুক্ত করেছি:
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;
তবে এটি এখনও দেখায় যে অনুদানের তালিকায় ইউএসএজি অনুদান।
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
কোন ধারণা কেন? আমি কি ভুল করছি?