Search Results
https://dev.mysql.com/doc/workbench/en/wb-mysql-firewall.html
Firewall Rules and Information The Firewall Rules tab lists the active and recorded rules for a given user, the state of each rule, and includes options to add, delete, and save rules. For example, RECORDING rules in MySQL Workbench records the ...
https://dev.mysql.com/doc/internals/en/determining-authentication-method.html
Method used for authentication is tied to the user account and stored in the plugin column of mysql.user table. Client informs about the user account it wants to log into in the Handshake Response Packet. Only then server can look-up the mysql.user ...However, to save some round-trips, server and client start authentication exchange already in the initial handshake using an optimistic guess of the authentication method to be ...
https://dev.mysql.com/doc/mysql-installer/en/mysql-installer-workflow-nonserver-products.html
After configuring MySQL Router, the root account exists in the user table as root@localhost (local) only, instead of root@% (remote). During the initial setup, choose any predetermined setup type, except Server only, to install the latest GA ...
https://dev.mysql.com/doc/mysql-installer/en/server-file-permission-options.html
You have the following options: MySQL Installer can configure the folders and files with full control granted exclusively to the user running the Windows service, if applicable, and to the Administrators group. Have MySQL Installer use a ...
https://dev.mysql.com/doc/ndbapi/en/index.html
Users of older NDB Cluster releases should upgrade to the latest available release of NDB Cluster 8.0, which is the most recent GA release series, or to the NDB Cluster 8.4 LTS series. For help with using MySQL, please visit the MySQL Forums, where ... MySQL NDB Cluster API Developer Guide This is the MySQL NDB Cluster API Developer Guide, which provides information about developing applications using MySQL NDB Cluster as a data ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-20.html
Examples: mysqlx://user:password@host:port/db?compression=DISABLED mysqlx://user:password@host:port/db?compression=PREFERRED mysqlx://user:password@host:port/db?compression=REQUIRED SessionSettings objects permit a SessionOption::COMPRESSION option ... Connection Management Notes Packaging Notes Bugs Fixed Connection Management Notes For connections made using X Plugin, Connector/C++ now provides control over the use of compression to minimize the number of bytes sent over connections to the ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-changelog-13-2-4-0-0.html
It was not possible to monitor a MySQL database target if the user's password included an equals sign (=). Important As of this release, 13.2.4.0.0, MySQL 8 is supported. It is not possible to monitor MySQL 8 with earlier versions of Oracle ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-compliance-security-standard-rules.html
Such a server could access any file on the client host to which the client user has read access. In a Web environment where the clients are connecting from a separate web server, a user could use LOAD DATA LOCAL to read any files that the web server ...Consider whether the filtering of events by account is required, and remove the configuration values for audit_log_exclude_accounts or audit_log_include_accounts if ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-dns-srv.html
Java Code Session mySession = new SessionFactory().getSession("mysqlx+srv://user:password@_mysql._tcp.example.com/db"); Node.js JavaScript Code mysqlx.getSession({ host: '_mysqlx._tcp.example.com', resolveSrv: true }) C# Code var session = ... X ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connection-attributes-xdevapi.html
User-defined attributes are key-value mappings provided by the user or application. connection-attributes=[key1=value1,key2=value2, ...] sends user-defined connection attributes as key-value pairs alongside the client-defined connection attributes.