GNU/Linux Desktop Survival Guide
by Graham Williams |
|||||
Remote User Permissions |
On any host in domain togaware.com user kayon would like to connect to the customers database with select privileges on the MySQL server running on alpine.togaware.com.
You can arrange this as follows. The first insert adds this user's password to the users table. The second then gives this user access to a particular database.
On alpine.togaware.com:
alpine$ mysql -u root -pYYYYYY mysql mysql> insert into user (host,user,password) -> values ('%.togaware.com', 'kayon', password('XXXXXX')); Query OK, 1 row affected (0.00 sec) mysql> insert into db (host,db,user,select_priv) -> values ('%.togaware.com', 'customers', 'kayon', 'Y'); Query OK, 1 row affected (0.00 sec) mysql> exit alpine$ mysqladmin -u root -pYYYYYY reload |
Then on inco.togaware.com, for example:
inco$ mysql -h alpine -u kayon -pXXXXXX customers -e 'show tables' |