I am using Amazon EC2 instance of MySQL and need to modify my perl scripts to connect to the database using ssh tunnel (instead of the plain old hostname:port). Any help is appreciated

Thanks

link|improve this question

31% accept rate
This isn't really a Perl problem -- just set up an ssh tunnel so that the apparent mysql location is the address of your tunnel. – Ether Nov 16 '10 at 18:05
yup.. seems right. – Prateek Nov 16 '10 at 18:21
if you find an answer that helps you, click the tick next to it so that others can find the right answer in the future. – Colin Pickard Nov 17 '10 at 13:16
feedback

5 Answers

up vote 1 down vote accepted

well after establishing SSH tunnel connection differs only with hostname and it's 127.0.0.1 (localhost) in that moment

link|improve this answer
feedback

Open a tunnel:

ssh -fNL 3306:localhost:3306 myname@myhost

Then connect to localhost:3306

link|improve this answer
autossh will help keep the link open. harding.motd.ca/autossh – Leolo Nov 16 '10 at 17:59
feedback

I don't know about ssh but you can encrypt connections between your application and your DB Instance using SSL, would that be sufficent for you?

link|improve this answer
Not exactly the same. The connections will be encrypted, but you're still exposing your mysql port. – chris Nov 16 '10 at 17:58
I actually don't care to encrypt, but Amazon AWS allows remote machines to connect to their EC2 instance only through SSH tunnel. So for example, I was able to connect mysql workbench on my local machine to the EC2 mysql server using workbench's connect option (TCP/IP over ssh), in which one has to specify the ssh hostname (with key pair) and the database hostnames (on localhost with username/password) separately. I am guessing there should be a similar mechanism with perl dbi connect. – Prateek Nov 16 '10 at 18:02
feedback

One note in regard to answer by chris - on some setups "localhost" and "127.0.0.1" make a difference. In my case, localhost didn't work, while 127.0.0.1 did work flawlessly.

link|improve this answer
feedback

MySQL attempts to map localhost[:port] connections to use a local (UNIX) socket; you should use 127.0.0.1 for a tcp/ip socket.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.