Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Connecting to a local database on a remote machine

I had a MySQL instance on a remote server that had only local access. I wanted to connect to that database via my local copy of CocoaMysql. Using ssh portforwarding you can do it like this:

   1  
   2  ssh -N -L <port_number>:127.0.0.1:3306 remote_machine


so you can now open CocoaMysql and connect to localhost, bla, bla but if you use the <port_number> assigned above you should see your remote database.
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS