add MDBCI test scripts (#145)
This commit is contained in:
130
maxscale-system-test/mdbci/cnf/galera_server1.cnf
Normal file
130
maxscale-system-test/mdbci/cnf/galera_server1.cnf
Normal file
@ -0,0 +1,130 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=1
|
||||
wsrep_on=ON
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera000
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=1
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
130
maxscale-system-test/mdbci/cnf/galera_server2.cnf
Normal file
130
maxscale-system-test/mdbci/cnf/galera_server2.cnf
Normal file
@ -0,0 +1,130 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=2
|
||||
wsrep_on=ON
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera001
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=1
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
130
maxscale-system-test/mdbci/cnf/galera_server3.cnf
Normal file
130
maxscale-system-test/mdbci/cnf/galera_server3.cnf
Normal file
@ -0,0 +1,130 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=3
|
||||
wsrep_on=ON
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera002
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=1
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
130
maxscale-system-test/mdbci/cnf/galera_server4.cnf
Normal file
130
maxscale-system-test/mdbci/cnf/galera_server4.cnf
Normal file
@ -0,0 +1,130 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=4
|
||||
wsrep_on=ON
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera003
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=1
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server1.cnf
Normal file
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server1.cnf
Normal file
@ -0,0 +1,135 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=1
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera000
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Maximum number of rows in write set
|
||||
wsrep_max_ws_rows=131072
|
||||
|
||||
# Maximum size of write set
|
||||
wsrep_max_ws_size=1073741824
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=0
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server2.cnf
Normal file
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server2.cnf
Normal file
@ -0,0 +1,135 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=2
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera001
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Maximum number of rows in write set
|
||||
wsrep_max_ws_rows=131072
|
||||
|
||||
# Maximum size of write set
|
||||
wsrep_max_ws_size=1073741824
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=0
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server3.cnf
Normal file
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server3.cnf
Normal file
@ -0,0 +1,135 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=3
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera002
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Maximum number of rows in write set
|
||||
wsrep_max_ws_rows=131072
|
||||
|
||||
# Maximum size of write set
|
||||
wsrep_max_ws_size=1073741824
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=0
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server4.cnf
Normal file
135
maxscale-system-test/mdbci/cnf/mysql56/galera_server4.cnf
Normal file
@ -0,0 +1,135 @@
|
||||
[mysqld]
|
||||
expire_logs_days=7
|
||||
user=mysql
|
||||
server_id=4
|
||||
|
||||
# Row binary log format is required by Galera
|
||||
binlog_format=ROW
|
||||
|
||||
log-bin
|
||||
|
||||
# InnoDB is currently the only storage engine supported by Galera
|
||||
default-storage-engine=innodb
|
||||
innodb_file_per_table
|
||||
|
||||
# To avoid issues with 'bulk mode inserts' using autoincrement fields
|
||||
innodb_autoinc_lock_mode=2
|
||||
|
||||
# Required to prevent deadlocks on parallel transaction execution
|
||||
innodb_locks_unsafe_for_binlog=1
|
||||
|
||||
# Query Cache is not supported by Galera wsrep replication
|
||||
query_cache_size=0
|
||||
query_cache_type=0
|
||||
|
||||
# INITIAL SETUP
|
||||
# In some systems bind-address defaults to 127.0.0.1, and with mysqldump SST
|
||||
# it will have (most likely) disastrous consequences on donor node
|
||||
bind-address=###NODE-ADDRESS###
|
||||
|
||||
##
|
||||
## WSREP options
|
||||
##
|
||||
|
||||
# INITIAL SETUP
|
||||
# For the initial setup, wsrep should be disabled
|
||||
wsrep_provider=none
|
||||
# After initial setup, parameter should have full path to wsrep provider library
|
||||
wsrep_provider=###GALERA-LIB-PATH###
|
||||
|
||||
# Provider specific configuration options
|
||||
wsrep_provider_options = "evs.keepalive_period = PT3S; evs.inactive_check_period = PT10S; evs.suspect_timeout = PT30S; evs.inactive_timeout = PT1M; evs.install_timeout = PT1M"
|
||||
|
||||
# Logical cluster name. Should be the same for all nodes in the same cluster.
|
||||
wsrep_cluster_name=skycluster
|
||||
|
||||
# INITIAL SETUP
|
||||
# Group communication system handle: for the first node to be launched, the value should be "gcomm://", indicating creation of a new cluster;
|
||||
# for the other nodes joining the cluster, the value should be "gcomm://xxx.xxx.xxx.xxx:4567", where xxx.xxx.xxx.xxx should be the ip of a node
|
||||
# already on the cluster (usually the first one)
|
||||
# DEPRECATED
|
||||
# wsrep_cluster_address=gcomm://
|
||||
|
||||
# Human-readable node name (non-unique). Hostname by default.
|
||||
#wsrep_node_name=###NODE-NAME###
|
||||
wsrep_node_name=galera003
|
||||
|
||||
# INITIAL SETUP
|
||||
# Base replication <address|hostname>[:port] of the node.
|
||||
# The values supplied will be used as defaults for state transfer receiving,
|
||||
# listening ports and so on. Default: address of the first network interface.
|
||||
wsrep_node_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address for incoming client connections. Autodetect by default.
|
||||
wsrep_node_incoming_address=###NODE-ADDRESS###
|
||||
|
||||
# Number of threads that will process writesets from other nodes
|
||||
wsrep_slave_threads=1
|
||||
|
||||
# Generate fake primary keys for non-PK tables (required for multi-master
|
||||
# and parallel applying operation)
|
||||
wsrep_certify_nonPK=1
|
||||
|
||||
# Maximum number of rows in write set
|
||||
wsrep_max_ws_rows=131072
|
||||
|
||||
# Maximum size of write set
|
||||
wsrep_max_ws_size=1073741824
|
||||
|
||||
# Debug level logging (1 = enabled)
|
||||
wsrep_debug=1
|
||||
|
||||
# Convert locking sessions into transactions
|
||||
wsrep_convert_LOCK_to_trx=0
|
||||
|
||||
# Number of retries for deadlocked autocommits
|
||||
wsrep_retry_autocommit=1
|
||||
|
||||
# Change auto_increment_increment and auto_increment_offset automatically
|
||||
wsrep_auto_increment_control=1
|
||||
|
||||
# Retry autoinc insert, when the insert failed for "duplicate key error"
|
||||
wsrep_drupal_282555_workaround=0
|
||||
|
||||
# Enable "strictly synchronous" semantics for read operations
|
||||
wsrep_causal_reads=0
|
||||
|
||||
# Command to call when node status or cluster membership changes.
|
||||
# Will be passed all or some of the following options:
|
||||
# --status - new status of this node
|
||||
# --uuid - UUID of the cluster
|
||||
# --primary - whether the component is primary or not ("yes"/"no")
|
||||
# --members - comma-separated list of members
|
||||
# --index - index of this node in the list
|
||||
wsrep_notify_cmd=
|
||||
|
||||
##
|
||||
## WSREP State Transfer options
|
||||
##
|
||||
|
||||
# State Snapshot Transfer method
|
||||
#wsrep_sst_method=mysqldump
|
||||
#wsrep_sst_method=xtrabackup
|
||||
wsrep_sst_method=rsync
|
||||
|
||||
# INITIAL SETUP
|
||||
# Address which donor should send State Snapshot to.
|
||||
# Should be the address of the CURRENT node. DON'T SET IT TO DONOR ADDRESS!!!
|
||||
# (SST method dependent. Defaults to the first IP of the first interface)
|
||||
wsrep_sst_receive_address=###NODE-ADDRESS###
|
||||
|
||||
# INITIAL SETUP
|
||||
# SST authentication string. This will be used to send SST to joining nodes.
|
||||
# Depends on SST method. For mysqldump method it is root:<root password>
|
||||
#wsrep_sst_auth=###REP-USERNAME###:###REP-PASSWORD###
|
||||
wsrep_sst_auth=repl:repl
|
||||
|
||||
# Desired SST donor name.
|
||||
#wsrep_sst_donor=
|
||||
|
||||
# Reject client queries when donating SST (false)
|
||||
#wsrep_sst_donor_rejects_queries=0
|
||||
|
||||
# Protocol version to use
|
||||
# wsrep_protocol_version=
|
39
maxscale-system-test/mdbci/cnf/mysql56/server1.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/mysql56/server1.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=1
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
## x001
|
||||
#max_long_data_size=1000000000
|
||||
#innodb_log_file_size=2000000000
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server10.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server10.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=10
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server11.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server11.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=11
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server12.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server12.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=12
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server13.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server13.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=13
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server14.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server14.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=14
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server15.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server15.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=15
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/mysql56/server2.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/mysql56/server2.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=2
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
## x001
|
||||
#max_long_data_size=1000000000
|
||||
#innodb_log_file_size=2000000000
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/mysql56/server3.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/mysql56/server3.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=3
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
## x001
|
||||
#max_long_data_size=1000000000
|
||||
#innodb_log_file_size=2000000000
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/mysql56/server4.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/mysql56/server4.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=4
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
## x001
|
||||
#max_long_data_size=1000000000
|
||||
#innodb_log_file_size=2000000000
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server5.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server5.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=5
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server6.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server6.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=6
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server7.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server7.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=7
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server8.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server8.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=8
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/mysql56/server9.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/mysql56/server9.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
#log-basename=mar
|
||||
log-bin=mar-bin
|
||||
#binlog-format=row
|
||||
binlog-format=STATEMENT
|
||||
server_id=9
|
||||
#slave_parallel_threads=2
|
||||
user=mysql
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/server1.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/server1.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=row
|
||||
binlog_row_image=full
|
||||
server_id=1
|
||||
user=mysql
|
||||
## x001
|
||||
max_long_data_size=1000000000
|
||||
innodb_log_file_size=2000000000
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server10.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server10.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=10
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server11.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server11.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=11
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server12.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server12.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=12
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server13.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server13.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=13
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server14.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server14.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=14
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server15.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server15.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=15
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/server2.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/server2.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=row
|
||||
binlog_row_image=full
|
||||
server_id=2
|
||||
user=mysql
|
||||
## x001
|
||||
max_long_data_size=1000000000
|
||||
innodb_log_file_size=2000000000
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/server3.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/server3.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=row
|
||||
binlog_row_image=full
|
||||
server_id=3
|
||||
user=mysql
|
||||
## x001
|
||||
max_long_data_size=1000000000
|
||||
innodb_log_file_size=2000000000
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
39
maxscale-system-test/mdbci/cnf/server4.cnf
Normal file
39
maxscale-system-test/mdbci/cnf/server4.cnf
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=row
|
||||
binlog_row_image=full
|
||||
server_id=4
|
||||
user=mysql
|
||||
## x001
|
||||
max_long_data_size=1000000000
|
||||
innodb_log_file_size=2000000000
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server5.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server5.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=5
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server6.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server6.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=6
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server7.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server7.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=7
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server8.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server8.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=8
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
36
maxscale-system-test/mdbci/cnf/server9.cnf
Normal file
36
maxscale-system-test/mdbci/cnf/server9.cnf
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
#
|
||||
# These groups are read by MariaDB server.
|
||||
# Use it for options that only the server (but not clients) should see
|
||||
#
|
||||
# See the examples of server my.cnf files in /usr/share/mysql/
|
||||
#
|
||||
|
||||
# this is read by the standalone daemon and embedded servers
|
||||
[server]
|
||||
|
||||
# this is only for the mysqld standalone daemon
|
||||
[mysqld]
|
||||
log-slave-updates
|
||||
log-bin=mar-bin
|
||||
binlog-format=STATEMENT
|
||||
server_id=9
|
||||
user=mysql
|
||||
## x001
|
||||
slave-skip-errors=all
|
||||
|
||||
# this is only for embedded server
|
||||
[embedded]
|
||||
|
||||
# This group is only read by MariaDB-5.5 servers.
|
||||
# If you use the same .cnf file for MariaDB of different versions,
|
||||
# use this group for options that older servers don't understand
|
||||
[mysqld-5.5]
|
||||
|
||||
# These two groups are only read by MariaDB servers, not by MySQL.
|
||||
# If you use the same .cnf file for MySQL and MariaDB,
|
||||
# you can put MariaDB-only options here
|
||||
[mariadb]
|
||||
|
||||
[mariadb-5.5]
|
||||
|
Reference in New Issue
Block a user