Search Results
https://dev.mysql.com/doc/connectors/en/connecting-using-kerberos.html
Kerberos Authentication Workflow The main usage of Kerberos authentication in MySQL is to allow users to create connections without having to specify a user name and password in the connection string. For that to work, Connector/J must be configured ... Kerberos is a ticket-based server-client mutual authentication protocol that is supported by the MySQL Server (commercial versions ...
https://dev.mysql.com/doc/connector-j/en/connecting-using-kerberos.html
Kerberos Authentication Workflow The main usage of Kerberos authentication in MySQL is to allow users to create connections without having to specify a user name and password in the connection string. For that to work, Connector/J must be configured ... Kerberos is a ticket-based server-client mutual authentication protocol that is supported by the MySQL Server (commercial versions ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-security-mysql-privileges.html
The same thing is true with respect to the CREATE USER and DROP USER statements. As with any other MySQL Server, user and privilege information is stored in the mysql system database. In other words, changes in users and their privileges do not ...
https://dev.mysql.com/doc/refman/8.4/en/mysqlbinlog.html
When you specify this option, mysqlbinlog stops with an error message if it encounters any events that are disallowed under the REQUIRE_ROW_FORMAT restrictions, including LOAD DATA INFILE instructions, creating or dropping temporary tables, INTVAR, ...To execute the internal-use BINLOG statements used by mysqlbinlog, the user requires the BINLOG_ADMIN privilege (or the deprecated SUPER privilege), or the REPLICATION_APPLIER privilege plus the appropriate privileges to execute each log ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-secure-auth.html
MySQL Workbench uses mysql_native_password by default, so for example enabling it is required to create a MySQL Server 8.4 user. This is because MySQL does not store passwords as plain text, so regenerating password hashes requires user intervention. With this option enabled, a user with a password defined in the old format will not be able to login to ...
https://dev.mysql.com/doc/connectors/en/connector-python-connectargs.html
A connection with the MySQL server can be established using either the mysql.connector.connect() function or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...An asterisk (*) following an argument indicates a synonymous argument name, available only for compatibility with other Python MySQL ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
A connection with the MySQL server can be established using either the mysql.connector.connect() function or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...An asterisk (*) following an argument indicates a synonymous argument name, available only for compatibility with other Python MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/set-password.html
If an account is to be permitted to manipulate secondary passwords for all accounts, it should be granted the CREATE USER privilege rather than APPLICATION_PASSWORD_ADMIN. SET PASSWORD [FOR user] auth_option [REPLACE 'current_auth_string'] [RETAIN ...The password may be either explicitly specified in the statement or randomly generated by ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-how-to-import-onnx.html
The following example converts the /Users/user1/iris.onnx file and creates the output file iris_base64.onnx. > \connect --mysql MySQL_username@DB System_private_IP?local-infile=1 Create and use the database to store the table. > \connect --mysql ...
https://dev.mysql.com/doc/connectors/en/connector-j-time-instants.html
Changes the server session time zone to a desired time zone specified by the user, and then converts the timestamps between the JVM time zone and the user-specified time zone. connectionTimeZone={LOCAL|SERVER|user-defined-time-zone}: Specifies how ... Background A time instant is a specific moment on a ...