How to connect with SSH Tunnel?
-
Hi, I have just installed MySQL on Linux server. The server has SSH on it as well. Now I started facing problems (: My .NET application is the problem.... How will connect using the MySQLConection if SSH is enabled on the server? I am getting the following error: Unable to connect to any of the specified MySQL hosts when I try a basic MySQLConnection conection string.. anything special to add for the SSH? Thanks Jassim
Technology News @ www.JassimRahma.com
-
Hi, I have just installed MySQL on Linux server. The server has SSH on it as well. Now I started facing problems (: My .NET application is the problem.... How will connect using the MySQLConection if SSH is enabled on the server? I am getting the following error: Unable to connect to any of the specified MySQL hosts when I try a basic MySQLConnection conection string.. anything special to add for the SSH? Thanks Jassim
Technology News @ www.JassimRahma.com
I would have a look at connection strings website[^] this is the MySql page on there is a couple of SSL connection string examples
Every day, thousands of innocent plants are killed by vegetarians. Help end the violence EAT BACON
-
I would have a look at connection strings website[^] this is the MySql page on there is a couple of SSL connection string examples
Every day, thousands of innocent plants are killed by vegetarians. Help end the violence EAT BACON
I tried this but same problem:
sql_connection = new MySqlConnection("server = 10.0.0.111; Port = 3306; Database = bizcards; Uid = root; Pwd = mujtaba; SslMode = Preferred;");
Technology News @ www.JassimRahma.com