• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Grant Access To Remote IP Address

Custom Title Activated
Loyal Member
Joined
Aug 23, 2010
Messages
1,544
Reaction score
423
This tutorial for connecting Mysql with Navicat on your Windows side

Swordsman Online VirtualBox Repack + Server Files
http://forum.ragezone.com/f869/release-swordsman-online-virtualbox-repack-1005099

Open Terminal console on CentOS or use Putty

Connect to mysql server:
Code:
mysql -u root -p mysql

Grant access to a new database:
If you want to add a new database called pw for user root and remote IP 192.168.2.2 (this is your Windows local ip) then you need to type the following commands at mysql> prompt:

Code:
mysql> CREATE DATABASE [COLOR="#FF0000"]pw[/COLOR];
mysql> GRANT ALL ON [COLOR="#FF0000"]pw[/COLOR].* TO [COLOR="#FF0000"]root[/COLOR]@'202.54.10.20' IDENTIFIED BY '[COLOR="#FF0000"]game[/COLOR]';

Default;
Mysql database name: pw
Mysql login: root
Mysql password: game
 
Back
Top