-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mariadb/mysql: Fix ssl option on autobackup cmdline and deprecated wa…
…rnings (#6537) Fix: error: 2026: "TLS/SSL error: Server certificate validation failed. The certificate's CN name does not match the passed value. Error 0x800B010F(CERT_E_CN_NO_MATCH)" by adding '--ssl-verify-server-cert=false' and updating the modules.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4222,11 +4222,11 @@ function mainStart() { | |
if (sessionRecording == true) { modules.push('[email protected]'); } // Need to get the remote desktop JPEG sizes to index the recodring file. | ||
if (config.letsencrypt != null) { modules.push('[email protected]'); } // Add acme-client module. We need to force v4.2.4 or higher since olver versions using SHA-1 which is no longer supported by Let's Encrypt. | ||
if (config.settings.mqtt != null) { modules.push('[email protected]'); } // Add MQTT Modules | ||
if (config.settings.mysql != null) { modules.push('mysql2@3.6.2'); } // Add MySQL. | ||
if (config.settings.mysql != null) { modules.push('mysql2@3.11.4'); } // Add MySQL. | ||
//if (config.settings.mysql != null) { modules.push('@mysql/xdevapi@8.0.33'); } // Add MySQL, official driver (https://dev.mysql.com/doc/dev/connector-nodejs/8.0/) | ||
if (config.settings.mongodb != null) { modules.push('[email protected]'); modules.push('[email protected]'); } // Add MongoDB, official driver. | ||
if (config.settings.postgres != null) { modules.push('[email protected]') } // Add Postgres, official driver. | ||
if (config.settings.mariadb != null) { modules.push('mariadb@3.2.2'); } // Add MariaDB, official driver. | ||
if (config.settings.mariadb != null) { modules.push('mariadb@3.4.0'); } // Add MariaDB, official driver. | ||
if (config.settings.acebase != null) { modules.push('[email protected]'); } // Add AceBase, official driver. | ||
if (config.settings.sqlite3 != null) { modules.push('[email protected]'); } // Add sqlite3, official driver. | ||
if (config.settings.vault != null) { modules.push('[email protected]'); } // Add official HashiCorp's Vault module. | ||
|