WithVersion() | "" | Version identifier. |
WithDefaultAuthMethod() | mysql_native_password | Authentication plugin. |
WithSHA2Cache() | DefaultSHA2Cache | caching_sha2_password caching function implement. |
WithLogger() | DefaultLogger | Implement of logger write all messages to. |
WithUseSSL() | false | Whether to open SSL/TLS. Use automatically generated key and certificates if it's true andWithSSLCA() WithSSLCert() WithSSLKey() are not specified. |
WithCertsDir() | "" | At startup, the server automatically generates server-side and client-side SSL/TLS certificate and key files, include CA certificate and key file. Default don't write them to local file system. IfWithCertsDir() not empty, write those files to the directory, otherwise read them instead of generating. |
WithSSLCA() | automatically generate | The path name of the Certificate Authority (CA) certificate file in PEM format. The file contains a list of trusted SSL Certificate Authorities. |
WithSSLCert() | automatically generate | The path name of the server SSL public key certificate file in PEM format. |
WithSSLKey() | automatically generate | The path name of the server SSL private key file in PEM format. |
WithRSAKeysDir() | "" | At startup, the server automatically generates private and public key. Default don't write them to local file system. IfWithRSAKeysDir() not empty, write those files to the directory, otherwise read them instead of generating. The key pair is used bysha256_password whenWithSHA256PasswordPrivateKeyPath() andWithSHA256PasswordPublicKeyPath() are not specified, or used bycaching_sha2_password whenWithCachingSHA2PasswordPrivateKeyPath() andWithCachingSHA2PasswordPublicKeyPath() are not specified. |
WithCachingSHA2PasswordPrivateKeyPath() | automatically generate | Its value is the path name of the RSA private key file for thecaching_sha2_password authentication plugin. |
WithCachingSHA2PasswordPublicKeyPath() | automatically generate | Its value is the path name of the RSA public key file for thecaching_sha2_password authentication plugin. |
WithSHA256PasswordPrivateKeyPath() | automatically generate | Its value is the path name of the RSA private key file for thesha256_password authentication plugin. |
WithSHA256PasswordPublicKeyPath() | automatically generate | Its value is the path name of the RSA public key file for thesha256_password authentication plugin. |