How to get Navicat to browse your linode securely (via SSH)
other tuts out there
* SSH to your linode and forward local port 13306 to your linode's mysql port 3306
ssh -L13306:127.0.0.1:3306 host@yourLinodeIP
* Fire up mysql with the user and database you want to access (you'll be prompted for password)
mysql -u database_username -p database_name
* Now fire up you local Navicat application. Set the following in the connection settings:
Connection Name: whatever
Host name/ IP address: localhost
Port: 13306
Username: (your database username)
Password: (your database password)
* Hit the 'Test Connection' button to see if you succeeded
Now the next step would be to set up a script to automate this.
Edit: Fixed thread title