MySQL Forums
Forum List  »  Connector/ODBC

Re: MySQL Connector/ODBC with proxy server usage
Posted by: Bogdan Degtyariov
Date: October 08, 2019 05:55AM

Hi Pavel,

You can do the port forwarding to forward some of your local ports (say 3306) to port 3306 on your MySQL Server host connecting through proxy.

In Windows this can be done through PuTTy.
I Linux through the command line like this:

ssh -L 3306:mysqlhost_address:3306 user@proxy_address

When all is done correctly you should be able to connect to MySQL at localhost port 3306.

Options: ReplyQuote


Subject
Written By
Posted
Re: MySQL Connector/ODBC with proxy server usage
October 08, 2019 05:55AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.