PDF (US Ltr)
- 43.2Mb
PDF (A4)
- 43.3Mb
Man Pages (TGZ)
- 296.3Kb
Man Pages (Zip)
- 401.7Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-replication-failover.html
In the event that the primary Cluster replication process fails, it is possible to switch over to the secondary replication channel. This means that the ndb_apply_status table contains information for the replica on this host as well as for any ...
https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-replication-preparation.html
If the replica is also running NDB Cluster, this can be accomplished using the backup and restore procedure described in Section 25.7.9, “NDB Cluster Backups With NDB Cluster Replication”. Preparing the NDB Cluster for replication consists of ...
https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-security.html
Topics covered in this section include the following: NDB Cluster and network security issues Configuration issues relating to running NDB Cluster securely NDB Cluster and the MySQL privilege system MySQL standard security procedures as applicable ... This section discusses security considerations to take into account when setting up and running NDB ...
https://dev.mysql.com/doc/refman/8.0/en/mysqlcheck.html
(This is also true for the MySQL upgrade procedure if it determines that table checking is needed because it processes tables the same way.) mysqlcheck must be used when the mysqld server is running, which means that you do not have to stop the ...
https://dev.mysql.com/doc/refman/8.0/en/nonpersistible-system-variables.html
SET PERSIST and SET PERSIST_ONLY enable global system variables to be persisted to the mysqld-auto.cnf option file in the data directory (see Section 15.7.6.1, “SET Syntax for Variable Assignment”). However, not all system variables can be ...
https://dev.mysql.com/doc/refman/8.0/en/performance-schema-build-configuration.html
It is possible to exclude certain parts of the Performance Schema instrumentation. For example, to exclude stage and statement instrumentation, do this: $> cmake . \ -DDISABLE_PSI_STAGE=1 \ -DDISABLE_PSI_STATEMENT=1 For more information, see the ...
https://dev.mysql.com/doc/refman/8.0/en/perl-installation.html
For example, to unpack and build a DBI distribution, use a procedure such as this: Unpack the distribution into the current directory: $> gunzip < DBI-VERSION.tar.gz | tar xvf - This command creates a directory named DBI-VERSION. MySQL Perl support ...
https://dev.mysql.com/doc/refman/8.0/en/plugin-loading.html
To uninstall a plugin that currently is loaded at server startup with a plugin-loading option, use this procedure. Server plugins must be loaded into the server before they can be used. It is also possible to control the activation state of loaded ...
https://dev.mysql.com/doc/refman/8.0/en/purge-binary-logs.html
To safely purge binary log files, follow this procedure: On each replica, use SHOW REPLICA STATUS to check which log file it is reading. PURGE { BINARY | MASTER } LOGS { TO 'log_name' | BEFORE datetime_expr } The binary log is a set of files that ...
https://dev.mysql.com/doc/refman/8.0/en/repeat.html
[begin_label:] REPEAT statement_list UNTIL search_condition END REPEAT [end_label] The statement list within a REPEAT statement is repeated until the search_condition expression is true. statement_list consists of one or more statements, each ...