Search Results
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-system-initialization-variables.html
System Initialization Variables 19.4 System Initialization Variables System initialization variables are global system variables that must be set during DB system initialization. They apply for the life span of the DB system and, once applied, you ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-troubleshooting-query-privatelink.html
Note:The error messages might read differently, as MySQL HeatWave on AWS gets updated. Connect to Private Hostname Application cannot connect, returning MySQL error like Error 2003: Can't connect to MySQL server Validate that your account allows ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-updating-egress-endpoints.html
Use the MySQL HeatWave Console to update the Egress Endpoints of a Egress PrivateLink. Do the following to update, remove, or add Egress Endpoints of a PrivateLink: In the MySQL HeatWave Console, select the Resources tab. Updating Egress Endpoints ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-viewing-backup-details.html
Viewing Backup Details 18.3 Viewing Backup Details To view backup details: In the MySQL HeatWave Console, select the Resources tab. In the list of backups, find the backup you want to view details for and click the name of the backup to open the ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-security.html
This may be required when using external JSSE providers or to specify cipher suites compatible with both MySQL server and used JVM. For 8.0.12 and earlier: Use SSL when communicating with the server, default is "true" when connecting to MySQL ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-session.html
Since Version 3.1.8 characterEncoding Instructs the server to set session system variables 'character_set_client' and 'character_set_connection' to the default character set supported by MySQL for the specified Java character encoding and set ...
https://dev.mysql.com/doc/connector-j/en/connector-j-schema-validation.html
When working with MySQL Server 8.0.19 and later: Schema validation can be configured for a Collection, so that documents in the Collection are validated against a schema before they can be inserted or updated. For more information on JSON schema ...
https://dev.mysql.com/doc/connector-j/en/connector-j-server-authentication.html
Use Java's keytool (typically located in the bin subdirectory of your JDK or JRE installation) to import the server certificates: $> keytool -importcert -alias MySQLCACert -file ca.pem \ -keystore truststore -storepass mypassword Supply the proper ... Server authentication via server certificate verification is enabled when the Connector/J connection property sslMode is set to VERIFY_CA or ...
https://dev.mysql.com/doc/connector-j/en/connector-j-using-mfa.html
This is a sample connection string that uses the three connection properties for passwords: jdbc:mysql://localhost/db?user=johndoe&password1=password&passsword2=password&password3=password The following apply when using the connection properties for ... Multifactor authentication (MFA) is the use of multiple authentication factors during an authentication ...
https://dev.mysql.com/doc/connector-j/en/connector-j-using-pam.html
Java applications using Connector/J can connect to MySQL servers that use the pluggable authentication module (PAM) authentication scheme. For PAM authentication to work, you must have the following: A MySQL server that supports PAM authentication.