Currently any system user can run:
systemuser$ mysql -u mysqluser -p
(assuming he knows the password).
Is there a way to deny mysql (cli) to use particular mysql user?
eg.
systemuser$ mysql -u mysqluser -p'validmypass'
(success)
otheruser$ mysql -u mysqluser -p'validpass'
(you don't have access)
otheruser$ mysql -u anotheruser -p'validpass'
(success)
(ie. just particular system user may use particular mysql user).