I want to map 127.0.0.1 to multiple names instead of the standard way as localhost. so my /etc/hosts file in Ubuntu would have the following entries:
127.0.0.1 localhost
127.0.0.1 localhost:extra1
127.0.0.1 localhost:extra2
Now, in MySQL, I want to have a user named karthick and it should have different privileges.
select user,host from users;
The above statement shows
karthick localhost:extra1;
karthick localhost:extra2;
My question:
I am not able to login using
mysql -u karthick -h localhost:extra1 -p
What would be the problem?
Motivation behind the question
I want to login as below
login 1:
mysql -u karthick -h localhost:extra1 -p
login 2:
mysql -u karthick -h localhost:extra2 -p
I want login 1 and login 2 to have different set of privileges... Hope this is possible