Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/9.7/en/server-repository-options.html
For backups:You do not need to specify this option, because its value is retrieved automatically using the database server connection. For backups: You do not need to specify this option, because its value is retrieved automatically using the ...
https://dev.mysql.com/doc/connector-cpp/9.7/en/connector-cpp-installation-source-cpp.html
To install Connector/C++ from source, verify that your system satisfies the requirements outlined in Section 4.1, “Source Installation System Prerequisites”. Configuring Connector/C++ Specifying External Dependencies Building Connector/C++ ...
https://dev.mysql.com/doc/connector-cpp/9.7/en/connector-cpp-introduction.html
MySQL Connector/C++ is a MySQL database connector for C++ applications that connect to MySQL servers. Connector/C++ can be used to access MySQL servers that implement a document store, or in a traditional way using SQL statements. The preferred ...
https://dev.mysql.com/doc/mysql-router/9.7/en/mysql-router-configuration-file-example.html
Here is a basic connection routing example to a MySQL InnoDB Cluster named myCluster. Both classic MySQL protocol and X Protocol are enabled, it uses TCP/IP connections instead of Unix domain sockets, and it was generated using --bootstrap as a ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/admin-api-routing-guidelines-editing.html
The following example adds a route, RG1, to the Routing Guideline, specifying that client connections targeting ports 6446 or 6448 are redirected to the Cluster's Primary instance, using the first-available MySQL Router strategy: rg.add_route("RG1", ...The following topics are described: Adding Routes and Destinations Removing Routes and Destinations Modifying Route and Destination Options Copying a Routing Guideline Renaming a Routing Guideline Adding Routes and Destinations Routes and destinations can be added using the following: RoutingGuideline.add_route(name, match, destinations[, options]) name: the name of the ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/admin-api-routing-guidelines-examples.html
rg.add_route( "rw_traffic", "$.session.targetPort in ($.router.port.rw, $.router.port.rw_split)", ["first-available(Primary_Local, Primary_Remote)"], {"connectionSharingAllowed": True, "enabled": True}); rg.add_route( "ro_traffic", ...This example ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/admin-api-routing-guidelines-visualising.html
Show Detailed Information To view a detailed summary of the Routing Guideline, use the following: rg.show() rg.show() returns the following: The name of the Routing Guideline and the connected topology. The routes, including the match expression and ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/configuring-router-user.html
When MySQL Router connects to a Cluster, ClusterSet, or ReplicaSet, it requires a user account that has the correct privileges. To add a new MySQL Router account named myRouter1 to the InnoDB Cluster referenced by the variable testCluster, issue: ...In previous versions, MySQL Router created internal accounts at each bootstrap of the cluster, which could result in many accounts building up over ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/create-cluster.html
Once you have prepared your instances, use the dba.createCluster() function to create the cluster, using the instance which MySQL Shell is connected to as the seed instance for the cluster. When you issue dba.createCluster(name) MySQL Shell creates ...The seed instance is replicated to the other instances that you add to the cluster, making them replicas of the seed ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/creating-user-accounts-for-admin-api.html
Create the same account, with the same user name and password, in the same way on every server instance that will be part of the deployment, both the instance you connect to create the deployment and the instances that will join after that. The ...