- Posts: 2
- Thank you received: 0
Grid Status: | Offline |
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
mysql> update db set Host='<REMOTE_IP>' where Db='robust';
mysql> update user set Host='<REMOTE_IP>' where user='foo';
mysql> CREATE DATABASE robust;
mysql> GRANT ALL ON robust.* TO foo@'<REMOTE_IP>' IDENTIFIED BY '<PASSWORD>';
Please Log in to join the conversation.