日本語のみで絞り込む
2019/5/15 -I am following this tutorial to set up MySQL replication (I am using Ubuntu). According to the above tutorial, this is the config that I want in my.cnf file.
To configure a source to use binary log file position based replication, you must ensure that binary logging is enabled, and establish a unique server ID.
2015/2/2 -I have replication environment running in a master-slave configuration. The replicant is doing all writes and doing selects only very rarely - ...
2010/8/30 -Enable the read-only option in my.cnf. It can also be specified as a flag on the command line using --read-only with mysqld.
2021/6/2 -On Ubuntu 20.04, the default MySQL server configuration file is named mysqld.cnf and can be found in the /etc/mysql/mysql.conf.d/ directory.
2020/1/18 -First, edit the configuration file in /etc/mysql/mysql.conf.d/mysqld.cnf as follows: server-id = 1 log_bin = /var/log/mysql/mysql-bin.log ...
The first step is to modify my.cnf file with required parameters(/etc/my.cnf in CentOS & /etc/mysql/my.cnf in Ubuntu). bind-address ...
MYSQL_HOME is an environment variable containing the path to the directory in which the server-specific my.cnf file resides. If MYSQL_HOME is not set and you ...
2024/1/16 -This step-by-step guide explains how to set up MySQL master-slave replication, and what the pros and cons of master-slave replication are.
On the slave cluster at the node where the MySQL database is active, add the read-only=true directive to the my.cnf file, and restart your database. For example ...