Share database across computers on the same network
Let's assume that you want to grant permission to a database called 'testDB', you can easily grant permission using below command
grant all privileges on testDB.* to '<uname>'@'%' IDENTIFIED BY '<password>';
Then the other machine on the network can access this database by using the command
No comments:
Post a Comment