You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running a MySQL instance with 5.7 version. When trying to connect to it I was getting SSL connection errors (because of TLS stuff, ChatGPT told me) so I had to adjust the config code:
"ssl_disabled": True,
"allow_local_infile": True
Is it possible to add an env var for it, something like MYSQL_DISABLE_SSL?
The text was updated successfully, but these errors were encountered:
The mysql_mcp_server doesn't include SSL internally, so there is no need for a flag to disable it. When required, users can tunnel SSL with a modular tool like PuTTY.
The mysql_mcp_server doesn't include SSL internally, so there is no need for a flag to disable it. When required, users can tunnel SSL with a modular tool like PuTTY.
Without disabling it, I was getting this error: Error executing query: 2026 (HY000): SSL connection error: error:0A000102:SSL routines::unsupported protocol
I am running a MySQL instance with 5.7 version. When trying to connect to it I was getting SSL connection errors (because of TLS stuff, ChatGPT told me) so I had to adjust the config code:
Is it possible to add an env var for it, something like
MYSQL_DISABLE_SSL
?The text was updated successfully, but these errors were encountered: