3
votes
1answer
77 views

TYPO3 and MySQL database on separate servers

Is it possible to run TYPO3 (6.0) and MySQL on separate servers with TYPO3 connecting to the database through a SSH tunnel?
0
votes
2answers
330 views

SSH tunneling to remote access MySQL database

I am trying to write Java program to access a remote mySQL database using ssh tunneling. Below is my code: int lport = 5656; int rport = 3306; String rhost = "111.222.333.444"; String host = ...
0
votes
1answer
117 views

How to clone a remote mysql database to a local development machine?

I've been working with a few remote servers and got fed up with the delay forwarding MySQL calls through an ssh tunnel (-l 3306:localhost:3306), so I wanted to find a way to quickly and easily clone ...
1
vote
2answers
729 views

SSH tunnel: local => gateway => MySQL server

I need to access a MySQL database on a remote server at my lab. The server is only accessible once I log in to a gateway server on the remote network: local server => gateway server => MySQL server. ...
1
vote
1answer
1k views

MySQL remote access via SSH Tunnel error

I've created an SSH tunnel on my local machine to reach an access to the mysql server on my remote machine. Everything is fine, tunnel is working if I get this error, but why this error occurs? Here ...
0
votes
1answer
572 views

MySQL unknown server host (thru ssh tunnel & CLI, but not workbench)

When I attempt to access mysql over an SSH tunnel, I get the error: ERROR 2005 (HY000): Unknown MySQL server host '[serverhost]' (0) When I make the attempt through MySQL Workbench or over an ...
0
votes
1answer
266 views

How do I connect from a MVC3 .net application to a MySQL database through a SSH tunnel

I am building a .net MVC3 application using Entity Framework 4. One of the databases I would like to connect with has to be accessed through a SSH tunnel. Is there a way to do this through the ...
1
vote
1answer
542 views

mysql over ssh over non-standard port

I am on computer A, and have mysql running on it, and can connect to it as A~ $ mysql -u punkish -p database and so on. I have access to computer B that also has mysql running on it. I can ssh into B ...
4
votes
3answers
3k views

Can someone explain SSH tunnel in a simple way?

Although I use some alias to do ssh tunnel or reverse tunnel, I never understand how it works. Does somebody know how to explain it in very simple way? I think the 3 primary uses are: First, I can ...
0
votes
3answers
2k views

mySQL connecting at any port

I'm running Linux Mint and trying to connect to mySQL this way mysql --port=3306 -u root -p Then it prompts me for my password. This is all fine. Why is it that when I type something like this it ...
1
vote
5answers
2k views

How to connect to MySQL using ssh tunnel with perl

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
2
votes
2answers
1k views

How can I programmatically connect to a remote database server that requires an SSH tunnel?

I'm working on an ETL using C# in which extracts data from a remote MySQL database that requires an SSH tunnel to connect. I currently have it working such that I first create my SSH tunnel manually ...