Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-recommendations.html
The recommendation use-case is to create a machine learning model based on users giving a rating of 1 to 10 for different items. Recommendation models find patterns in user behavior to recommend products and users based on prior behavior and ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-setup.html
Create a user for whom the server will use the auth_simple plugin for authentication: mysql> CREATE USER 'x'@'localhost' -> IDENTIFIED WITH auth_simple; Use a client program to connect to the server as user x. Invoke the client program each way to ... To compile and install a plugin library file, use the instructions in Section 4.4.3, “Compiling and Installing Plugin ...
https://dev.mysql.com/doc/refman/8.4/en/binary-installation.html
Create a mysql User and Group If your system does not already have a user and group to use for running mysqld, you may need to create them. $> groupadd mysql $> useradd -r -g mysql -s /bin/false mysql Note Because the user is required only for ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-authentication.html
It is possible to connect without giving a password, provided that the user has the required tickets in the Kerberos cache on Linux or the MIT Kerberos cache on Windows (for example, created by kinit or a similar command). LDAP authentication ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-using-a-recommendation-model-similar-items.html
For known items, the output includes a list of predicted items that have similar ratings and are appreciated by similar users. As of MySQL 9.5.0, you have the option to include item and user metadata when generating predictions. For the option to ...
https://dev.mysql.com/doc/refman/8.4/en/replication-gtids-howto.html
If you are starting with new servers, see Section 19.1.2.3, “Creating a User for Replication” for information about adding a specific user for replication connections and Section 19.1.2.1, “Setting the Replication Source Configuration” for ...Most of the steps that follow require the use of the MySQL root account or another MySQL user account that has the SUPER ...
https://dev.mysql.com/doc/refman/8.4/en/sys-schema-object-index.html
The following tables list sys schema objects and provide a short description of each one.
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-start-client.html
--user=username or -u[ ]username The option specifies the user name for connecting to the agent. To connect successfully, the value of the option must match that specified by the mcmd configuration option mcmd-user of the agent you are connecting ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-replication-preparation.html
If the source cluster is already in use, you can create a backup of the source and load this onto the replica to cut down on the amount of time required for the replica to synchronize itself with the source. ndb-connectstring=management_host[:port] ... Preparing the NDB Cluster for replication consists of the following steps: Check all MySQL servers for version compatibility (see Section 25.7.2, “General Requirements for NDB Cluster ...
https://dev.mysql.com/doc/x-devapi-userguide/en/working-with-a-session-object.html
All previous examples used the getSchema() or getDefaultSchema() methods of the Session object, which return a Schema object. Most examples make use of the X DevAPI ability to chain all object constructions, enabling you to get to the Schema object ...