Search Results
https://dev.mysql.com/doc/refman/8.4/en/linux-installation-juju.html
The Juju deployment framework supports easy installation and configuration of MySQL servers.
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-linux.html
A host running an SQL node must have installed on it a MySQL Server binary (mysqld). It is not necessary to install the MySQL Server binary on management node hosts and data node hosts. This section covers installation methods for NDB Cluster on ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-shutdown-restart.html
Any SQL nodes can be terminated using mysqladmin shutdown and other means. To restart the cluster on Unix platforms, run these commands: On the management host (198.51.100.10 in our example setup): $> ndb_mgmd -f /var/lib/mysql-cluster/config.ini On ... To shut down the cluster, enter the following command in a shell on the machine hosting the management node: $> ndb_mgm -e shutdown The -e option here is used to pass a command to the ndb_mgm client from the ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-programs-ndb-print-backup-file.html
--backup-key-from-stdin Command-Line Format --backup-key-from-stdin Allow input of the decryption key from standard input, similar to entering a password after invoking mysql --password with no password supplied. --backup-password-from-stdin ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-programs-ndbxfrm.html
This is similar to entering a password after invoking mysql --password with no password following the option. This is similar to entering a password is entered after invoking mysql --password with no password following the option. The ndbxfrm ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-security.html
This section discusses security considerations to take into account when setting up and running NDB Cluster.
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-single-user-mode.html
Single user mode enables the database administrator to restrict access to the database system to a single API node, such as a MySQL server (SQL node) or an instance of ndb_restore. API nodes—such as MySQL Servers—waiting for a connection (that ...When entering single user mode, connections to all other API nodes are closed gracefully and all running transactions are ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-table-insert.html
mysql-js> db.city.insert("ID", "Name", "CountryCode", "District", "Info").values( None, "Olympia", "USA", "Washington", '{"Population": 5000}') The city table has five columns: ID, Name, CountryCode, District, and Info. mysql-js> ... You can use the ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-table-update.html
mysql-js> db.city.update().set("Name", "Beijing").where("Name = 'Peking'") Use the select() method to verify the change. mysql-js> db.city.select(["ID", "Name", "CountryCode", "District", "Info"]).where("Name = 'Beijing'") ... You can use the ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-table-insert.html
mysql-py> db.city.insert("ID", "Name", "CountryCode", "District", "Info").values( None, "Olympia", "USA", "Washington", '{"Population": 5000}') The city table has five columns: ID, Name, CountryCode, District, and Info. mysql-py> ... You can use the ...