You want to immediately stop access to a database server for remote user ‘mike’@’client.example.com’. This user is currently not connected to the server.
Which two actions can you take to stop any access from the user?
A.
Use ALTER USER ‘mike’@’client.example.com’ PASSWORD EXPIRE;
B.
Use REVOKE ALL PRIVILEGES FROM ‘mike’@’client.example.com’;
C.
Execute the mysql_secure_installation command.
D.
Use DROP USER ‘mike’@’client.example.com’;
E.
Use GRANT USAGE ON *.* TO ‘mike’@’client.example.com’ MAX_USER_CONNECTIONS=0;
F.
Use ALTER USER ‘mike’@’client.example.com’ ACCOUNT LOCK;
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit