Hello Guys,
How do I know that SSL connection works? I could not see it in the status window.
What I did was that I went to FireFox Tools->Options->Advanced->show certificats. Selected the servers tab and exported the certificate for my webhosting company as PEM file.
In heidiSQL session manger I selected the SSL tab and added the certificate under the last field SSL certificate.
I described this process because I couldn't find it myself, so maybe it will be usefull for others.
Now I got the connection, but how do I know that I got the SSL connection. I coudn't verify this in any way?
Anyone uses SSL with heidiSQL and can explain this to me?
Also advaice to all users. If you can't use SSH or SSL don't connect through external tools like this via TCP/IP. It's a free lunch for hackers. They even don't have to hack your webpage to download your whole databas.
All the best and thanks for a great tool
How do I know that SSL connection works?
It's not there for my webhosting company connection. I see in the variables
have_SSL: no
have_openssl: no
but for the local connection the variables are there.
What I noticed is that if I add other file then the *.pem I will get error from host when connecting. Only with the correct file I can connect to the host. But this is no warranty that the SSL connection is there. I will also send a mail to my webhosting company.
If it's not to difficault to have some kind of status on SSL connection and a worning if pepole don't connect via secure connection in open networks would be of grate value for security reason.
All the Best
have_SSL: no
have_openssl: no
but for the local connection the variables are there.
What I noticed is that if I add other file then the *.pem I will get error from host when connecting. Only with the correct file I can connect to the host. But this is no warranty that the SSL connection is there. I will also send a mail to my webhosting company.
If it's not to difficault to have some kind of status on SSL connection and a worning if pepole don't connect via secure connection in open networks would be of grate value for security reason.
All the Best
What I can tell quickly is that HeidiSQL only processes SSL options if the private key and both certificates are not empty:
You are absolutely right - it is not transparent to the user when exactly SSL gets used. I should
- add some SSL info to the balloon hint which pops up when hovering over the server version in the status bar
- change the status bar icon, add some lock icon
if (FParameters.SSLPrivateKey <> '') and
(FParameters.SSLCertificate <> '') and
(FParameters.SSLCACertificate <> '') then begin
... [init SSL connection]
You are absolutely right - it is not transparent to the user when exactly SSL gets used. I should
- add some SSL info to the balloon hint which pops up when hovering over the server version in the status bar
- change the status bar icon, add some lock icon
Code modification/commit
8d9539e
from ansgar.becker,
14 years ago,
revision 6.0.0.3686
Indicate SSL enabled connection, via lock icon in status bar, logging line at connection time, and line in connection info popup. See http://www.heidisql.com/forum.php?t=7739
Code modification/commit
4bef2d7
from ansgar.becker,
14 years ago,
revision 6.0.0.3689
Raise readable connection error when SSL settings are incomplete. Were silently ignored before, so the user didn't knew if SSL is being used. See http://www.heidisql.com/forum.php?t=7739
We have also a MySQL Server hosted by an external provider. The connection with SSL works fine with the official MySQL command line tools and with the official MySQL Workbench too. The parameter we used are the following:
host
username
password
port 3306
TCP/IP
SSL private key (empty)
SSL CA (path to pem certificate)
SSL certificate (empty)
With Heidi current release (r3603) we got this error:
"SQL Error (1045): Access denied for user 'ssluser'@'client-hostname' (using password: YES)"
With Heidi nightly build (r3754) we got a error:
"SQL Error (2026): SSL connection error"
What can we do?
PS: fmo Heidi is better than other tools, but I can't use it with SSL...
host
username
password
port 3306
TCP/IP
SSL private key (empty)
SSL CA (path to pem certificate)
SSL certificate (empty)
With Heidi current release (r3603) we got this error:
"SQL Error (1045): Access denied for user 'ssluser'@'client-hostname' (using password: YES)"
With Heidi nightly build (r3754) we got a error:
"SQL Error (2026): SSL connection error"
What can we do?
PS: fmo Heidi is better than other tools, but I can't use it with SSL...

It works now, see my feedback.
Please login to leave a reply, or register at first.