I am Using Ubuntu 12.04 (precise) 64-bit Since i am new to Ubuntu i am having issue with grant I'm using following cmd to grant in Ubuntu example
Sudo mysql -u root -p create user username identified by 'pass'
grant all privilege on Db.* to username
if check grants using
show grants for username
| GRANT ALL PRIVILEGES ON . TO 'username' IDENTIFIED BY PASSWORD |
now if i login as user-name it will not ask for password it will directly login without password if i enter password for user it gives me error message:
sudo mysql -u username -p
ERROR 1045 (28000): Access denied for user user-name (using password: YES)
and after login if i give
show databases (it will not show any databases which is granted)
please guide me with an example
And also i would like to know tat if stored procedure is created in root how to get access for other user even tho if i give grant for the particular stored procedure to other user is there some thing to do with definer