Archive

Archive for January, 2008

Bonfirejobs job listings

January 28th, 2008 mike Comments off

We just added FREE job listings to bonfireJobs. Check it out, not even craigslist is free.

Categories: Random Cool Stuff Tags:

Sun to acquire MySQL

January 16th, 2008 mike Comments off
Categories: Random Cool Stuff Tags:

Ssh tunnel to remote MySQL

January 10th, 2008 mike Comments off

You’ve got port 3306 (MySQL) firewalled off and you want to use a MySQL GUI every once in a while (or maybe a bunch).

This is a snap with ssh.

On your local Linux/BSD/Mac/Unix machine (works in cygwin too) edit your .ssh/config file and add:

Host somemysqlserver
 Hostname server.mydomain.com #your mySQL server FQDN or IP
 User bob #replace with your valid ssh server username
 LocalForward *:13306 localhost:3306

Now do:

ssh -f -N somemysqlserver

You can now connect to your localhost port 13306 and it will forward to your MySQL server’s port 3306.

Plus, it’s free and probably already installed on your systems.

Need help? support@imapenguin.com

Categories: How-To, Linux, Mac, Programming, Security, servers Tags: