Skip to content

Commit 7dac18e

Browse files
committed
add doc for mysql ssl disable mode
1 parent 03d5f44 commit 7dac18e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ibis-server/docs/development.md

+13
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,16 @@ If you want run tests related to MySQL Server or connect to MySQL through Wren E
9999
- For linux, you can install `libmysqlclient-dev`. By the way, there are some different names for different linux versions. You should take care about it.
100100
- For Mac, you can install `mysql-connector-c`
101101
- For Windows, you can dowanload [the libraries](https://dev.mysql.com/downloads/c-api)
102+
103+
104+
### Connect MySQL without SSL
105+
106+
By default, SSL mode is enabled and uses `caching_sha2_password` authentication, which only supports SSL connections. If you need to disable SSL, you must set SSLMode to DISABLED in your connection configuration to use `mysql_native_password` instead.
107+
108+
```json
109+
{
110+
"connectionInfo": {
111+
"ssl_mode": "DISABLED"
112+
}
113+
}
114+
```

0 commit comments

Comments
 (0)