Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1) My my.cnf file configure (This IS file configure ON Node 1, it IS same WITH another nodes ):
- # ALL files IN this package IS subject TO the GPL v2 license
- # More information IS IN the COPYING file IN the top directory OF this package.
- # Copyright (C) 2011 severalnines.com
- [MYSQLD]
- USER=mysql
- basedir=/usr/
- datadir=/var/lib/mysql
- socket=/var/lib/mysql/mysql.sock
- pid-file=mysqld.pid
- port=3306
- log-error=error.log
- #log-output=FILE
- #relay-log=relay-bin
- ### INNODB OPTIONS
- innodb-buffer-pool-SIZE=5949M
- #innodb-buffer-pool-SIZE=3072M
- innodb-additional-mem-pool-SIZE=20M
- innodb-log-buffer-SIZE=16M
- innodb-flush-log-at-trx_commit=0
- innodb-file-per-TABLE=1
- innodb_data_file_path = ibdata1:100M:autoextend
- ## You may want TO tune the below depending ON NUMBER OF cores AND disk sub
- innodb_read_io_threads=4
- innodb_write_io_threads=4
- innodb-doublewrite=1
- innodb_log_file_size=512M
- innodb-log-files-in-GROUP=2
- #innodb-buffer-pool-instances=4
- innodb-thread-concurrency=0
- #innodb-file-format=barracuda
- innodb-flush-method = O_DIRECT
- innodb_locks_unsafe_for_binlog=1
- innodb_autoinc_lock_mode=2
- ## avoid statistics UPDATE WHEN doing e.g SHOW TABLES
- innodb_stats_on_metadata=0
- engine-condition-pushdown=1
- # CHARACTER SET
- #collation-server = utf8_unicode_ci
- #init-CONNECT='SET NAMES utf8'
- #character-set-server = utf8
- # REPLICATION SPECIFIC - GENERAL
- #server-id must be UNIQUE across ALL mysql servers participating IN replication.
- #server-id=SERVERID
- #auto_increment_increment=2
- #auto_increment_offset=SERVERID
- # REPLICATION SPECIFIC - MASTER
- binlog_format=ROW
- #log-bin=binlog
- #log-slave-updates=1
- # OTHER THINGS, BUFFERS ETC
- key_buffer_size = 24M
- tmp_table_size = 64M
- max_heap_table_size = 64M
- max-allowed-packet = 512M
- #sort-buffer-SIZE = 512K
- #read-buffer-SIZE = 256K
- #read-rnd-buffer-SIZE = 512K
- myisam-sort-buffer_size = 8M
- skip-name-resolve
- memlock=0
- sysdate-is-now=1
- max-connections=500
- thread-cache-SIZE=512
- query-cache-TYPE = 0
- query-cache-SIZE = 0
- table-open_cache=1024
- lower-case-table-names=0
- ##
- ## WSREP options
- ##
- # FULL path TO wsrep provider library OR 'none'
- wsrep_provider=/usr/lib64/libgalera_smm.so
- wsrep_node_address=192.168.180.21
- # Provider specific configuration options
- wsrep_provider_options="gcache.size=32768M;gcache.dir=/var/lib/galeracache/"
- # Logical cluster name. Should be the same FOR ALL nodes.
- wsrep_cluster_name="my_wsrep_cluster"
- # GROUP communication system handle
- #wsrep_cluster_address="dummy://"
- wsrep_cluster_address="gcomm://192.168.180.21,192.168.180.22,192.168.180.23"
- # Human-readable node name (non-UNIQUE). Hostname BY DEFAULT.
- #wsrep_node_name=
- # Address FOR incoming client connections. Autodetect BY DEFAULT.
- #wsrep_node_incoming_address=
- # How many threads will process writesets FROM other nodes
- wsrep_slave_threads=1
- # DBUG options FOR wsrep provider
- #wsrep_dbug_option
- # Generate fake PRIMARY KEYS FOR non-PK TABLES (required FOR multi-master
- # AND parallel applying operation)
- wsrep_certify_nonPK=1
- # Location OF the directory WITH DATA files. Needed FOR non-mysqldump
- # state snapshot transfers. Defaults TO mysql_real_data_home.
- #wsrep_data_home_dir=
- # Maximum NUMBER OF ROWS IN WRITE SET
- wsrep_max_ws_rows=131072
- # Maximum SIZE OF WRITE SET
- wsrep_max_ws_size=1073741824
- # TO enable debug level logging, SET this TO 1
- wsrep_debug=0
- # CONVERT locking sessions INTO transactions
- wsrep_convert_LOCK_to_trx=0
- # how many times TO retry deadlocked autocommits
- wsrep_retry_autocommit=1
- # CHANGE auto_increment_increment AND auto_increment_offset automatically
- wsrep_auto_increment_control=1
- # replicate myisam
- wsrep_replicate_myisam=1
- # retry autoinc INSERT, which 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
- # ClusterControl currently DOES NOT support wsrep_sst_method=mysqldump
- wsrep_sst_method=rsync
- # Address ON THIS node TO receive SST at. DON'T SET IT TO DONOR ADDRESS!!!
- # (SST method dependent. Defaults to the first IP of the first interface)
- #wsrep_sst_receive_address=
- # 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=root:password
- # Desired SST donor name.
- #wsrep_sst_donor=
- # Protocol version to use
- # wsrep_protocol_version=
- [MYSQL]
- socket=/var/lib/mysql/mysql.sock
- #default-character-set=utf8
- [client]
- socket=/var/lib/mysql/mysql.sock
- #default-character-set=utf8
- [mysqldump]
- max-allowed-packet = 512M
- #default-character-set=utf8
- [MYSQLD_SAFE]
- pid-file=mysqld.pid
- log-error=error.log
- basedir=/usr/
- datadir=/var/lib/mysql
- ===============================
- 2) My log file: this is log file in status normal. I has removed old log file .
- Log file on Node 1
- 130527 11:31:47 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 11:41:19 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 11:41:19 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.ld8ABhG0oT
- 130527 11:41:50 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 11:41:50 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 11:41:50 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 11:41:50 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 11:41:50 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 11:41:50 [Warning] WSREP: Could not open saved state file for reading: /var/lib/mysql//grastate.dat
- 130527 11:41:50 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 11:41:50 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 11:41:50 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 11:41:50 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 11:41:50 [Note] WSREP: wsrep_sst_grab()
- 130527 11:41:50 [Note] WSREP: Start replication
- 130527 11:41:50 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 11:41:50 [Note] WSREP: protonet asio version 0
- 130527 11:41:50 [Note] WSREP: backend: asio
- 130527 11:41:50 [Note] WSREP: GMCast version 0
- 130527 11:41:50 [Note] WSREP: (a7cf29ad-c6b1-11e2-0800-37db7e26d7e7, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 11:41:50 [Note] WSREP: (a7cf29ad-c6b1-11e2-0800-37db7e26d7e7, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 11:41:50 [Note] WSREP: EVS version 0
- 130527 11:41:50 [Note] WSREP: PC version 0
- 130527 11:41:50 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer ''
- 130527 11:41:50 [Note] WSREP: view(view_id(PRIM,a7cf29ad-c6b1-11e2-0800-37db7e26d7e7,1) memb {
- a7cf29ad-c6b1-11e2-0800-37db7e26d7e7,
- } joined {
- } left {
- } partitioned {
- })
- 130527 11:41:50 [Note] WSREP: gcomm: connected
- 130527 11:41:50 [Note] WSREP: Changing maximum packet size to 64500, resulting msg size: 32636
- 130527 11:41:50 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 11:41:50 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 11:41:50 [Note] WSREP: Waiting for SST to complete.
- 130527 11:41:50 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 11:41:50 [Note] WSREP: Starting new group from scratch: a7d061ad-c6b1-11e2-0800-68c4cfa64c78
- 130527 11:41:50 [Note] WSREP: STATE_EXCHANGE: sent state UUID: a7d07ed1-c6b1-11e2-0800-d12f714b649d
- 130527 11:41:50 [Note] WSREP: STATE EXCHANGE: sent state msg: a7d07ed1-c6b1-11e2-0800-d12f714b649d
- 130527 11:41:50 [Note] WSREP: STATE EXCHANGE: got state msg: a7d07ed1-c6b1-11e2-0800-d12f714b649d from 0 (db-node1.lactalis.pyco.be)
- 130527 11:41:50 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = a7d061ad-c6b1-11e2-0800-68c4cfa64c78
- 130527 11:41:50 [Note] WSREP: Flow-control interval: [16, 16]
- 130527 11:41:50 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 11:41:50 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced with group.
- 130527 11:41:50 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 11:41:50 [Note] WSREP: New cluster view: global state: a7d061ad-c6b1-11e2-0800-68c4cfa64c78:0, view# 1: Primary, number of nodes: 1, my index: 0, protocol version 2
- 130527 11:41:50 [Note] WSREP: SST complete, seqno: 0
- 130527 11:41:50 [Note] Plugin 'FEDERATED' is disabled.
- 130527 11:41:50 InnoDB: The InnoDB memory heap is disabled
- 130527 11:41:50 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 11:41:50 InnoDB: Compressed tables use zlib 1.2.3
- 130527 11:41:50 InnoDB: Using Linux native AIO
- 130527 11:41:50 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 11:41:51 InnoDB: Completed initialization of buffer pool
- 130527 11:41:51 InnoDB: highest supported file format is Barracuda.
- 130527 11:41:52 InnoDB: Waiting for the background threads to start
- 130527 11:41:53 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 11:41:53 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 11:41:53 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 11:41:53 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 11:41:53 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 11:41:53 [Note] Event Scheduler: Loaded 0 events
- 130527 11:41:53 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 11:41:53 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 11:41:53 [Note] WSREP: Assign initial position for certification: 0, protocol version: 2
- 130527 11:41:53 [Note] WSREP: Synchronized with group, ready for connections
- 130527 11:41:53 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 11:42:01 mysqld_safe A mysqld process already exists
- 130527 11:56:02 [Note] WSREP: (a7cf29ad-c6b1-11e2-0800-37db7e26d7e7, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130527 11:56:02 [Note] WSREP: (a7cf29ad-c6b1-11e2-0800-37db7e26d7e7, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 11:56:03 [Note] WSREP: declaring a559fc94-c6b3-11e2-0800-e779ac668b53 stable
- 130527 11:56:03 [Note] WSREP: declaring b9e8e7c8-c4c5-11e2-0800-7c1343d93812 stable
- 130527 11:56:03 [Note] WSREP: view(view_id(PRIM,a559fc94-c6b3-11e2-0800-e779ac668b53,60) memb {
- a559fc94-c6b3-11e2-0800-e779ac668b53,
- a7cf29ad-c6b1-11e2-0800-37db7e26d7e7,
- b9e8e7c8-c4c5-11e2-0800-7c1343d93812,
- } joined {
- } left {
- } partitioned {
- ddf3512f-c6b2-11e2-0800-9f5184a30c7c,
- })
- 130527 11:56:03 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 3
- 130527 11:56:03 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130527 11:56:03 [Note] WSREP: STATE EXCHANGE: sent state msg: a5a708c3-c6b3-11e2-0800-15374c2ce9e2
- 130527 11:56:03 [Note] WSREP: STATE EXCHANGE: got state msg: a5a708c3-c6b3-11e2-0800-15374c2ce9e2 from 0 (db-node2.lactalis.pyco.be)
- 130527 11:56:03 [Note] WSREP: STATE EXCHANGE: got state msg: a5a708c3-c6b3-11e2-0800-15374c2ce9e2 from 2 (db-node3.lactalis.pyco.be)
- 130527 11:56:03 [Note] WSREP: STATE EXCHANGE: got state msg: a5a708c3-c6b3-11e2-0800-15374c2ce9e2 from 1 (db-node1.lactalis.pyco.be)
- 130527 11:56:03 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 1,
- members = 1/3 (joined/total),
- act_id = 1,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = a7d061ad-c6b1-11e2-0800-68c4cfa64c78
- 130527 11:56:03 [Note] WSREP: Flow-control interval: [28, 28]
- 130527 11:56:03 [Note] WSREP: New cluster view: global state: a7d061ad-c6b1-11e2-0800-68c4cfa64c78:1, view# 2: Primary, number of nodes: 3, my index: 1, protocol version 2
- 130527 11:56:03 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 11:56:03 [Note] WSREP: Assign initial position for certification: 1, protocol version: 2
- 130527 11:56:05 [Note] WSREP: Node 0 (db-node2.lactalis.pyco.be) requested state transfer from '*any*'. Selected 1 (db-node1.lactalis.pyco.be)(SYNCED) as donor.
- 130527 11:56:05 [Note] WSREP: Shifting SYNCED -> DONOR/DESYNCED (TO: 1)
- 130527 11:56:05 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 11:56:05 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'a7d061ad-c6b1-11e2-0800-68c4cfa64c78:1''
- 130527 11:56:05 [Note] WSREP: sst_donor_thread signaled WITH 0
- 130527 11:56:05 [Note] WSREP: Flushing TABLES FOR SST...
- 130527 11:56:05 [Note] WSREP: Provider paused at a7d061ad-c6b1-11e2-0800-68c4cfa64c78:1
- 130527 11:56:05 [Note] WSREP: TABLES flushed.
- 130527 12:00:21 [Note] /usr/sbin/mysqld: Normal shutdown
- 130527 12:00:21 [Note] WSREP: Stop replication
- 130527 12:00:21 [Note] WSREP: Closing send monitor...
- 130527 12:00:21 [Note] WSREP: Closed send monitor.
- 130527 12:00:21 [Note] WSREP: gcomm: terminating thread
- 130527 12:00:21 [Note] WSREP: gcomm: joining thread
- 130527 12:00:21 [Note] WSREP: gcomm: closing backend
- 130527 12:00:21 [Note] WSREP: VIEW(view_id(NON_PRIM,a559fc94-c6b3-11e2-0800-e779ac668b53,60) memb {
- a7cf29ad-c6b1-11e2-0800-37db7e26d7e7,
- } joined {
- } LEFT {
- } partitioned {
- a559fc94-c6b3-11e2-0800-e779ac668b53,
- b9e8e7c8-c4c5-11e2-0800-7c1343d93812,
- })
- 130527 12:00:21 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 12:00:21 [Note] WSREP: VIEW((empty))
- 130527 12:00:21 [Note] WSREP: gcomm: closed
- 130527 12:00:21 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 12:00:21 [Note] WSREP: Received NON-PRIMARY.
- 130527 12:00:21 [Note] WSREP: Shifting DONOR/DESYNCED -> OPEN (TO: 1)
- 130527 12:00:21 [Note] WSREP: Received self-leave message.
- 130527 12:00:21 [Note] WSREP: Flow-control INTERVAL: [0, 0]
- 130527 12:00:21 [Note] WSREP: Received SELF-LEAVE. Closing connection.
- 130527 12:00:21 [Note] WSREP: Shifting OPEN -> CLOSED (TO: 1)
- 130527 12:00:21 [Note] WSREP: RECV thread exiting 0: Success
- 130527 12:00:21 [Note] WSREP: recv_thread() joined.
- 130527 12:00:21 [Note] WSREP: Closing slave action queue.
- 130527 12:00:23 [Note] WSREP: killing LOCAL connection: 7
- 130527 12:00:23 [Note] WSREP: killing LOCAL connection: 5
- 130527 12:02:03 mysqld_safe NUMBER OF processes running now: 0
- 130527 12:02:03 mysqld_safe WSREP: NOT restarting wsrep node automatically
- 130527 12:02:03 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:05:20 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:05:20 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.uUmpsjWEqc
- 130527 12:05:55 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:05:55 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:05:55 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:05:55 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:05:55 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:05:55 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 12:05:55 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:05:55 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:05:55 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:05:55 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:05:55 [Note] WSREP: wsrep_sst_grab()
- 130527 12:05:55 [Note] WSREP: START replication
- 130527 12:05:55 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:05:55 [Note] WSREP: protonet asio version 0
- 130527 12:05:55 [Note] WSREP: backend: asio
- 130527 12:05:55 [Note] WSREP: GMCast version 0
- 130527 12:05:55 [Note] WSREP: (05568eb9-c6b5-11e2-0800-3e7e39b554db, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:05:55 [Note] WSREP: (05568eb9-c6b5-11e2-0800-3e7e39b554db, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:05:55 [Note] WSREP: EVS version 0
- 130527 12:05:55 [Note] WSREP: PC version 0
- 130527 12:05:55 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer ''
- 130527 12:05:55 [Note] WSREP: VIEW(view_id(PRIM,05568eb9-c6b5-11e2-0800-3e7e39b554db,1) memb {
- 05568eb9-c6b5-11e2-0800-3e7e39b554db,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:05:55 [Note] WSREP: gcomm: connected
- 130527 12:05:55 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 12:05:55 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 12:05:55 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 12:05:55 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 12:05:55 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 12:05:55 [Note] WSREP: Starting NEW GROUP FROM scratch: 0557585a-c6b5-11e2-0800-7087d4401c64
- 130527 12:05:55 [Note] WSREP: STATE_EXCHANGE: sent state UUID: 055777e4-c6b5-11e2-0800-2845d5db7472
- 130527 12:05:55 [Note] WSREP: STATE EXCHANGE: sent state msg: 055777e4-c6b5-11e2-0800-2845d5db7472
- 130527 12:05:55 [Note] WSREP: STATE EXCHANGE: got state msg: 055777e4-c6b5-11e2-0800-2845d5db7472 FROM 0 (db-node1.lactalis.pyco.be)
- 130527 12:05:55 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 0557585a-c6b5-11e2-0800-7087d4401c64
- 130527 12:05:55 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 12:05:55 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 12:05:55 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 12:05:55 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 12:05:55 [Note] WSREP: NEW cluster VIEW: global state: 0557585a-c6b5-11e2-0800-7087d4401c64:0, VIEW# 1: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 12:05:55 [Note] WSREP: SST complete, seqno: 0
- 130527 12:05:55 [Note] Plugin 'FEDERATED' IS disabled.
- 130527 12:05:55 InnoDB: The InnoDB memory heap IS disabled
- 130527 12:05:55 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins
- 130527 12:05:55 InnoDB: Compressed TABLES USE zlib 1.2.3
- 130527 12:05:55 InnoDB: USING Linux native AIO
- 130527 12:05:55 InnoDB: Initializing buffer pool, SIZE = 5.8G
- 130527 12:05:57 InnoDB: Completed initialization OF buffer pool
- 130527 12:05:57 InnoDB: highest supported file format IS Barracuda.
- 130527 12:05:58 InnoDB: Waiting FOR the background threads TO START
- 130527 12:05:59 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log SEQUENCE NUMBER 1598122
- 130527 12:05:59 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:05:59 [Note] - '0.0.0.0' resolves TO '0.0.0.0';
- 130527 12:05:59 [Note] Server socket created ON IP: '0.0.0.0'.
- 130527 12:05:59 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored IN --skip-name-resolve mode.
- 130527 12:05:59 [Note] Event Scheduler: Loaded 0 events
- 130527 12:05:59 [Note] /usr/sbin/mysqld: ready FOR connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:05:59 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:05:59 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 12:05:59 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 12:05:59 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:06:12 mysqld_safe A mysqld process already EXISTS
- 130527 12:11:35 [Note] /usr/sbin/mysqld: Normal shutdown
- 130527 12:11:35 [Note] WSREP: Stop replication
- 130527 12:11:35 [Note] WSREP: Closing send monitor...
- 130527 12:11:35 [Note] WSREP: Closed send monitor.
- 130527 12:11:35 [Note] WSREP: gcomm: terminating thread
- 130527 12:11:35 [Note] WSREP: gcomm: joining thread
- 130527 12:11:35 [Note] WSREP: gcomm: closing backend
- 130527 12:11:35 [Note] WSREP: VIEW((empty))
- 130527 12:11:35 [Note] WSREP: Received self-leave message.
- 130527 12:11:35 [Note] WSREP: gcomm: closed
- 130527 12:11:35 [Note] WSREP: Flow-control INTERVAL: [0, 0]
- 130527 12:11:35 [Note] WSREP: Received SELF-LEAVE. Closing connection.
- 130527 12:11:35 [Note] WSREP: Shifting SYNCED -> CLOSED (TO: 0)
- 130527 12:11:35 [Note] WSREP: RECV thread exiting 0: Success
- 130527 12:11:35 [Note] WSREP: recv_thread() joined.
- 130527 12:11:35 [Note] WSREP: Closing slave action queue.
- 130527 12:11:35 [Note] WSREP: NEW cluster VIEW: global state: 0557585a-c6b5-11e2-0800-7087d4401c64:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 0, my INDEX: -1, protocol version 2
- 130527 12:11:35 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:11:35 [Note] WSREP: applier thread exiting (code:0)
- 130527 12:11:37 [Note] WSREP: rollbacker thread exiting
- 130527 12:11:37 [Note] Event Scheduler: Purging the queue. 0 events
- 130527 12:11:37 [Note] WSREP: dtor state: CLOSED
- 130527 12:11:37 [Note] WSREP: apply mon: entered 0
- 130527 12:11:37 [Note] WSREP: apply mon: entered 0
- 130527 12:11:37 [Note] WSREP: mon: entered 3 oooe fraction 0 oool fraction 0
- 130527 12:11:37 [Note] WSREP: cert INDEX usage at exit 0
- 130527 12:11:37 [Note] WSREP: cert trx map usage at exit 0
- 130527 12:11:37 [Note] WSREP: deps SET usage at exit 0
- 130527 12:11:37 [Note] WSREP: avg deps dist 0
- 130527 12:11:37 [Note] WSREP: wsdb trx map usage 0 conn query map usage 0
- 130527 12:11:37 [Note] WSREP: Shifting CLOSED -> DESTROYED (TO: 0)
- 130527 12:11:37 [Note] WSREP: Flushing memory map TO disk...
- 130527 12:11:37 InnoDB: Starting shutdown...
- 130527 12:11:41 InnoDB: Shutdown completed; log SEQUENCE NUMBER 1598276
- 130527 12:11:41 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:11:41 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- rsync error: received SIGINT, SIGTERM, OR SIGHUP (code 20) at rsync.c(544) [sender=3.0.6]
- rsync returned code 20:
- 130527 12:12:16 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:12:16 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.0IUl930vl7
- 130527 12:12:26 mysqld_safe WSREP: Recovered POSITION 0557585a-c6b5-11e2-0800-7087d4401c64:0
- 130527 12:12:26 [Note] WSREP: wsrep_start_position var submitted: '0557585a-c6b5-11e2-0800-7087d4401c64:0'
- 130527 12:12:26 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:12:26 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:12:26 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:12:26 [Note] WSREP: Found saved state: 0557585a-c6b5-11e2-0800-7087d4401c64:0
- 130527 12:12:26 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:12:26 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:12:26 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: -1
- 130527 12:12:26 [Note] WSREP: wsrep_sst_grab()
- 130527 12:12:26 [Note] WSREP: START replication
- 130527 12:12:26 [Note] WSREP: Setting initial POSITION TO 0557585a-c6b5-11e2-0800-7087d4401c64:0
- 130527 12:12:26 [Note] WSREP: protonet asio version 0
- 130527 12:12:26 [Note] WSREP: backend: asio
- 130527 12:12:26 [Note] WSREP: GMCast version 0
- 130527 12:12:26 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:12:26 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:12:26 [Note] WSREP: EVS version 0
- 130527 12:12:26 [Note] WSREP: PC version 0
- 130527 12:12:26 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:12:26 [Warning] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:12:26 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:27 [Note] WSREP: declaring b9e8e7c8-c4c5-11e2-0800-7c1343d93812 stable
- 130527 12:12:27 [Note] WSREP: VIEW(view_id(NON_PRIM,b9e8e7c8-c4c5-11e2-0800-7c1343d93812,63) memb {
- b9e8e7c8-c4c5-11e2-0800-7c1343d93812,
- ee74381c-c6b5-11e2-0800-7edfece11bf3,
- } joined {
- } LEFT {
- } partitioned {
- a559fc94-c6b3-11e2-0800-e779ac668b53,
- })
- 130527 12:12:28 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:29 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:31 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:32 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:34 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:35 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:37 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:38 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:40 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:41 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:43 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:44 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:46 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:47 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:49 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:50 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:52 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:53 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:55 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:56 [Note] WSREP: (ee74381c-c6b5-11e2-0800-7edfece11bf3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid ee74381c-c6b5-11e2-0800-7edfece11bf3 IS blacklisted, skipping
- 130527 12:12:57 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:12:57 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:12:57 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:12:57 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:12:57 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:12:57 [ERROR] Aborting
- 130527 12:12:57 [Note] WSREP: Service disconnected.
- 130527 12:12:58 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:12:58 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:12:58 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:17:38 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:17:38 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.KPqWcLR8pw
- 130527 12:18:08 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:18:08 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:18:08 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:18:08 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:18:30 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:18:30 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.D7wawguH4E
- 130527 12:18:40 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:18:40 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:18:40 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:18:40 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:18:40 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:18:40 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 12:18:40 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:18:40 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:18:40 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:18:40 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:18:40 [Note] WSREP: wsrep_sst_grab()
- 130527 12:18:40 [Note] WSREP: START replication
- 130527 12:18:40 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:18:40 [Note] WSREP: protonet asio version 0
- 130527 12:18:40 [Note] WSREP: backend: asio
- 130527 12:18:40 [Note] WSREP: GMCast version 0
- 130527 12:18:40 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:18:40 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:18:40 [Note] WSREP: EVS version 0
- 130527 12:18:40 [Note] WSREP: PC version 0
- 130527 12:18:40 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:18:40 [Warning] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:18:40 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:40 [Note] WSREP: declaring d507ca25-c6b6-11e2-0800-1a0c59bd91f6 stable
- 130527 12:18:40 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:18:40 [Note] WSREP: VIEW(view_id(NON_PRIM,cd2981c0-c6b6-11e2-0800-ea55deacb67a,2) memb {
- cd2981c0-c6b6-11e2-0800-ea55deacb67a,
- d507ca25-c6b6-11e2-0800-1a0c59bd91f6,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:18:41 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:43 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:44 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: (cd2981c0-c6b6-11e2-0800-ea55deacb67a, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid cd2981c0-c6b6-11e2-0800-ea55deacb67a IS blacklisted, skipping
- 130527 12:18:46 [Note] WSREP: declaring d2292a52-c6b6-11e2-0800-6e9d26d6bb92 stable
- 130527 12:18:46 [Note] WSREP: declaring d507ca25-c6b6-11e2-0800-1a0c59bd91f6 stable
- 130527 12:18:46 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:18:46 [Note] WSREP: VIEW(view_id(NON_PRIM,cd2981c0-c6b6-11e2-0800-ea55deacb67a,3) memb {
- cd2981c0-c6b6-11e2-0800-ea55deacb67a,
- d2292a52-c6b6-11e2-0800-6e9d26d6bb92,
- d507ca25-c6b6-11e2-0800-1a0c59bd91f6,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:18:54 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:18:54 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.bvuNVwoNhI
- 130527 12:19:01 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:19:01 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:19:01 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:19:01 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:19:01 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:19:01 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:19:01 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:19:01 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:19:01 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:19:01 [Note] WSREP: wsrep_sst_grab()
- 130527 12:19:01 [Note] WSREP: START replication
- 130527 12:19:01 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:19:01 [Note] WSREP: protonet asio version 0
- 130527 12:19:01 [Note] WSREP: backend: asio
- 130527 12:19:01 [Note] WSREP: GMCast version 0
- 130527 12:19:01 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:19:01 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:19:01 [Note] WSREP: EVS version 0
- 130527 12:19:01 [Note] WSREP: PC version 0
- 130527 12:19:01 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:19:01 [Warning] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:19:01 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:01 [Note] WSREP: declaring d2292a52-c6b6-11e2-0800-6e9d26d6bb92 stable
- 130527 12:19:01 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:19:01 [Note] WSREP: VIEW(view_id(NON_PRIM,d2292a52-c6b6-11e2-0800-6e9d26d6bb92,6) memb {
- d2292a52-c6b6-11e2-0800-6e9d26d6bb92,
- d9c66726-c6b6-11e2-0800-03a1c0dbd5fa,
- } joined {
- } LEFT {
- } partitioned {
- cd2981c0-c6b6-11e2-0800-ea55deacb67a,
- d507ca25-c6b6-11e2-0800-1a0c59bd91f6,
- })
- 130527 12:19:02 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:03 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:05 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:06 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:07 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:09 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:10 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:12 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:13 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:15 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:16 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid d9c66726-c6b6-11e2-0800-03a1c0dbd5fa IS blacklisted, skipping
- 130527 12:19:17 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 12:19:18 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:19:18 [Note] WSREP: VIEW(view_id(NON_PRIM,d9c66726-c6b6-11e2-0800-03a1c0dbd5fa,7) memb {
- d9c66726-c6b6-11e2-0800-03a1c0dbd5fa,
- } joined {
- } LEFT {
- } partitioned {
- cd2981c0-c6b6-11e2-0800-ea55deacb67a,
- d2292a52-c6b6-11e2-0800-6e9d26d6bb92,
- d507ca25-c6b6-11e2-0800-1a0c59bd91f6,
- })
- 130527 12:19:18 [Note] WSREP: (d9c66726-c6b6-11e2-0800-03a1c0dbd5fa, 'tcp://0.0.0.0:4567') reconnecting TO d2292a52-c6b6-11e2-0800-6e9d26d6bb92 (tcp://192.168.180.22:4567), attempt 0
- 130527 12:19:31 [Note] WSREP: VIEW((empty))
- 130527 12:19:31 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:19:31 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:19:31 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:19:31 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:19:31 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:19:31 [ERROR] Aborting
- 130527 12:19:31 [Note] WSREP: Service disconnected.
- 130527 12:19:32 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:19:32 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:19:32 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:20:19 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:20:19 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.6yFZ9rqRBh
- 130527 12:20:27 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:20:27 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:20:27 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:20:27 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:20:27 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:20:27 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:20:27 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:20:27 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:20:27 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:20:27 [Note] WSREP: wsrep_sst_grab()
- 130527 12:20:27 [Note] WSREP: START replication
- 130527 12:20:27 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:20:27 [Note] WSREP: protonet asio version 0
- 130527 12:20:27 [Note] WSREP: backend: asio
- 130527 12:20:27 [Note] WSREP: GMCast version 0
- 130527 12:20:27 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:20:27 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:20:27 [Note] WSREP: EVS version 0
- 130527 12:20:27 [Note] WSREP: PC version 0
- 130527 12:20:27 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:20:27 [Warning] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:20:27 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:27 [Note] WSREP: declaring 04b27bd1-c6b7-11e2-0800-29897ef02881 stable
- 130527 12:20:27 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:20:27 [Note] WSREP: VIEW(view_id(NON_PRIM,04b27bd1-c6b7-11e2-0800-29897ef02881,3) memb {
- 04b27bd1-c6b7-11e2-0800-29897ef02881,
- 0cf92708-c6b7-11e2-0800-997e77cfeca9,
- } joined {
- } LEFT {
- } partitioned {
- 09b1e8cf-c6b7-11e2-0800-b100643ce07c,
- })
- 130527 12:20:28 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:30 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:31 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:33 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:34 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:36 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:37 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:39 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:40 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 0cf92708-c6b7-11e2-0800-997e77cfeca9 IS blacklisted, skipping
- 130527 12:20:41 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 12:20:42 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:20:42 [Note] WSREP: VIEW(view_id(NON_PRIM,0cf92708-c6b7-11e2-0800-997e77cfeca9,4) memb {
- 0cf92708-c6b7-11e2-0800-997e77cfeca9,
- } joined {
- } LEFT {
- } partitioned {
- 04b27bd1-c6b7-11e2-0800-29897ef02881,
- 09b1e8cf-c6b7-11e2-0800-b100643ce07c,
- })
- 130527 12:20:42 [Note] WSREP: (0cf92708-c6b7-11e2-0800-997e77cfeca9, 'tcp://0.0.0.0:4567') reconnecting TO 04b27bd1-c6b7-11e2-0800-29897ef02881 (tcp://192.168.180.22:4567), attempt 0
- 130527 12:20:42 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:21:44 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:21:44 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.lroSUp8Hsz
- 130527 12:22:05 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:22:05 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:22:06 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:22:06 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:22:06 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:22:06 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 12:22:06 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:22:06 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:22:06 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:22:06 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:22:06 [Note] WSREP: wsrep_sst_grab()
- 130527 12:22:06 [Note] WSREP: START replication
- 130527 12:22:06 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:22:06 [Note] WSREP: protonet asio version 0
- 130527 12:22:06 [Note] WSREP: backend: asio
- 130527 12:22:06 [Note] WSREP: GMCast version 0
- 130527 12:22:06 [Note] WSREP: (47cc6bf7-c6b7-11e2-0800-31baa68469e2, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:22:06 [Note] WSREP: (47cc6bf7-c6b7-11e2-0800-31baa68469e2, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:22:06 [Note] WSREP: EVS version 0
- 130527 12:22:06 [Note] WSREP: PC version 0
- 130527 12:22:06 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:22:06 [Warning] WSREP: (47cc6bf7-c6b7-11e2-0800-31baa68469e2, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:22:06 [Note] WSREP: (47cc6bf7-c6b7-11e2-0800-31baa68469e2, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 47cc6bf7-c6b7-11e2-0800-31baa68469e2 IS blacklisted, skipping
- 130527 12:22:06 [Note] WSREP: declaring 37b30dd6-c6b7-11e2-0800-14a6c2e783ab stable
- 130527 12:22:06 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:22:06 [Note] WSREP: VIEW(view_id(NON_PRIM,37b30dd6-c6b7-11e2-0800-14a6c2e783ab,4) memb {
- 37b30dd6-c6b7-11e2-0800-14a6c2e783ab,
- 47cc6bf7-c6b7-11e2-0800-31baa68469e2,
- } joined {
- } LEFT {
- } partitioned {
- 3d0d6fed-c6b7-11e2-0800-ac6ae945e4c6,
- })
- 130527 12:22:07 [Note] WSREP: (47cc6bf7-c6b7-11e2-0800-31baa68469e2, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 12:22:08 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:22:08 [Note] WSREP: VIEW(view_id(NON_PRIM,47cc6bf7-c6b7-11e2-0800-31baa68469e2,5) memb {
- 47cc6bf7-c6b7-11e2-0800-31baa68469e2,
- } joined {
- } LEFT {
- } partitioned {
- 37b30dd6-c6b7-11e2-0800-14a6c2e783ab,
- 3d0d6fed-c6b7-11e2-0800-ac6ae945e4c6,
- })
- 130527 12:22:08 [Note] WSREP: (47cc6bf7-c6b7-11e2-0800-31baa68469e2, 'tcp://0.0.0.0:4567') reconnecting TO 37b30dd6-c6b7-11e2-0800-14a6c2e783ab (tcp://192.168.180.22:4567), attempt 0
- 130527 12:22:36 [Note] WSREP: VIEW((empty))
- 130527 12:22:36 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:22:36 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:22:36 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:22:36 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:22:36 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:22:36 [ERROR] Aborting
- 130527 12:22:36 [Note] WSREP: Service disconnected.
- 130527 12:22:37 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:22:37 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:22:37 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:23:23 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:23:23 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.0w8LMVEFle
- 130527 12:23:40 mysqld_safe A mysqld process already EXISTS
- 130527 12:23:45 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:23:45 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:23:45 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:23:45 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:23:45 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:23:45 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:23:45 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:23:45 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:23:45 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:23:45 [Note] WSREP: wsrep_sst_grab()
- 130527 12:23:45 [Note] WSREP: START replication
- 130527 12:23:45 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:23:45 [Note] WSREP: protonet asio version 0
- 130527 12:23:45 [Note] WSREP: backend: asio
- 130527 12:23:45 [Note] WSREP: GMCast version 0
- 130527 12:23:45 [Note] WSREP: (82db4163-c6b7-11e2-0800-17e51f9bd841, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:23:45 [Note] WSREP: (82db4163-c6b7-11e2-0800-17e51f9bd841, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:23:45 [Note] WSREP: EVS version 0
- 130527 12:23:45 [Note] WSREP: PC version 0
- 130527 12:23:45 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:23:45 [Warning] WSREP: (82db4163-c6b7-11e2-0800-17e51f9bd841, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:23:45 [Note] WSREP: (82db4163-c6b7-11e2-0800-17e51f9bd841, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 82db4163-c6b7-11e2-0800-17e51f9bd841 IS blacklisted, skipping
- 130527 12:23:45 [Note] WSREP: declaring 72c10591-c6b7-11e2-0800-9025b750956f stable
- 130527 12:23:45 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:23:45 [Note] WSREP: VIEW(view_id(NON_PRIM,72c10591-c6b7-11e2-0800-9025b750956f,4) memb {
- 72c10591-c6b7-11e2-0800-9025b750956f,
- 82db4163-c6b7-11e2-0800-17e51f9bd841,
- } joined {
- } LEFT {
- } partitioned {
- 782efeaf-c6b7-11e2-0800-3f485eeaca49,
- })
- 130527 12:23:46 [Note] WSREP: (82db4163-c6b7-11e2-0800-17e51f9bd841, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 12:23:46 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:23:46 [Note] WSREP: VIEW(view_id(NON_PRIM,82db4163-c6b7-11e2-0800-17e51f9bd841,5) memb {
- 82db4163-c6b7-11e2-0800-17e51f9bd841,
- } joined {
- } LEFT {
- } partitioned {
- 72c10591-c6b7-11e2-0800-9025b750956f,
- 782efeaf-c6b7-11e2-0800-3f485eeaca49,
- })
- 130527 12:23:46 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130527 12:23:47 [Note] WSREP: (82db4163-c6b7-11e2-0800-17e51f9bd841, 'tcp://0.0.0.0:4567') reconnecting TO 72c10591-c6b7-11e2-0800-9025b750956f (tcp://192.168.180.22:4567), attempt 0
- 130527 12:24:16 [Note] WSREP: VIEW((empty))
- 130527 12:24:16 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:24:16 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:24:16 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:24:16 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:24:16 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:24:16 [ERROR] Aborting
- 130527 12:24:16 [Note] WSREP: Service disconnected.
- 130527 12:24:17 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:24:17 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:24:17 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:25:17 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:25:17 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.vi1skMyk1P
- 130527 12:25:24 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:25:24 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:25:24 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:25:24 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:25:24 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:25:24 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:25:24 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:25:24 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:25:24 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:25:24 [Note] WSREP: wsrep_sst_grab()
- 130527 12:25:24 [Note] WSREP: START replication
- 130527 12:25:24 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:25:24 [Note] WSREP: protonet asio version 0
- 130527 12:25:24 [Note] WSREP: backend: asio
- 130527 12:25:24 [Note] WSREP: GMCast version 0
- 130527 12:25:24 [Note] WSREP: (be16305d-c6b7-11e2-0800-ac099a53d30d, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:25:24 [Note] WSREP: (be16305d-c6b7-11e2-0800-ac099a53d30d, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:25:24 [Note] WSREP: EVS version 0
- 130527 12:25:24 [Note] WSREP: PC version 0
- 130527 12:25:24 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:25:24 [Warning] WSREP: (be16305d-c6b7-11e2-0800-ac099a53d30d, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:25:27 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:25:27 [Note] WSREP: VIEW(view_id(NON_PRIM,be16305d-c6b7-11e2-0800-ac099a53d30d,1) memb {
- be16305d-c6b7-11e2-0800-ac099a53d30d,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:25:28 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130527 12:25:57 [Note] WSREP: VIEW((empty))
- 130527 12:25:57 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:25:57 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:25:57 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:25:57 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:25:57 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:25:57 [ERROR] Aborting
- 130527 12:25:57 [Note] WSREP: Service disconnected.
- 130527 12:25:58 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:25:58 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:25:58 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:26:27 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:26:27 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.cn1t8bHTrl
- 130527 12:26:35 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:26:35 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:26:35 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:26:35 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:26:35 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:26:35 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:26:35 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:26:35 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:26:35 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:26:35 [Note] WSREP: wsrep_sst_grab()
- 130527 12:26:35 [Note] WSREP: START replication
- 130527 12:26:35 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:26:35 [Note] WSREP: protonet asio version 0
- 130527 12:26:35 [Note] WSREP: backend: asio
- 130527 12:26:35 [Note] WSREP: GMCast version 0
- 130527 12:26:35 [Note] WSREP: (e82c05f9-c6b7-11e2-0800-0266a6524177, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:26:35 [Note] WSREP: (e82c05f9-c6b7-11e2-0800-0266a6524177, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:26:35 [Note] WSREP: EVS version 0
- 130527 12:26:35 [Note] WSREP: PC version 0
- 130527 12:26:35 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer ''
- 130527 12:26:35 [Note] WSREP: VIEW(view_id(PRIM,e82c05f9-c6b7-11e2-0800-0266a6524177,1) memb {
- e82c05f9-c6b7-11e2-0800-0266a6524177,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:26:35 [Note] WSREP: gcomm: connected
- 130527 12:26:35 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 12:26:35 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 12:26:35 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 12:26:35 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 12:26:35 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 12:26:35 [Note] WSREP: Starting NEW GROUP FROM scratch: e82cc47c-c6b7-11e2-0800-c113d1f40944
- 130527 12:26:35 [Note] WSREP: STATE_EXCHANGE: sent state UUID: e82ce348-c6b7-11e2-0800-357d5c3522f4
- 130527 12:26:35 [Note] WSREP: STATE EXCHANGE: sent state msg: e82ce348-c6b7-11e2-0800-357d5c3522f4
- 130527 12:26:35 [Note] WSREP: STATE EXCHANGE: got state msg: e82ce348-c6b7-11e2-0800-357d5c3522f4 FROM 0 (db-node1.lactalis.pyco.be)
- 130527 12:26:35 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = e82cc47c-c6b7-11e2-0800-c113d1f40944
- 130527 12:26:35 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 12:26:35 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 12:26:35 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 12:26:35 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 12:26:35 [Note] WSREP: NEW cluster VIEW: global state: e82cc47c-c6b7-11e2-0800-c113d1f40944:0, VIEW# 1: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 12:26:35 [Note] WSREP: SST complete, seqno: 0
- 130527 12:26:35 [Note] Plugin 'FEDERATED' IS disabled.
- 130527 12:26:35 InnoDB: The InnoDB memory heap IS disabled
- 130527 12:26:35 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins
- 130527 12:26:35 InnoDB: Compressed TABLES USE zlib 1.2.3
- 130527 12:26:35 InnoDB: USING Linux native AIO
- 130527 12:26:35 InnoDB: Initializing buffer pool, SIZE = 5.8G
- 130527 12:26:35 InnoDB: Completed initialization OF buffer pool
- 130527 12:26:35 InnoDB: highest supported file format IS Barracuda.
- 130527 12:26:35 [Note] WSREP: (e82c05f9-c6b7-11e2-0800-0266a6524177, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 12:26:35 [Note] WSREP: (e82c05f9-c6b7-11e2-0800-0266a6524177, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 12:26:36 [Note] WSREP: declaring e88933f0-c6b7-11e2-0800-ea45fd8ac1b6 stable
- 130527 12:26:36 [Note] WSREP: declaring edcf6280-c6b7-11e2-0800-026efed3cc96 stable
- 130527 12:26:36 InnoDB: Waiting FOR the background threads TO START
- 130527 12:26:37 [Note] WSREP: VIEW(view_id(PRIM,e82c05f9-c6b7-11e2-0800-0266a6524177,3) memb {
- e82c05f9-c6b7-11e2-0800-0266a6524177,
- e88933f0-c6b7-11e2-0800-ea45fd8ac1b6,
- edcf6280-c6b7-11e2-0800-026efed3cc96,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:26:37 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 3
- 130527 12:26:37 [Note] WSREP: STATE_EXCHANGE: sent state UUID: e95e81a3-c6b7-11e2-0800-781be1eda95f
- 130527 12:26:37 [Note] WSREP: STATE EXCHANGE: sent state msg: e95e81a3-c6b7-11e2-0800-781be1eda95f
- 130527 12:26:37 [Note] WSREP: STATE EXCHANGE: got state msg: e95e81a3-c6b7-11e2-0800-781be1eda95f FROM 0 (db-node1.lactalis.pyco.be)
- 130527 12:26:37 [Note] WSREP: STATE EXCHANGE: got state msg: e95e81a3-c6b7-11e2-0800-781be1eda95f FROM 1 (db-node2.lactalis.pyco.be)
- 130527 12:26:37 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log SEQUENCE NUMBER 1598122
- 130527 12:26:37 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:26:37 [Note] - '0.0.0.0' resolves TO '0.0.0.0';
- 130527 12:26:37 [Note] Server socket created ON IP: '0.0.0.0'.
- 130527 12:26:37 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored IN --skip-name-resolve mode.
- 130527 12:26:37 [Note] Event Scheduler: Loaded 0 events
- 130527 12:26:37 [Note] /usr/sbin/mysqld: ready FOR connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:26:37 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:26:37 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 12:26:37 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 12:26:37 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:26:37 [Note] WSREP: STATE EXCHANGE: got state msg: e95e81a3-c6b7-11e2-0800-781be1eda95f FROM 2 (db-node3.lactalis.pyco.be)
- 130527 12:26:37 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 1,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = e82cc47c-c6b7-11e2-0800-c113d1f40944
- 130527 12:26:37 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 12:26:37 [Note] WSREP: NEW cluster VIEW: global state: e82cc47c-c6b7-11e2-0800-c113d1f40944:0, VIEW# 2: PRIMARY, NUMBER OF nodes: 3, my INDEX: 0, protocol version 2
- 130527 12:26:37 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:26:37 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 12:26:41 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:26:41 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.nSLi9eK2qT
- 130527 12:26:48 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:26:48 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:26:48 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:26:48 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:26:48 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:26:48 [Note] WSREP: Found saved state: e82cc47c-c6b7-11e2-0800-c113d1f40944:-1
- 130527 12:26:48 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:26:48 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:26:48 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:26:48 [Note] WSREP: wsrep_sst_grab()
- 130527 12:26:48 [Note] WSREP: START replication
- 130527 12:26:48 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:26:48 [Note] WSREP: protonet asio version 0
- 130527 12:26:48 [Note] WSREP: backend: asio
- 130527 12:26:48 [Note] WSREP: GMCast version 0
- 130527 12:26:48 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:26:48 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:26:48 [Note] WSREP: EVS version 0
- 130527 12:26:48 [Note] WSREP: PC version 0
- 130527 12:26:48 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:26:48 [Warning] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:26:48 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid f02abe5f-c6b7-11e2-0800-e30628ffab67 IS blacklisted, skipping
- 130527 12:26:48 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid f02abe5f-c6b7-11e2-0800-e30628ffab67 IS blacklisted, skipping
- 130527 12:26:48 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid f02abe5f-c6b7-11e2-0800-e30628ffab67 IS blacklisted, skipping
- 130527 12:26:48 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid f02abe5f-c6b7-11e2-0800-e30628ffab67 IS blacklisted, skipping
- 130527 12:26:49 [Note] WSREP: declaring e88933f0-c6b7-11e2-0800-ea45fd8ac1b6 stable
- 130527 12:26:49 [Note] WSREP: declaring edcf6280-c6b7-11e2-0800-026efed3cc96 stable
- 130527 12:26:49 [Note] WSREP: VIEW(view_id(PRIM,e88933f0-c6b7-11e2-0800-ea45fd8ac1b6,5) memb {
- e88933f0-c6b7-11e2-0800-ea45fd8ac1b6,
- edcf6280-c6b7-11e2-0800-026efed3cc96,
- f02abe5f-c6b7-11e2-0800-e30628ffab67,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:26:49 [Note] WSREP: gcomm: connected
- 130527 12:26:49 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 12:26:49 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 12:26:49 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 12:26:49 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 12:26:49 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 12:26:49 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 12:26:49 [Note] WSREP: STATE EXCHANGE: sent state msg: f202491b-c6b7-11e2-0800-a1169afa7675
- 130527 12:26:49 [Note] WSREP: STATE EXCHANGE: got state msg: f202491b-c6b7-11e2-0800-a1169afa7675 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 12:26:49 [Note] WSREP: STATE EXCHANGE: got state msg: f202491b-c6b7-11e2-0800-a1169afa7675 FROM 1 (db-node3.lactalis.pyco.be)
- 130527 12:26:49 [Note] WSREP: STATE EXCHANGE: got state msg: f202491b-c6b7-11e2-0800-a1169afa7675 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 12:26:49 [Warning] WSREP: Quorum: No node WITH complete state:
- Version : 2
- Flags : 1
- Protocols : 0 / 4 / 2
- State : NON-PRIMARY
- Prim state : JOINER
- Prim UUID : e95e81a3-c6b7-11e2-0800-781be1eda95f
- Prim seqno : 2
- LAST seqno : 0
- Prim JOINED : 1
- State UUID : f202491b-c6b7-11e2-0800-a1169afa7675
- GROUP UUID : e82cc47c-c6b7-11e2-0800-c113d1f40944
- Name : 'db-node2.lactalis.pyco.be'
- Incoming addr: '192.168.180.22:3306'
- Version : 2
- Flags : 0
- Protocols : 0 / 4 / 2
- State : NON-PRIMARY
- Prim state : PRIMARY
- Prim UUID : e95e81a3-c6b7-11e2-0800-781be1eda95f
- Prim seqno : 2
- LAST seqno : 0
- Prim JOINED : 1
- State UUID : f202491b-c6b7-11e2-0800-a1169afa7675
- GROUP UUID : e82cc47c-c6b7-11e2-0800-c113d1f40944
- Name : 'db-node3.lactalis.pyco.be'
- Incoming addr: '192.168.180.23:3306'
- Version : 2
- Flags : 0
- Protocols : 0 / 4 / 2
- State : NON-PRIMARY
- Prim state : NON-PRIMARY
- Prim UUID : 00000000-0000-0000-0000-000000000000
- Prim seqno : -1
- LAST seqno : -1
- Prim JOINED : 0
- State UUID : f202491b-c6b7-11e2-0800-a1169afa7675
- GROUP UUID : 00000000-0000-0000-0000-000000000000
- Name : 'db-node1.lactalis.pyco.be'
- Incoming addr: '192.168.180.21:3306'
- 130527 12:26:49 [Warning] WSREP: No re-merged PRIMARY component found.
- 130527 12:26:49 [Warning] WSREP: No bootstrapped PRIMARY component found.
- 130527 12:26:49 [ERROR] WSREP: gcs/src/gcs_state_msg.c:gcs_state_msg_get_quorum():729: Failed TO establish quorum.
- 130527 12:26:49 [Note] WSREP: Quorum results:
- version = 2,
- component = NON-PRIMARY,
- conf_id = -1,
- members = 0/3 (joined/total),
- act_id = -1,
- last_appl. = -1,
- protocols = -1/-1/-1 (gcs/repl/appl),
- GROUP UUID = 00000000-0000-0000-0000-000000000000
- 130527 12:26:49 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 12:26:49 [Note] WSREP: Received NON-PRIMARY.
- 130527 12:26:49 [Note] WSREP: NEW cluster VIEW: global state: :-1, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version -1
- 130527 12:26:49 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 12:27:26 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid f02abe5f-c6b7-11e2-0800-e30628ffab67 IS blacklisted, skipping
- 130527 12:27:26 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid f02abe5f-c6b7-11e2-0800-e30628ffab67 IS blacklisted, skipping
- 130527 12:27:26 [Note] WSREP: (f02abe5f-c6b7-11e2-0800-e30628ffab67, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:28:01 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:28:01 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.9AM1W5Jzm3
- 130527 12:28:08 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:28:08 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:28:08 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:28:08 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:28:08 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:28:08 [Note] WSREP: Found saved state: e82cc47c-c6b7-11e2-0800-c113d1f40944:-1
- 130527 12:28:08 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:28:08 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:28:08 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:28:08 [Note] WSREP: wsrep_sst_grab()
- 130527 12:28:08 [Note] WSREP: START replication
- 130527 12:28:08 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:28:08 [Note] WSREP: protonet asio version 0
- 130527 12:28:08 [Note] WSREP: backend: asio
- 130527 12:28:08 [Note] WSREP: GMCast version 0
- 130527 12:28:08 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:28:08 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:28:08 [Note] WSREP: EVS version 0
- 130527 12:28:08 [Note] WSREP: PC version 0
- 130527 12:28:08 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:28:08 [Warning] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:28:08 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:08 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:08 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:08 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:09 [Note] WSREP: declaring 1834df8b-c6b8-11e2-0800-75bf584dc1fd stable
- 130527 12:28:09 [Note] WSREP: declaring 1d94f743-c6b8-11e2-0800-1f28a6cd397e stable
- 130527 12:28:09 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:28:09 [Note] WSREP: VIEW(view_id(NON_PRIM,1834df8b-c6b8-11e2-0800-75bf584dc1fd,3) memb {
- 1834df8b-c6b8-11e2-0800-75bf584dc1fd,
- 1d94f743-c6b8-11e2-0800-1f28a6cd397e,
- 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:28:10 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:10 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:10 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:28:10 [Note] WSREP: declaring 1834df8b-c6b8-11e2-0800-75bf584dc1fd stable
- 130527 12:28:10 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:28:10 [Note] WSREP: VIEW(view_id(NON_PRIM,1834df8b-c6b8-11e2-0800-75bf584dc1fd,4) memb {
- 1834df8b-c6b8-11e2-0800-75bf584dc1fd,
- 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1,
- } joined {
- } LEFT {
- } partitioned {
- 1d94f743-c6b8-11e2-0800-1f28a6cd397e,
- })
- 130527 12:28:11 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') reconnecting TO 1d94f743-c6b8-11e2-0800-1f28a6cd397e (tcp://192.168.180.23:4567), attempt 0
- 130527 12:28:11 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:13 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:14 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:16 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:17 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:19 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:20 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:22 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:23 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1 IS blacklisted, skipping
- 130527 12:28:24 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:28:24 [Note] WSREP: VIEW(view_id(NON_PRIM,1fe16f9a-c6b8-11e2-0800-14e4fb9481d1,5) memb {
- 1fe16f9a-c6b8-11e2-0800-14e4fb9481d1,
- } joined {
- } LEFT {
- } partitioned {
- 1834df8b-c6b8-11e2-0800-75bf584dc1fd,
- 1d94f743-c6b8-11e2-0800-1f28a6cd397e,
- })
- 130527 12:28:25 [Note] WSREP: (1fe16f9a-c6b8-11e2-0800-14e4fb9481d1, 'tcp://0.0.0.0:4567') reconnecting TO 1834df8b-c6b8-11e2-0800-75bf584dc1fd (tcp://192.168.180.22:4567), attempt 0
- 130527 12:28:39 [Note] WSREP: VIEW((empty))
- 130527 12:28:39 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:28:39 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:28:39 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:28:39 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:28:39 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:28:39 [ERROR] Aborting
- 130527 12:28:39 [Note] WSREP: Service disconnected.
- 130527 12:28:40 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:28:40 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:28:40 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:29:25 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:29:25 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.uj9SpRZalP
- 130527 12:29:32 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:29:32 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:29:32 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:29:32 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:29:32 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:29:32 [Note] WSREP: Found saved state: e82cc47c-c6b7-11e2-0800-c113d1f40944:-1
- 130527 12:29:32 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:29:32 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:29:32 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:29:32 [Note] WSREP: wsrep_sst_grab()
- 130527 12:29:32 [Note] WSREP: START replication
- 130527 12:29:32 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:29:32 [Note] WSREP: protonet asio version 0
- 130527 12:29:32 [Note] WSREP: backend: asio
- 130527 12:29:32 [Note] WSREP: GMCast version 0
- 130527 12:29:32 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:29:32 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:29:32 [Note] WSREP: EVS version 0
- 130527 12:29:32 [Note] WSREP: PC version 0
- 130527 12:29:32 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:29:32 [Warning] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:29:32 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:32 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:32 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:32 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:33 [Note] WSREP: declaring 4a4e28a1-c6b8-11e2-0800-921d6ec1a94b stable
- 130527 12:29:33 [Note] WSREP: declaring 4fc3ab86-c6b8-11e2-0800-23610173d465 stable
- 130527 12:29:33 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:29:33 [Note] WSREP: VIEW(view_id(NON_PRIM,4a4e28a1-c6b8-11e2-0800-921d6ec1a94b,3) memb {
- 4a4e28a1-c6b8-11e2-0800-921d6ec1a94b,
- 4fc3ab86-c6b8-11e2-0800-23610173d465,
- 520ffb1b-c6b8-11e2-0800-edd9ae5692b6,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:29:34 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:34 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:34 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:29:34 [Note] WSREP: declaring 4a4e28a1-c6b8-11e2-0800-921d6ec1a94b stable
- 130527 12:29:34 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:29:34 [Note] WSREP: VIEW(view_id(NON_PRIM,4a4e28a1-c6b8-11e2-0800-921d6ec1a94b,4) memb {
- 4a4e28a1-c6b8-11e2-0800-921d6ec1a94b,
- 520ffb1b-c6b8-11e2-0800-edd9ae5692b6,
- } joined {
- } LEFT {
- } partitioned {
- 4fc3ab86-c6b8-11e2-0800-23610173d465,
- })
- 130527 12:29:35 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') reconnecting TO 4fc3ab86-c6b8-11e2-0800-23610173d465 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:29:35 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:37 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:38 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:40 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:41 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:43 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:44 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:46 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 520ffb1b-c6b8-11e2-0800-edd9ae5692b6 IS blacklisted, skipping
- 130527 12:29:48 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:29:48 [Note] WSREP: VIEW(view_id(NON_PRIM,520ffb1b-c6b8-11e2-0800-edd9ae5692b6,5) memb {
- 520ffb1b-c6b8-11e2-0800-edd9ae5692b6,
- } joined {
- } LEFT {
- } partitioned {
- 4a4e28a1-c6b8-11e2-0800-921d6ec1a94b,
- 4fc3ab86-c6b8-11e2-0800-23610173d465,
- })
- 130527 12:29:48 [Note] WSREP: (520ffb1b-c6b8-11e2-0800-edd9ae5692b6, 'tcp://0.0.0.0:4567') reconnecting TO 4a4e28a1-c6b8-11e2-0800-921d6ec1a94b (tcp://192.168.180.22:4567), attempt 0
- 130527 12:30:03 [Note] WSREP: VIEW((empty))
- 130527 12:30:03 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:30:03 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:30:03 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:30:03 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:30:03 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:30:03 [ERROR] Aborting
- 130527 12:30:03 [Note] WSREP: Service disconnected.
- 130527 12:30:04 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:30:04 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:30:04 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:32:08 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:32:08 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.kz1cGBLaxf
- 130527 12:32:16 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:32:16 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:32:16 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:32:16 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:32:16 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:32:16 [Note] WSREP: Found saved state: e82cc47c-c6b7-11e2-0800-c113d1f40944:-1
- 130527 12:32:16 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:32:16 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:32:16 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:32:16 [Note] WSREP: wsrep_sst_grab()
- 130527 12:32:16 [Note] WSREP: START replication
- 130527 12:32:16 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:32:16 [Note] WSREP: protonet asio version 0
- 130527 12:32:16 [Note] WSREP: backend: asio
- 130527 12:32:16 [Note] WSREP: GMCast version 0
- 130527 12:32:16 [Note] WSREP: (b3920d32-c6b8-11e2-0800-dd2772f334f1, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:32:16 [Note] WSREP: (b3920d32-c6b8-11e2-0800-dd2772f334f1, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:32:16 [Note] WSREP: EVS version 0
- 130527 12:32:16 [Note] WSREP: PC version 0
- 130527 12:32:16 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:32:16 [Warning] WSREP: (b3920d32-c6b8-11e2-0800-dd2772f334f1, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:32:19 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:32:19 [Note] WSREP: VIEW(view_id(NON_PRIM,b3920d32-c6b8-11e2-0800-dd2772f334f1,1) memb {
- b3920d32-c6b8-11e2-0800-dd2772f334f1,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:32:19 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130527 12:32:49 [Note] WSREP: VIEW((empty))
- 130527 12:32:49 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:32:49 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:32:49 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:32:49 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:32:49 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:32:49 [ERROR] Aborting
- 130527 12:32:49 [Note] WSREP: Service disconnected.
- 130527 12:32:50 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:32:50 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:32:50 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:33:20 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:33:20 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.Y3Oy9fqWyA
- 130527 12:33:43 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:33:43 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:33:43 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:33:43 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:33:43 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:33:43 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 12:33:43 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:33:43 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:33:43 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:33:43 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:33:43 [Note] WSREP: wsrep_sst_grab()
- 130527 12:33:43 [Note] WSREP: START replication
- 130527 12:33:43 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:33:43 [Note] WSREP: protonet asio version 0
- 130527 12:33:43 [Note] WSREP: backend: asio
- 130527 12:33:43 [Note] WSREP: GMCast version 0
- 130527 12:33:43 [Note] WSREP: (e7cac8fd-c6b8-11e2-0800-c6574d7f40e3, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:33:43 [Note] WSREP: (e7cac8fd-c6b8-11e2-0800-c6574d7f40e3, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:33:43 [Note] WSREP: EVS version 0
- 130527 12:33:43 [Note] WSREP: PC version 0
- 130527 12:33:43 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:33:43 [Warning] WSREP: (e7cac8fd-c6b8-11e2-0800-c6574d7f40e3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:33:43 [Note] WSREP: (e7cac8fd-c6b8-11e2-0800-c6574d7f40e3, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid e7cac8fd-c6b8-11e2-0800-c6574d7f40e3 IS blacklisted, skipping
- 130527 12:33:44 [Note] WSREP: declaring e4ee3426-c6b8-11e2-0800-e77cd58139c8 stable
- 130527 12:33:44 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:33:44 [Note] WSREP: VIEW(view_id(NON_PRIM,e4ee3426-c6b8-11e2-0800-e77cd58139c8,2) memb {
- e4ee3426-c6b8-11e2-0800-e77cd58139c8,
- e7cac8fd-c6b8-11e2-0800-c6574d7f40e3,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:33:44 [Note] WSREP: (e7cac8fd-c6b8-11e2-0800-c6574d7f40e3, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:33:44 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:33:44 [Note] WSREP: VIEW(view_id(NON_PRIM,e7cac8fd-c6b8-11e2-0800-c6574d7f40e3,3) memb {
- e7cac8fd-c6b8-11e2-0800-c6574d7f40e3,
- } joined {
- } LEFT {
- } partitioned {
- e4ee3426-c6b8-11e2-0800-e77cd58139c8,
- })
- 130527 12:33:45 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130527 12:33:45 [Note] WSREP: (e7cac8fd-c6b8-11e2-0800-c6574d7f40e3, 'tcp://0.0.0.0:4567') reconnecting TO e4ee3426-c6b8-11e2-0800-e77cd58139c8 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:34:15 [Note] WSREP: VIEW((empty))
- 130527 12:34:15 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:34:15 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:34:15 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:34:15 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:34:15 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:34:15 [ERROR] Aborting
- 130527 12:34:15 [Note] WSREP: Service disconnected.
- 130527 12:34:16 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:34:16 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:34:16 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:34:45 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:34:45 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.dD1SVLJfX7
- 130527 12:34:53 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:34:53 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:34:53 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:34:53 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:34:53 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:34:53 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:34:53 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:34:53 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:34:53 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:34:53 [Note] WSREP: wsrep_sst_grab()
- 130527 12:34:53 [Note] WSREP: START replication
- 130527 12:34:53 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:34:53 [Note] WSREP: protonet asio version 0
- 130527 12:34:53 [Note] WSREP: backend: asio
- 130527 12:34:53 [Note] WSREP: GMCast version 0
- 130527 12:34:53 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:34:53 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:34:53 [Note] WSREP: EVS version 0
- 130527 12:34:53 [Note] WSREP: PC version 0
- 130527 12:34:53 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:34:53 [Warning] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:34:53 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 10fa0506-c6b9-11e2-0800-79e236aead7b IS blacklisted, skipping
- 130527 12:34:53 [Note] WSREP: declaring 17fc7372-c6b9-11e2-0800-7e955ac6c6c9 stable
- 130527 12:34:53 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:34:53 [Note] WSREP: VIEW(view_id(NON_PRIM,10fa0506-c6b9-11e2-0800-79e236aead7b,2) memb {
- 10fa0506-c6b9-11e2-0800-79e236aead7b,
- 17fc7372-c6b9-11e2-0800-7e955ac6c6c9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:34:56 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 10fa0506-c6b9-11e2-0800-79e236aead7b IS blacklisted, skipping
- 130527 12:34:59 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 10fa0506-c6b9-11e2-0800-79e236aead7b IS blacklisted, skipping
- 130527 12:35:03 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 10fa0506-c6b9-11e2-0800-79e236aead7b IS blacklisted, skipping
- 130527 12:35:07 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 10fa0506-c6b9-11e2-0800-79e236aead7b IS blacklisted, skipping
- 130527 12:35:10 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:35:11 [Note] WSREP: (10fa0506-c6b9-11e2-0800-79e236aead7b, 'tcp://0.0.0.0:4567') reconnecting TO 17fc7372-c6b9-11e2-0800-7e955ac6c6c9 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:35:15 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, OPERATIONAL, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:15 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:16 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:16 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:17 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:17 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:18 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:18 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:19 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:19 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:20 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:20 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:21 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:21 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:22 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:22 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:23 [Note] WSREP: evs::proto(10fa0506-c6b9-11e2-0800-79e236aead7b, GATHER, view_id(REG,10fa0506-c6b9-11e2-0800-79e236aead7b,2)) suspecting node: 17fc7372-c6b9-11e2-0800-7e955ac6c6c9
- 130527 12:35:23 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:35:23 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:35:23 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:35:23 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:35:23 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:35:23 [ERROR] Aborting
- 130527 12:35:23 [Note] WSREP: Service disconnected.
- 130527 12:35:24 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:35:24 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:35:24 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:35:54 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:35:54 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.H55fHGJDOu
- 130527 12:36:01 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:36:01 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:36:01 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:36:01 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:36:01 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:36:01 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:36:01 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:36:01 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:36:01 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:36:01 [Note] WSREP: wsrep_sst_grab()
- 130527 12:36:01 [Note] WSREP: START replication
- 130527 12:36:01 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:36:01 [Note] WSREP: protonet asio version 0
- 130527 12:36:01 [Note] WSREP: backend: asio
- 130527 12:36:01 [Note] WSREP: GMCast version 0
- 130527 12:36:01 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:36:01 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:36:01 [Note] WSREP: EVS version 0
- 130527 12:36:01 [Note] WSREP: PC version 0
- 130527 12:36:01 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:36:01 [Warning] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:36:01 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 39d167ab-c6b9-11e2-0800-00e47ef5ab2b IS blacklisted, skipping
- 130527 12:36:01 [Note] WSREP: declaring 40d91458-c6b9-11e2-0800-60a515422d0a stable
- 130527 12:36:01 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:36:01 [Note] WSREP: VIEW(view_id(NON_PRIM,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2) memb {
- 39d167ab-c6b9-11e2-0800-00e47ef5ab2b,
- 40d91458-c6b9-11e2-0800-60a515422d0a,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:36:04 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 39d167ab-c6b9-11e2-0800-00e47ef5ab2b IS blacklisted, skipping
- 130527 12:36:07 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 39d167ab-c6b9-11e2-0800-00e47ef5ab2b IS blacklisted, skipping
- 130527 12:36:10 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 39d167ab-c6b9-11e2-0800-00e47ef5ab2b IS blacklisted, skipping
- 130527 12:36:13 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 39d167ab-c6b9-11e2-0800-00e47ef5ab2b IS blacklisted, skipping
- 130527 12:36:16 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 39d167ab-c6b9-11e2-0800-00e47ef5ab2b IS blacklisted, skipping
- 130527 12:36:19 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:36:20 [Note] WSREP: (39d167ab-c6b9-11e2-0800-00e47ef5ab2b, 'tcp://0.0.0.0:4567') reconnecting TO 40d91458-c6b9-11e2-0800-60a515422d0a (tcp://192.168.180.23:4567), attempt 0
- 130527 12:36:23 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:24 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:24 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:25 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:25 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:26 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:26 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:27 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:27 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:28 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:28 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:29 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:29 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:30 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:30 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:31 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:31 [Note] WSREP: evs::proto(39d167ab-c6b9-11e2-0800-00e47ef5ab2b, GATHER, view_id(REG,39d167ab-c6b9-11e2-0800-00e47ef5ab2b,2)) suspecting node: 40d91458-c6b9-11e2-0800-60a515422d0a
- 130527 12:36:32 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:36:32 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:36:32 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:36:32 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:36:32 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:36:32 [ERROR] Aborting
- 130527 12:36:32 [Note] WSREP: Service disconnected.
- 130527 12:36:33 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:36:33 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:36:33 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:37:04 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:37:04 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.okVKE7yQ2q
- 130527 12:37:12 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:37:12 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:37:12 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:37:12 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:37:12 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:37:12 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:37:12 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:37:12 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:37:12 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:37:12 [Note] WSREP: wsrep_sst_grab()
- 130527 12:37:12 [Note] WSREP: START replication
- 130527 12:37:12 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:37:12 [Note] WSREP: protonet asio version 0
- 130527 12:37:12 [Note] WSREP: backend: asio
- 130527 12:37:12 [Note] WSREP: GMCast version 0
- 130527 12:37:12 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:37:12 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:37:12 [Note] WSREP: EVS version 0
- 130527 12:37:12 [Note] WSREP: PC version 0
- 130527 12:37:12 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:37:12 [Warning] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:37:12 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 63e82046-c6b9-11e2-0800-46e556fa511e IS blacklisted, skipping
- 130527 12:37:12 [Note] WSREP: declaring 6add4a11-c6b9-11e2-0800-3541e56b28d1 stable
- 130527 12:37:12 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:37:12 [Note] WSREP: VIEW(view_id(NON_PRIM,63e82046-c6b9-11e2-0800-46e556fa511e,2) memb {
- 63e82046-c6b9-11e2-0800-46e556fa511e,
- 6add4a11-c6b9-11e2-0800-3541e56b28d1,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:37:15 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 63e82046-c6b9-11e2-0800-46e556fa511e IS blacklisted, skipping
- 130527 12:37:18 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 63e82046-c6b9-11e2-0800-46e556fa511e IS blacklisted, skipping
- 130527 12:37:22 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 63e82046-c6b9-11e2-0800-46e556fa511e IS blacklisted, skipping
- 130527 12:37:25 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 63e82046-c6b9-11e2-0800-46e556fa511e IS blacklisted, skipping
- 130527 12:37:29 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 63e82046-c6b9-11e2-0800-46e556fa511e IS blacklisted, skipping
- 130527 12:37:29 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:37:30 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:37:30 [Note] WSREP: VIEW(view_id(NON_PRIM,63e82046-c6b9-11e2-0800-46e556fa511e,3) memb {
- 63e82046-c6b9-11e2-0800-46e556fa511e,
- } joined {
- } LEFT {
- } partitioned {
- 6add4a11-c6b9-11e2-0800-3541e56b28d1,
- })
- 130527 12:37:30 [Note] WSREP: (63e82046-c6b9-11e2-0800-46e556fa511e, 'tcp://0.0.0.0:4567') reconnecting TO 6add4a11-c6b9-11e2-0800-3541e56b28d1 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:37:42 [Note] WSREP: VIEW((empty))
- 130527 12:37:42 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:37:42 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:37:42 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:37:42 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:37:42 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:37:42 [ERROR] Aborting
- 130527 12:37:42 [Note] WSREP: Service disconnected.
- 130527 12:37:43 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:37:43 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:37:43 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:38:15 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:38:15 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.UrTRNaItKf
- 130527 12:38:23 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:38:23 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:38:23 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:38:23 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:38:23 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:38:23 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:38:23 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:38:23 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:38:23 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:38:23 [Note] WSREP: wsrep_sst_grab()
- 130527 12:38:23 [Note] WSREP: START replication
- 130527 12:38:23 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:38:23 [Note] WSREP: protonet asio version 0
- 130527 12:38:23 [Note] WSREP: backend: asio
- 130527 12:38:23 [Note] WSREP: GMCast version 0
- 130527 12:38:23 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:38:23 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:38:23 [Note] WSREP: EVS version 0
- 130527 12:38:23 [Note] WSREP: PC version 0
- 130527 12:38:23 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:38:23 [Warning] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:38:23 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 8e275c2a-c6b9-11e2-0800-027d44602c6c IS blacklisted, skipping
- 130527 12:38:23 [Note] WSREP: declaring 9515c02d-c6b9-11e2-0800-42ae5cc9bf68 stable
- 130527 12:38:23 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:38:23 [Note] WSREP: VIEW(view_id(NON_PRIM,8e275c2a-c6b9-11e2-0800-027d44602c6c,2) memb {
- 8e275c2a-c6b9-11e2-0800-027d44602c6c,
- 9515c02d-c6b9-11e2-0800-42ae5cc9bf68,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:38:26 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 8e275c2a-c6b9-11e2-0800-027d44602c6c IS blacklisted, skipping
- 130527 12:38:29 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 8e275c2a-c6b9-11e2-0800-027d44602c6c IS blacklisted, skipping
- 130527 12:38:32 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 8e275c2a-c6b9-11e2-0800-027d44602c6c IS blacklisted, skipping
- 130527 12:38:36 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 8e275c2a-c6b9-11e2-0800-027d44602c6c IS blacklisted, skipping
- 130527 12:38:39 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid 8e275c2a-c6b9-11e2-0800-027d44602c6c IS blacklisted, skipping
- 130527 12:38:40 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:38:41 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:38:41 [Note] WSREP: VIEW(view_id(NON_PRIM,8e275c2a-c6b9-11e2-0800-027d44602c6c,3) memb {
- 8e275c2a-c6b9-11e2-0800-027d44602c6c,
- } joined {
- } LEFT {
- } partitioned {
- 9515c02d-c6b9-11e2-0800-42ae5cc9bf68,
- })
- 130527 12:38:41 [Note] WSREP: (8e275c2a-c6b9-11e2-0800-027d44602c6c, 'tcp://0.0.0.0:4567') reconnecting TO 9515c02d-c6b9-11e2-0800-42ae5cc9bf68 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:38:53 [Note] WSREP: VIEW((empty))
- 130527 12:38:53 [ERROR] WSREP: failed TO OPEN gcomm backend connection: 110: failed TO reach PRIMARY VIEW: 110 (Connection timed OUT)
- at gcomm/src/pc.cpp:CONNECT():139
- 130527 12:38:53 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed TO OPEN backend connection: -110 (Connection timed OUT)
- 130527 12:38:53 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed TO OPEN channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed OUT)
- 130527 12:38:53 [ERROR] WSREP: gcs CONNECT failed: Connection timed OUT
- 130527 12:38:53 [ERROR] WSREP: wsrep::CONNECT() failed: 6
- 130527 12:38:53 [ERROR] Aborting
- 130527 12:38:53 [Note] WSREP: Service disconnected.
- 130527 12:38:54 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:38:54 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:38:54 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:39:26 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:39:26 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.3abOc5EGtd
- 130527 12:39:33 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 12:39:33 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:39:33 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:39:33 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:39:33 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:39:33 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:39:33 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:39:33 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:39:33 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:39:33 [Note] WSREP: wsrep_sst_grab()
- 130527 12:39:33 [Note] WSREP: START replication
- 130527 12:39:33 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:39:33 [Note] WSREP: protonet asio version 0
- 130527 12:39:33 [Note] WSREP: backend: asio
- 130527 12:39:33 [Note] WSREP: GMCast version 0
- 130527 12:39:33 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:39:33 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:39:33 [Note] WSREP: EVS version 0
- 130527 12:39:33 [Note] WSREP: PC version 0
- 130527 12:39:33 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:39:33 [Warning] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points TO own listening address, blacklisting
- 130527 12:39:33 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid b82cce81-c6b9-11e2-0800-e3ab8082ee29 IS blacklisted, skipping
- 130527 12:39:33 [Note] WSREP: declaring bf1eaa47-c6b9-11e2-0800-556034766236 stable
- 130527 12:39:33 [Warning] WSREP: no nodes coming FROM prim VIEW, prim NOT possible
- 130527 12:39:33 [Note] WSREP: VIEW(view_id(NON_PRIM,b82cce81-c6b9-11e2-0800-e3ab8082ee29,2) memb {
- b82cce81-c6b9-11e2-0800-e3ab8082ee29,
- bf1eaa47-c6b9-11e2-0800-556034766236,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:39:36 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid b82cce81-c6b9-11e2-0800-e3ab8082ee29 IS blacklisted, skipping
- 130527 12:39:39 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid b82cce81-c6b9-11e2-0800-e3ab8082ee29 IS blacklisted, skipping
- 130527 12:39:42 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid b82cce81-c6b9-11e2-0800-e3ab8082ee29 IS blacklisted, skipping
- 130527 12:39:45 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid b82cce81-c6b9-11e2-0800-e3ab8082ee29 IS blacklisted, skipping
- 130527 12:39:48 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing TO uuid b82cce81-c6b9-11e2-0800-e3ab8082ee29 IS blacklisted, skipping
- 130527 12:39:51 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:39:52 [Note] WSREP: (b82cce81-c6b9-11e2-0800-e3ab8082ee29, 'tcp://0.0.0.0:4567') reconnecting TO bf1eaa47-c6b9-11e2-0800-556034766236 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:39:54 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:40:37 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:40:37 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.B8mdHQThcN
- 130527 12:40:45 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 12:40:46 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.L5H9YhaT5x
- 130527 12:40:48 mysqld_safe WSREP: Failed TO recover POSITION: 130527 12:40:46 [Note] Plugin 'FEDERATED' IS disabled. 130527 12:40:46 InnoDB: The InnoDB memory heap IS disabled 130527 12:40:46 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins 130527 12:40:46 InnoDB: Compressed TABLES USE zlib 1.2.3 130527 12:40:46 InnoDB: USING Linux native AIO 130527 12:40:46 InnoDB: Initializing buffer pool, SIZE = 5.8G 130527 12:40:47 InnoDB: Completed initialization OF buffer pool InnoDB: Unable TO LOCK ./ib_logfile1, error: 11 InnoDB: CHECK that you do NOT already have another mysqld process InnoDB: USING the same InnoDB DATA OR log files. InnoDB: Error IN opening ./ib_logfile1 130527 12:40:48 [ERROR] Plugin 'InnoDB' init FUNCTION returned error. 130527 12:40:48 [ERROR] Plugin 'InnoDB' registration AS a STORAGE ENGINE failed. 130527 12:40:48 [ERROR] UNKNOWN/unsupported storage engine: InnoDB 130527 12:40:48 [ERROR] Aborting 130527 12:40:48 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:40:48 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 12:40:48 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:40:48 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:40:48 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 12:40:48 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:40:48 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:40:48 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:40:48 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 12:40:48 [Note] WSREP: wsrep_sst_grab()
- 130527 12:40:48 [Note] WSREP: START replication
- 130527 12:40:48 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 12:40:48 [Note] WSREP: protonet asio version 0
- 130527 12:40:48 [Note] WSREP: backend: asio
- 130527 12:40:48 [Note] WSREP: GMCast version 0
- 130527 12:40:48 [Note] WSREP: (e51c6f80-c6b9-11e2-0800-996b7c0b67b8, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:40:48 [Note] WSREP: (e51c6f80-c6b9-11e2-0800-996b7c0b67b8, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:40:48 [Note] WSREP: EVS version 0
- 130527 12:40:48 [Note] WSREP: PC version 0
- 130527 12:40:48 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer ''
- 130527 12:40:48 [Note] WSREP: VIEW(view_id(PRIM,e51c6f80-c6b9-11e2-0800-996b7c0b67b8,1) memb {
- e51c6f80-c6b9-11e2-0800-996b7c0b67b8,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 12:40:48 [Note] WSREP: gcomm: connected
- 130527 12:40:48 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 12:40:48 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 12:40:48 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 12:40:48 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 12:40:48 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 12:40:48 [Note] WSREP: Starting NEW GROUP FROM scratch: e51d3a1a-c6b9-11e2-0800-198b477d3121
- 130527 12:40:48 [Note] WSREP: STATE_EXCHANGE: sent state UUID: e51d5ae4-c6b9-11e2-0800-9d7c2969f6c5
- 130527 12:40:48 [Note] WSREP: STATE EXCHANGE: sent state msg: e51d5ae4-c6b9-11e2-0800-9d7c2969f6c5
- 130527 12:40:48 [Note] WSREP: STATE EXCHANGE: got state msg: e51d5ae4-c6b9-11e2-0800-9d7c2969f6c5 FROM 0 (db-node1.lactalis.pyco.be)
- 130527 12:40:48 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = e51d3a1a-c6b9-11e2-0800-198b477d3121
- 130527 12:40:48 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 12:40:48 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 12:40:48 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 12:40:48 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 12:40:48 [Note] WSREP: NEW cluster VIEW: global state: e51d3a1a-c6b9-11e2-0800-198b477d3121:0, VIEW# 1: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 12:40:48 [Note] WSREP: SST complete, seqno: 0
- 130527 12:40:48 [Note] Plugin 'FEDERATED' IS disabled.
- 130527 12:40:48 InnoDB: The InnoDB memory heap IS disabled
- 130527 12:40:48 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins
- 130527 12:40:48 InnoDB: Compressed TABLES USE zlib 1.2.3
- 130527 12:40:48 InnoDB: USING Linux native AIO
- 130527 12:40:49 InnoDB: Initializing buffer pool, SIZE = 5.8G
- 130527 12:40:49 InnoDB: Completed initialization OF buffer pool
- InnoDB: Unable TO LOCK ./ib_logfile1, error: 11
- InnoDB: CHECK that you do NOT already have another mysqld process
- InnoDB: USING the same InnoDB DATA OR log files.
- InnoDB: Error IN opening ./ib_logfile1
- 130527 12:40:49 [ERROR] Plugin 'InnoDB' init FUNCTION returned error.
- 130527 12:40:49 [ERROR] Plugin 'InnoDB' registration AS a STORAGE ENGINE failed.
- 130527 12:40:49 [ERROR] UNKNOWN/unsupported storage engine: InnoDB
- 130527 12:40:49 [ERROR] Aborting
- 130527 12:40:51 [Note] WSREP: Closing send monitor...
- 130527 12:40:51 [Note] WSREP: Closed send monitor.
- 130527 12:40:51 [Note] WSREP: gcomm: terminating thread
- 130527 12:40:51 [Note] WSREP: gcomm: joining thread
- 130527 12:40:51 [Note] WSREP: gcomm: closing backend
- 130527 12:40:51 [Note] WSREP: VIEW((empty))
- 130527 12:40:51 [Note] WSREP: Received self-leave message.
- 130527 12:40:51 [Note] WSREP: gcomm: closed
- 130527 12:40:51 [Note] WSREP: Flow-control INTERVAL: [0, 0]
- 130527 12:40:51 [Note] WSREP: Received SELF-LEAVE. Closing connection.
- 130527 12:40:51 [Note] WSREP: Shifting SYNCED -> CLOSED (TO: 0)
- 130527 12:40:51 [Note] WSREP: RECV thread exiting 0: Success
- 130527 12:40:51 [Note] WSREP: recv_thread() joined.
- 130527 12:40:51 [Note] WSREP: Closing slave action queue.
- 130527 12:40:51 [Note] WSREP: Service disconnected.
- 130527 12:40:51 [Note] WSREP: rollbacker thread exiting
- 130527 12:40:52 [Note] WSREP: SOME threads may fail TO exit.
- 130527 12:40:52 [Note] /usr/sbin/mysqld: Shutdown complete
- Error IN my_thread_global_end(): 2 threads didn't exit
- 130527 12:40:57 mysqld_safe Number of processes running now: 1
- 130527 12:40:57 mysqld_safe mysqld process hanging, pid 23060 - killed
- 130527 12:40:57 mysqld_safe WSREP: not restarting wsrep node automatically
- 130527 12:40:57 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:40:57 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:40:58 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:40:58 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:40:58 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:40:58 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:40:58 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:40:58 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:40:58 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:40:58 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:40:58 [Note] WSREP: wsrep_sst_grab()
- 130527 12:40:58 [Note] WSREP: Start replication
- 130527 12:40:58 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:40:58 [Note] WSREP: protonet asio version 0
- 130527 12:40:58 [Note] WSREP: backend: asio
- 130527 12:40:58 [Note] WSREP: GMCast version 0
- 130527 12:40:58 [Note] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:40:58 [Note] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:40:58 [Note] WSREP: EVS version 0
- 130527 12:40:58 [Note] WSREP: PC version 0
- 130527 12:40:58 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:40:58 [Warning] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points to own listening address, blacklisting
- 130527 12:40:58 [Note] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid ea85d49f-c6b9-11e2-0800-887a6cb97c80 is blacklisted, skipping
- 130527 12:40:58 [Note] WSREP: declaring e99277ae-c6b9-11e2-0800-9946d0dceeab stable
- 130527 12:40:58 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:40:58 [Note] WSREP: view(view_id(NON_PRIM,e99277ae-c6b9-11e2-0800-9946d0dceeab,2) memb {
- e99277ae-c6b9-11e2-0800-9946d0dceeab,
- ea85d49f-c6b9-11e2-0800-887a6cb97c80,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:41:01 [Note] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid ea85d49f-c6b9-11e2-0800-887a6cb97c80 is blacklisted, skipping
- 130527 12:41:02 [Note] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:41:02 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:41:02 [Note] WSREP: view(view_id(NON_PRIM,ea85d49f-c6b9-11e2-0800-887a6cb97c80,3) memb {
- ea85d49f-c6b9-11e2-0800-887a6cb97c80,
- } joined {
- } left {
- } partitioned {
- e99277ae-c6b9-11e2-0800-9946d0dceeab,
- })
- 130527 12:41:03 [Note] WSREP: (ea85d49f-c6b9-11e2-0800-887a6cb97c80, 'tcp://0.0.0.0:4567') reconnecting to e99277ae-c6b9-11e2-0800-9946d0dceeab (tcp://192.168.180.23:4567), attempt 0
- 130527 12:41:29 [Note] WSREP: view((empty))
- 130527 12:41:29 [ERROR] WSREP: failed to open gcomm backend connection: 110: failed to reach primary view: 110 (Connection timed out)
- at gcomm/src/pc.cpp:connect():139
- 130527 12:41:29 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed to open backend connection: -110 (Connection timed out)
- 130527 12:41:29 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed to open channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed out)
- 130527 12:41:29 [ERROR] WSREP: gcs connect failed: Connection timed out
- 130527 12:41:29 [ERROR] WSREP: wsrep::connect() failed: 6
- 130527 12:41:29 [ERROR] Aborting
- 130527 12:41:29 [Note] WSREP: Service disconnected.
- 130527 12:41:30 [Note] WSREP: Some threads may fail to exit.
- 130527 12:41:30 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:41:30 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:42:01 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:42:01 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.YaOqoOwqow
- 130527 12:42:09 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:42:09 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:42:09 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:42:09 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:42:09 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:42:09 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:42:09 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:42:09 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:42:09 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:42:09 [Note] WSREP: wsrep_sst_grab()
- 130527 12:42:09 [Note] WSREP: Start replication
- 130527 12:42:09 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:42:09 [Note] WSREP: protonet asio version 0
- 130527 12:42:09 [Note] WSREP: backend: asio
- 130527 12:42:09 [Note] WSREP: GMCast version 0
- 130527 12:42:09 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:42:09 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:42:09 [Note] WSREP: EVS version 0
- 130527 12:42:09 [Note] WSREP: PC version 0
- 130527 12:42:09 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:42:09 [Warning] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points to own listening address, blacklisting
- 130527 12:42:09 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 150142bb-c6ba-11e2-0800-bc64ed0486af is blacklisted, skipping
- 130527 12:42:09 [Note] WSREP: declaring 1c0aa73e-c6ba-11e2-0800-a5dc76837e8f stable
- 130527 12:42:09 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:42:09 [Note] WSREP: view(view_id(NON_PRIM,150142bb-c6ba-11e2-0800-bc64ed0486af,2) memb {
- 150142bb-c6ba-11e2-0800-bc64ed0486af,
- 1c0aa73e-c6ba-11e2-0800-a5dc76837e8f,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:42:12 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 150142bb-c6ba-11e2-0800-bc64ed0486af is blacklisted, skipping
- 130527 12:42:15 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 150142bb-c6ba-11e2-0800-bc64ed0486af is blacklisted, skipping
- 130527 12:42:19 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 150142bb-c6ba-11e2-0800-bc64ed0486af is blacklisted, skipping
- 130527 12:42:23 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 150142bb-c6ba-11e2-0800-bc64ed0486af is blacklisted, skipping
- 130527 12:42:26 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:42:27 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:42:27 [Note] WSREP: view(view_id(NON_PRIM,150142bb-c6ba-11e2-0800-bc64ed0486af,3) memb {
- 150142bb-c6ba-11e2-0800-bc64ed0486af,
- } joined {
- } left {
- } partitioned {
- 1c0aa73e-c6ba-11e2-0800-a5dc76837e8f,
- })
- 130527 12:42:27 [Note] WSREP: (150142bb-c6ba-11e2-0800-bc64ed0486af, 'tcp://0.0.0.0:4567') reconnecting to 1c0aa73e-c6ba-11e2-0800-a5dc76837e8f (tcp://192.168.180.23:4567), attempt 0
- 130527 12:42:39 [Note] WSREP: view((empty))
- 130527 12:42:39 [ERROR] WSREP: failed to open gcomm backend connection: 110: failed to reach primary view: 110 (Connection timed out)
- at gcomm/src/pc.cpp:connect():139
- 130527 12:42:39 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed to open backend connection: -110 (Connection timed out)
- 130527 12:42:39 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed to open channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed out)
- 130527 12:42:39 [ERROR] WSREP: gcs connect failed: Connection timed out
- 130527 12:42:39 [ERROR] WSREP: wsrep::connect() failed: 6
- 130527 12:42:39 [ERROR] Aborting
- 130527 12:42:39 [Note] WSREP: Service disconnected.
- 130527 12:42:40 [Note] WSREP: Some threads may fail to exit.
- 130527 12:42:40 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:42:40 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:43:13 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:43:13 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.qoncTTYgFB
- 130527 12:43:20 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:43:20 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:43:20 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:43:20 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:43:20 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:43:20 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:43:20 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:43:20 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:43:20 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:43:20 [Note] WSREP: wsrep_sst_grab()
- 130527 12:43:20 [Note] WSREP: Start replication
- 130527 12:43:20 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:43:20 [Note] WSREP: protonet asio version 0
- 130527 12:43:20 [Note] WSREP: backend: asio
- 130527 12:43:20 [Note] WSREP: GMCast version 0
- 130527 12:43:20 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:43:20 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:43:20 [Note] WSREP: EVS version 0
- 130527 12:43:20 [Note] WSREP: PC version 0
- 130527 12:43:20 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:43:20 [Warning] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points to own listening address, blacklisting
- 130527 12:43:20 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 3f783773-c6ba-11e2-0800-27fa8514b7e7 is blacklisted, skipping
- 130527 12:43:20 [Note] WSREP: declaring 46620bc3-c6ba-11e2-0800-7253dc80e326 stable
- 130527 12:43:20 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:43:20 [Note] WSREP: view(view_id(NON_PRIM,3f783773-c6ba-11e2-0800-27fa8514b7e7,2) memb {
- 3f783773-c6ba-11e2-0800-27fa8514b7e7,
- 46620bc3-c6ba-11e2-0800-7253dc80e326,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:43:23 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 3f783773-c6ba-11e2-0800-27fa8514b7e7 is blacklisted, skipping
- 130527 12:43:26 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 3f783773-c6ba-11e2-0800-27fa8514b7e7 is blacklisted, skipping
- 130527 12:43:29 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 3f783773-c6ba-11e2-0800-27fa8514b7e7 is blacklisted, skipping
- 130527 12:43:32 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 3f783773-c6ba-11e2-0800-27fa8514b7e7 is blacklisted, skipping
- 130527 12:43:36 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 3f783773-c6ba-11e2-0800-27fa8514b7e7 is blacklisted, skipping
- 130527 12:43:38 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:43:38 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:43:38 [Note] WSREP: view(view_id(NON_PRIM,3f783773-c6ba-11e2-0800-27fa8514b7e7,3) memb {
- 3f783773-c6ba-11e2-0800-27fa8514b7e7,
- } joined {
- } left {
- } partitioned {
- 46620bc3-c6ba-11e2-0800-7253dc80e326,
- })
- 130527 12:43:39 [Note] WSREP: (3f783773-c6ba-11e2-0800-27fa8514b7e7, 'tcp://0.0.0.0:4567') reconnecting to 46620bc3-c6ba-11e2-0800-7253dc80e326 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:43:51 [Note] WSREP: view((empty))
- 130527 12:43:51 [ERROR] WSREP: failed to open gcomm backend connection: 110: failed to reach primary view: 110 (Connection timed out)
- at gcomm/src/pc.cpp:connect():139
- 130527 12:43:51 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed to open backend connection: -110 (Connection timed out)
- 130527 12:43:51 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed to open channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed out)
- 130527 12:43:51 [ERROR] WSREP: gcs connect failed: Connection timed out
- 130527 12:43:51 [ERROR] WSREP: wsrep::connect() failed: 6
- 130527 12:43:51 [ERROR] Aborting
- 130527 12:43:51 [Note] WSREP: Service disconnected.
- 130527 12:43:52 [Note] WSREP: Some threads may fail to exit.
- 130527 12:43:52 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:43:52 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:44:24 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:44:24 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.j6pbEGbrr7
- 130527 12:44:31 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:44:31 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:44:31 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:44:31 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:44:31 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:44:31 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:44:31 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:44:31 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:44:31 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:44:31 [Note] WSREP: wsrep_sst_grab()
- 130527 12:44:31 [Note] WSREP: Start replication
- 130527 12:44:31 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:44:31 [Note] WSREP: protonet asio version 0
- 130527 12:44:31 [Note] WSREP: backend: asio
- 130527 12:44:31 [Note] WSREP: GMCast version 0
- 130527 12:44:31 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:44:31 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:44:31 [Note] WSREP: EVS version 0
- 130527 12:44:31 [Note] WSREP: PC version 0
- 130527 12:44:31 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:44:31 [Warning] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points to own listening address, blacklisting
- 130527 12:44:31 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 69c8185a-c6ba-11e2-0800-eb5478a37ce8 is blacklisted, skipping
- 130527 12:44:31 [Note] WSREP: declaring 70b4ca5d-c6ba-11e2-0800-b58cf8849f58 stable
- 130527 12:44:31 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:44:31 [Note] WSREP: view(view_id(NON_PRIM,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2) memb {
- 69c8185a-c6ba-11e2-0800-eb5478a37ce8,
- 70b4ca5d-c6ba-11e2-0800-b58cf8849f58,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:44:34 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 69c8185a-c6ba-11e2-0800-eb5478a37ce8 is blacklisted, skipping
- 130527 12:44:37 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 69c8185a-c6ba-11e2-0800-eb5478a37ce8 is blacklisted, skipping
- 130527 12:44:40 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 69c8185a-c6ba-11e2-0800-eb5478a37ce8 is blacklisted, skipping
- 130527 12:44:43 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 69c8185a-c6ba-11e2-0800-eb5478a37ce8 is blacklisted, skipping
- 130527 12:44:46 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 69c8185a-c6ba-11e2-0800-eb5478a37ce8 is blacklisted, skipping
- 130527 12:44:49 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:44:50 [Note] WSREP: (69c8185a-c6ba-11e2-0800-eb5478a37ce8, 'tcp://0.0.0.0:4567') reconnecting to 70b4ca5d-c6ba-11e2-0800-b58cf8849f58 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:44:53 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, OPERATIONAL, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:54 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:54 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:55 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:55 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:56 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:56 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:57 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:57 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:58 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:58 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:59 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:44:59 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:45:00 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:45:00 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:45:01 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:45:01 [Note] WSREP: evs::proto(69c8185a-c6ba-11e2-0800-eb5478a37ce8, GATHER, view_id(REG,69c8185a-c6ba-11e2-0800-eb5478a37ce8,2)) suspecting node: 70b4ca5d-c6ba-11e2-0800-b58cf8849f58
- 130527 12:45:02 [ERROR] WSREP: failed to open gcomm backend connection: 110: failed to reach primary view: 110 (Connection timed out)
- at gcomm/src/pc.cpp:connect():139
- 130527 12:45:02 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed to open backend connection: -110 (Connection timed out)
- 130527 12:45:02 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed to open channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed out)
- 130527 12:45:02 [ERROR] WSREP: gcs connect failed: Connection timed out
- 130527 12:45:02 [ERROR] WSREP: wsrep::connect() failed: 6
- 130527 12:45:02 [ERROR] Aborting
- 130527 12:45:02 [Note] WSREP: Service disconnected.
- 130527 12:45:03 [Note] WSREP: Some threads may fail to exit.
- 130527 12:45:03 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:45:03 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:45:32 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:45:32 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.Ip2HenbrbR
- 130527 12:45:40 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:45:40 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:45:40 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:45:40 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:45:40 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:45:40 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:45:40 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:45:40 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:45:40 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:45:40 [Note] WSREP: wsrep_sst_grab()
- 130527 12:45:40 [Note] WSREP: Start replication
- 130527 12:45:40 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:45:40 [Note] WSREP: protonet asio version 0
- 130527 12:45:40 [Note] WSREP: backend: asio
- 130527 12:45:40 [Note] WSREP: GMCast version 0
- 130527 12:45:40 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:45:40 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:45:40 [Note] WSREP: EVS version 0
- 130527 12:45:40 [Note] WSREP: PC version 0
- 130527 12:45:40 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer '192.168.180.21:,192.168.180.22:,192.168.180.23:'
- 130527 12:45:40 [Warning] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' points to own listening address, blacklisting
- 130527 12:45:40 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 929e039c-c6ba-11e2-0800-4734ec90ad17 is blacklisted, skipping
- 130527 12:45:40 [Note] WSREP: declaring 9990a441-c6ba-11e2-0800-0625901ed4c5 stable
- 130527 12:45:40 [Warning] WSREP: no nodes coming from prim view, prim not possible
- 130527 12:45:40 [Note] WSREP: view(view_id(NON_PRIM,929e039c-c6ba-11e2-0800-4734ec90ad17,2) memb {
- 929e039c-c6ba-11e2-0800-4734ec90ad17,
- 9990a441-c6ba-11e2-0800-0625901ed4c5,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:45:43 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 929e039c-c6ba-11e2-0800-4734ec90ad17 is blacklisted, skipping
- 130527 12:45:46 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 929e039c-c6ba-11e2-0800-4734ec90ad17 is blacklisted, skipping
- 130527 12:45:50 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 929e039c-c6ba-11e2-0800-4734ec90ad17 is blacklisted, skipping
- 130527 12:45:53 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 929e039c-c6ba-11e2-0800-4734ec90ad17 is blacklisted, skipping
- 130527 12:45:56 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') address 'tcp://192.168.180.21:4567' pointing to uuid 929e039c-c6ba-11e2-0800-4734ec90ad17 is blacklisted, skipping
- 130527 12:45:57 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130527 12:45:58 [Note] WSREP: (929e039c-c6ba-11e2-0800-4734ec90ad17, 'tcp://0.0.0.0:4567') reconnecting to 9990a441-c6ba-11e2-0800-0625901ed4c5 (tcp://192.168.180.23:4567), attempt 0
- 130527 12:46:02 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:02 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:03 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:03 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:04 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:04 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:05 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:05 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:06 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:06 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:07 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:07 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:08 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:08 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:09 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:09 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:10 [Note] WSREP: evs::proto(929e039c-c6ba-11e2-0800-4734ec90ad17, GATHER, view_id(REG,929e039c-c6ba-11e2-0800-4734ec90ad17,2)) suspecting node: 9990a441-c6ba-11e2-0800-0625901ed4c5
- 130527 12:46:10 [ERROR] WSREP: failed to open gcomm backend connection: 110: failed to reach primary view: 110 (Connection timed out)
- at gcomm/src/pc.cpp:connect():139
- 130527 12:46:10 [ERROR] WSREP: gcs/src/gcs_core.c:gcs_core_open():195: Failed to open backend connection: -110 (Connection timed out)
- 130527 12:46:10 [ERROR] WSREP: gcs/src/gcs.c:gcs_open():1290: Failed to open channel 'my_wsrep_cluster' at 'gcomm://192.168.180.21,192.168.180.22,192.168.180.23': -110 (Connection timed out)
- 130527 12:46:10 [ERROR] WSREP: gcs connect failed: Connection timed out
- 130527 12:46:10 [ERROR] WSREP: wsrep::connect() failed: 6
- 130527 12:46:10 [ERROR] Aborting
- 130527 12:46:10 [Note] WSREP: Service disconnected.
- 130527 12:46:11 [Note] WSREP: Some threads may fail to exit.
- 130527 12:46:11 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 12:46:11 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 12:46:47 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:46:47 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.37ftwYSMZM
- 130527 12:46:55 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:46:55 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:46:55 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:46:55 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:46:55 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:46:55 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:46:55 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:46:55 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:46:55 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:46:55 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:46:55 InnoDB: The InnoDB memory heap is disabled
- 130527 12:46:55 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:46:55 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:46:55 InnoDB: Using Linux native AIO
- 130527 12:46:55 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:46:56 InnoDB: Completed initialization of buffer pool
- 130527 12:46:56 InnoDB: highest supported file format is Barracuda.
- 130527 12:46:57 InnoDB: Waiting for the background threads to start
- 130527 12:46:58 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 12:46:58 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:46:58 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:46:58 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:46:58 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:46:58 [Note] Event Scheduler: Loaded 0 events
- 130527 12:46:58 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:48:04 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:48:04 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.s0yWsJGPHx
- 130527 12:48:11 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:48:11 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:48:11 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:48:11 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:48:11 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:48:11 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:48:11 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:48:11 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:48:11 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:48:11 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:48:11 InnoDB: The InnoDB memory heap is disabled
- 130527 12:48:11 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:48:11 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:48:11 InnoDB: Using Linux native AIO
- 130527 12:48:11 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:48:12 InnoDB: Completed initialization of buffer pool
- InnoDB: The first specified data file ./ibdata1 did not exist:
- InnoDB: a new database to be created!
- 130527 12:48:12 InnoDB: Setting file ./ibdata1 size to 100 MB
- InnoDB: Database physically writes the file full: wait...
- InnoDB: Progress in MB: 100
- 130527 12:48:14 InnoDB: Log file ./ib_logfile0 did not exist: new to be created
- InnoDB: Setting log file ./ib_logfile0 size to 512 MB
- InnoDB: Database physically writes the file full: wait...
- InnoDB: Progress in MB: 100 200 300 400 500
- 130527 12:48:21 InnoDB: Log file ./ib_logfile1 did not exist: new to be created
- InnoDB: Setting log file ./ib_logfile1 size to 512 MB
- InnoDB: Database physically writes the file full: wait...
- InnoDB: Progress in MB: 100 200 300 400 500
- InnoDB: Doublewrite buffer not found: creating new
- InnoDB: Doublewrite buffer created
- InnoDB: 127 rollback segment(s) active.
- InnoDB: Creating foreign key constraint system tables
- InnoDB: Foreign key constraint system tables created
- 130527 12:48:29 InnoDB: Waiting for the background threads to start
- 130527 12:48:30 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 0
- 130527 12:48:30 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:48:30 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:48:30 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:48:30 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:48:30 [Note] Event Scheduler: Loaded 0 events
- 130527 12:48:30 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:48:43 [Note] WSREP: Stop replication
- 130527 12:48:45 [Note] WSREP: killing local connection: 4
- 130527 12:48:45 [Note] WSREP: dtor state: CLOSED
- 130527 12:48:45 [Note] WSREP: apply mon: entered 0
- 130527 12:48:45 [Note] WSREP: apply mon: entered 0
- 130527 12:48:45 [Note] WSREP: apply mon: entered 0
- 130527 12:48:45 [Note] WSREP: cert index usage at exit 0
- 130527 12:48:45 [Note] WSREP: cert trx map usage at exit 0
- 130527 12:48:45 [Note] WSREP: deps set usage at exit 0
- 130527 12:48:45 [Note] WSREP: avg deps dist 0
- 130527 12:48:45 [Note] WSREP: wsdb trx map usage 0 conn query map usage 0
- 130527 12:48:45 [Note] WSREP: Flushing memory map to disk...
- 130527 12:48:45 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:48:45 [Note] WSREP: wsrep_load(): loading provider library 'NONE'
- 130527 12:48:45 [ERROR] WSREP: Failed to get provider options
- 130527 12:49:51 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:49:51 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.0sjCiQ5kkO
- 130527 12:49:58 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:49:58 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:49:58 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:49:58 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:49:58 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:49:58 [Warning] WSREP: Could not open saved state file for reading: /var/lib/mysql//grastate.dat
- 130527 12:49:58 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:49:58 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:49:58 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:49:58 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:49:58 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:49:58 InnoDB: The InnoDB memory heap is disabled
- 130527 12:49:58 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:49:58 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:49:58 InnoDB: Using Linux native AIO
- 130527 12:49:58 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:49:59 InnoDB: Completed initialization of buffer pool
- 130527 12:49:59 InnoDB: highest supported file format is Barracuda.
- 130527 12:50:00 InnoDB: Waiting for the background threads to start
- 130527 12:50:01 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 12:50:01 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:50:01 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:50:01 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:50:01 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:50:01 [Note] Event Scheduler: Loaded 0 events
- 130527 12:50:01 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:50:30 [Note] WSREP: Stop replication
- 130527 12:50:32 [Note] WSREP: killing local connection: 6
- 130527 12:50:32 [Note] WSREP: dtor state: CLOSED
- 130527 12:50:32 [Note] WSREP: apply mon: entered 0
- 130527 12:50:32 [Note] WSREP: apply mon: entered 0
- 130527 12:50:32 [Note] WSREP: apply mon: entered 0
- 130527 12:50:32 [Note] WSREP: cert index usage at exit 0
- 130527 12:50:32 [Note] WSREP: cert trx map usage at exit 0
- 130527 12:50:32 [Note] WSREP: deps set usage at exit 0
- 130527 12:50:32 [Note] WSREP: avg deps dist 0
- 130527 12:50:32 [Note] WSREP: wsdb trx map usage 0 conn query map usage 0
- 130527 12:50:32 [Note] WSREP: Flushing memory map to disk...
- 130527 12:50:32 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:50:32 [Note] WSREP: wsrep_load(): loading provider library 'NONE'
- 130527 12:50:32 [ERROR] WSREP: Failed to get provider options
- 130527 12:50:37 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:50:37 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.nb7GCjHeM5
- 130527 12:50:44 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:50:44 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:50:44 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:50:44 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:50:44 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:50:44 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:50:44 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:50:44 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:50:44 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:50:44 [Note] WSREP: wsrep_sst_grab()
- 130527 12:50:44 [Note] WSREP: Start replication
- 130527 12:50:44 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:50:44 [Note] WSREP: protonet asio version 0
- 130527 12:50:44 [Note] WSREP: backend: asio
- 130527 12:50:44 [Note] WSREP: GMCast version 0
- 130527 12:50:44 [Note] WSREP: (48302bc5-c6bb-11e2-0800-40b40d2d302a, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:50:44 [Note] WSREP: (48302bc5-c6bb-11e2-0800-40b40d2d302a, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:50:44 [Note] WSREP: EVS version 0
- 130527 12:50:44 [Note] WSREP: PC version 0
- 130527 12:50:44 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer ''
- 130527 12:50:44 [Note] WSREP: view(view_id(PRIM,48302bc5-c6bb-11e2-0800-40b40d2d302a,1) memb {
- 48302bc5-c6bb-11e2-0800-40b40d2d302a,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:50:44 [Note] WSREP: gcomm: connected
- 130527 12:50:44 [Note] WSREP: Changing maximum packet size to 64500, resulting msg size: 32636
- 130527 12:50:44 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 12:50:44 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 12:50:44 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 12:50:44 [Note] WSREP: Waiting for SST to complete.
- 130527 12:50:44 [Note] WSREP: Starting new group from scratch: 483136fd-c6bb-11e2-0800-9d83b5b841b1
- 130527 12:50:44 [Note] WSREP: STATE_EXCHANGE: sent state UUID: 483154fd-c6bb-11e2-0800-ac21af2ce29f
- 130527 12:50:44 [Note] WSREP: STATE EXCHANGE: sent state msg: 483154fd-c6bb-11e2-0800-ac21af2ce29f
- 130527 12:50:44 [Note] WSREP: STATE EXCHANGE: got state msg: 483154fd-c6bb-11e2-0800-ac21af2ce29f from 0 (db-node1.lactalis.pyco.be)
- 130527 12:50:44 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = 483136fd-c6bb-11e2-0800-9d83b5b841b1
- 130527 12:50:44 [Note] WSREP: Flow-control interval: [16, 16]
- 130527 12:50:44 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 12:50:44 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced with group.
- 130527 12:50:44 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 12:50:44 [Note] WSREP: New cluster view: global state: 483136fd-c6bb-11e2-0800-9d83b5b841b1:0, view# 1: Primary, number of nodes: 1, my index: 0, protocol version 2
- 130527 12:50:44 [Note] WSREP: SST complete, seqno: 0
- 130527 12:50:44 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:50:44 InnoDB: The InnoDB memory heap is disabled
- 130527 12:50:44 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:50:44 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:50:44 InnoDB: Using Linux native AIO
- 130527 12:50:44 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:50:45 InnoDB: Completed initialization of buffer pool
- 130527 12:50:45 InnoDB: highest supported file format is Barracuda.
- 130527 12:50:46 InnoDB: Waiting for the background threads to start
- 130527 12:50:47 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 12:50:47 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:50:47 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:50:47 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:50:47 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:50:47 [Note] Event Scheduler: Loaded 0 events
- 130527 12:50:47 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:50:47 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:50:47 [Note] WSREP: Assign initial position for certification: 0, protocol version: 2
- 130527 12:50:47 [Note] WSREP: Synchronized with group, ready for connections
- 130527 12:50:47 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:52:05 [Note] /usr/sbin/mysqld: Normal shutdown
- 130527 12:52:05 [Note] WSREP: Stop replication
- 130527 12:52:05 [Note] WSREP: Closing send monitor...
- 130527 12:52:05 [Note] WSREP: Closed send monitor.
- 130527 12:52:05 [Note] WSREP: gcomm: terminating thread
- 130527 12:52:05 [Note] WSREP: gcomm: joining thread
- 130527 12:52:05 [Note] WSREP: gcomm: closing backend
- 130527 12:52:05 [Note] WSREP: view((empty))
- 130527 12:52:05 [Note] WSREP: Received self-leave message.
- 130527 12:52:05 [Note] WSREP: gcomm: closed
- 130527 12:52:05 [Note] WSREP: Flow-control interval: [0, 0]
- 130527 12:52:05 [Note] WSREP: Received SELF-LEAVE. Closing connection.
- 130527 12:52:05 [Note] WSREP: Shifting SYNCED -> CLOSED (TO: 0)
- 130527 12:52:05 [Note] WSREP: RECV thread exiting 0: Success
- 130527 12:52:05 [Note] WSREP: New cluster view: global state: 483136fd-c6bb-11e2-0800-9d83b5b841b1:0, view# -1: non-Primary, number of nodes: 0, my index: -1, protocol version 2
- 130527 12:52:05 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:52:05 [Note] WSREP: recv_thread() joined.
- 130527 12:52:05 [Note] WSREP: Closing slave action queue.
- 130527 12:52:05 [Note] WSREP: applier thread exiting (code:0)
- 130527 12:52:07 [Note] WSREP: killing local connection: 74
- 130527 12:52:07 [Note] WSREP: killing local connection: 22
- 130527 12:52:07 [Note] WSREP: rollbacker thread exiting
- 130527 12:52:07 [Note] Event Scheduler: Purging the queue. 0 events
- 130527 12:52:10 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:52:10 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.H4rSN7jbnp
- 130527 12:52:18 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:52:18 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:52:18 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:52:18 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:52:18 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:52:18 [Note] WSREP: Found saved state: 483136fd-c6bb-11e2-0800-9d83b5b841b1:0
- 130527 12:52:18 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:52:18 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:52:18 [Note] WSREP: Assign initial position for certification: 0, protocol version: -1
- 130527 12:52:18 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:52:18 InnoDB: The InnoDB memory heap is disabled
- 130527 12:52:18 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:52:18 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:52:18 InnoDB: Using Linux native AIO
- 130527 12:52:18 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:52:19 InnoDB: Completed initialization of buffer pool
- 130527 12:52:19 InnoDB: highest supported file format is Barracuda.
- 130527 12:52:19 InnoDB: Waiting for the background threads to start
- 130527 12:52:20 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 12:52:20 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:52:20 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:52:20 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:52:20 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:52:20 [Note] Event Scheduler: Loaded 0 events
- 130527 12:52:20 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:52:50 [Note] WSREP: Stop replication
- 130527 12:52:52 [Note] WSREP: killing local connection: 3
- 130527 12:52:52 [Note] WSREP: dtor state: CLOSED
- 130527 12:52:52 [Note] WSREP: apply mon: entered 0
- 130527 12:52:52 [Note] WSREP: apply mon: entered 0
- 130527 12:52:52 [Note] WSREP: apply mon: entered 0
- 130527 12:52:52 [Note] WSREP: cert index usage at exit 0
- 130527 12:52:52 [Note] WSREP: cert trx map usage at exit 0
- 130527 12:52:52 [Note] WSREP: deps set usage at exit 0
- 130527 12:52:52 [Note] WSREP: avg deps dist 0
- 130527 12:52:52 [Note] WSREP: wsdb trx map usage 0 conn query map usage 0
- 130527 12:52:52 [Note] WSREP: Flushing memory map to disk...
- 130527 12:52:52 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:52:52 [Note] WSREP: wsrep_load(): loading provider library 'NONE'
- 130527 12:52:52 [ERROR] WSREP: Failed to get provider options
- 130527 12:53:57 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:53:57 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.pV4VBKUflT
- 130527 12:54:20 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:54:20 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:54:20 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:54:20 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:54:20 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:54:20 [Warning] WSREP: Could not open saved state file for reading: /var/lib/mysql//grastate.dat
- 130527 12:54:20 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:54:20 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:54:20 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:54:20 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:54:20 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:54:20 InnoDB: The InnoDB memory heap is disabled
- 130527 12:54:20 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:54:20 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:54:20 InnoDB: Using Linux native AIO
- 130527 12:54:20 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:54:21 InnoDB: Completed initialization of buffer pool
- 130527 12:54:21 InnoDB: highest supported file format is Barracuda.
- 130527 12:54:21 InnoDB: Waiting for the background threads to start
- 130527 12:54:22 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 12:54:22 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:54:22 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:54:22 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:54:22 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:54:22 [Note] Event Scheduler: Loaded 0 events
- 130527 12:54:22 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:54:56 [Note] WSREP: Stop replication
- 130527 12:54:58 [Note] WSREP: dtor state: CLOSED
- 130527 12:54:58 [Note] WSREP: apply mon: entered 0
- 130527 12:54:58 [Note] WSREP: apply mon: entered 0
- 130527 12:54:58 [Note] WSREP: apply mon: entered 0
- 130527 12:54:58 [Note] WSREP: cert index usage at exit 0
- 130527 12:54:58 [Note] WSREP: cert trx map usage at exit 0
- 130527 12:54:58 [Note] WSREP: deps set usage at exit 0
- 130527 12:54:58 [Note] WSREP: avg deps dist 0
- 130527 12:54:58 [Note] WSREP: wsdb trx map usage 0 conn query map usage 0
- 130527 12:54:58 [Note] WSREP: Flushing memory map to disk...
- 130527 12:54:58 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:54:58 [Note] WSREP: wsrep_load(): loading provider library 'NONE'
- 130527 12:54:58 [ERROR] WSREP: Failed to get provider options
- 130527 12:55:07 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 12:55:07 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.2sByTptfe4
- 130527 12:55:14 mysqld_safe WSREP: Recovered position 00000000-0000-0000-0000-000000000000:-1
- 130527 12:55:14 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 12:55:14 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 12:55:14 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 12:55:14 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 12:55:14 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 12:55:14 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 12:55:14 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 12:55:14 [Note] WSREP: Assign initial position for certification: -1, protocol version: -1
- 130527 12:55:14 [Note] WSREP: wsrep_sst_grab()
- 130527 12:55:14 [Note] WSREP: Start replication
- 130527 12:55:14 [Note] WSREP: Setting initial position to 00000000-0000-0000-0000-000000000000:-1
- 130527 12:55:14 [Note] WSREP: protonet asio version 0
- 130527 12:55:14 [Note] WSREP: backend: asio
- 130527 12:55:14 [Note] WSREP: GMCast version 0
- 130527 12:55:14 [Note] WSREP: (e926a917-c6bb-11e2-0800-3d3be9395a90, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 12:55:14 [Note] WSREP: (e926a917-c6bb-11e2-0800-3d3be9395a90, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 12:55:14 [Note] WSREP: EVS version 0
- 130527 12:55:14 [Note] WSREP: PC version 0
- 130527 12:55:14 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer ''
- 130527 12:55:14 [Note] WSREP: view(view_id(PRIM,e926a917-c6bb-11e2-0800-3d3be9395a90,1) memb {
- e926a917-c6bb-11e2-0800-3d3be9395a90,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:55:14 [Note] WSREP: gcomm: connected
- 130527 12:55:14 [Note] WSREP: Changing maximum packet size to 64500, resulting msg size: 32636
- 130527 12:55:14 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 12:55:14 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 12:55:14 [Note] WSREP: Waiting for SST to complete.
- 130527 12:55:14 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 12:55:14 [Note] WSREP: Starting new group from scratch: e9277283-c6bb-11e2-0800-fe36e395d2af
- 130527 12:55:14 [Note] WSREP: STATE_EXCHANGE: sent state UUID: e9279206-c6bb-11e2-0800-dcdf3eee1bc4
- 130527 12:55:14 [Note] WSREP: STATE EXCHANGE: sent state msg: e9279206-c6bb-11e2-0800-dcdf3eee1bc4
- 130527 12:55:14 [Note] WSREP: STATE EXCHANGE: got state msg: e9279206-c6bb-11e2-0800-dcdf3eee1bc4 from 0 (db-node1.lactalis.pyco.be)
- 130527 12:55:14 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = e9277283-c6bb-11e2-0800-fe36e395d2af
- 130527 12:55:14 [Note] WSREP: Flow-control interval: [16, 16]
- 130527 12:55:14 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 12:55:14 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced with group.
- 130527 12:55:14 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 12:55:14 [Note] WSREP: New cluster view: global state: e9277283-c6bb-11e2-0800-fe36e395d2af:0, view# 1: Primary, number of nodes: 1, my index: 0, protocol version 2
- 130527 12:55:14 [Note] WSREP: SST complete, seqno: 0
- 130527 12:55:14 [Note] Plugin 'FEDERATED' is disabled.
- 130527 12:55:14 InnoDB: The InnoDB memory heap is disabled
- 130527 12:55:14 InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 130527 12:55:14 InnoDB: Compressed tables use zlib 1.2.3
- 130527 12:55:14 InnoDB: Using Linux native AIO
- 130527 12:55:14 InnoDB: Initializing buffer pool, size = 5.8G
- 130527 12:55:15 InnoDB: Completed initialization of buffer pool
- 130527 12:55:15 InnoDB: highest supported file format is Barracuda.
- 130527 12:55:16 InnoDB: Waiting for the background threads to start
- 130527 12:55:17 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log sequence number 1598122
- 130527 12:55:17 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 12:55:17 [Note] - '0.0.0.0' resolves to '0.0.0.0';
- 130527 12:55:17 [Note] Server socket created on IP: '0.0.0.0'.
- 130527 12:55:17 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored in --skip-name-resolve mode.
- 130527 12:55:17 [Note] Event Scheduler: Loaded 0 events
- 130527 12:55:17 [Note] /usr/sbin/mysqld: ready for connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 12:55:17 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:55:17 [Note] WSREP: Assign initial position for certification: 0, protocol version: 2
- 130527 12:55:17 [Note] WSREP: Synchronized with group, ready for connections
- 130527 12:55:17 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:59:56 [Note] WSREP: declaring 924749c8-c6bc-11e2-0800-8c78f9895388 stable
- 130527 12:59:56 [Note] WSREP: view(view_id(PRIM,924749c8-c6bc-11e2-0800-8c78f9895388,2) memb {
- 924749c8-c6bc-11e2-0800-8c78f9895388,
- e926a917-c6bb-11e2-0800-3d3be9395a90,
- } joined {
- } left {
- } partitioned {
- })
- 130527 12:59:56 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 12:59:56 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130527 12:59:57 [Note] WSREP: STATE EXCHANGE: sent state msg: 92e24234-c6bc-11e2-0800-228ec47748e6
- 130527 12:59:57 [Note] WSREP: STATE EXCHANGE: got state msg: 92e24234-c6bc-11e2-0800-228ec47748e6 from 0 (db-node2.lactalis.pyco.be)
- 130527 12:59:57 [Note] WSREP: STATE EXCHANGE: got state msg: 92e24234-c6bc-11e2-0800-228ec47748e6 from 1 (db-node1.lactalis.pyco.be)
- 130527 12:59:57 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 1,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = e9277283-c6bb-11e2-0800-fe36e395d2af
- 130527 12:59:57 [Note] WSREP: Flow-control interval: [23, 23]
- 130527 12:59:57 [Note] WSREP: New cluster view: global state: e9277283-c6bb-11e2-0800-fe36e395d2af:0, view# 2: Primary, number of nodes: 2, my index: 1, protocol version 2
- 130527 12:59:57 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:59:57 [Note] WSREP: Assign initial position for certification: 0, protocol version: 2
- 130527 12:59:59 [Note] WSREP: Node 0 (db-node2.lactalis.pyco.be) requested state transfer from '*any*'. Selected 1 (db-node1.lactalis.pyco.be)(SYNCED) as donor.
- 130527 12:59:59 [Note] WSREP: Shifting SYNCED -> DONOR/DESYNCED (TO: 0)
- 130527 12:59:59 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 12:59:59 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'e9277283-c6bb-11e2-0800-fe36e395d2af:0''
- 130527 12:59:59 [Note] WSREP: sst_donor_thread signaled WITH 0
- 130527 12:59:59 [Note] WSREP: Flushing TABLES FOR SST...
- 130527 12:59:59 [Note] WSREP: Provider paused at e9277283-c6bb-11e2-0800-fe36e395d2af:0
- 130527 12:59:59 [Note] WSREP: TABLES flushed.
- 130527 13:08:15 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- 130527 13:08:30 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 13:08:30 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.B6GImzuV2L
- 130527 13:09:02 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 13:09:02 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 13:09:02 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 13:09:02 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 13:09:02 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 13:09:02 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 13:09:02 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:09:02 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 13:09:02 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 13:09:02 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 13:09:02 [Note] WSREP: wsrep_sst_grab()
- 130527 13:09:02 [Note] WSREP: START replication
- 130527 13:09:02 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 13:09:02 [Note] WSREP: protonet asio version 0
- 130527 13:09:02 [Note] WSREP: backend: asio
- 130527 13:09:02 [Note] WSREP: GMCast version 0
- 130527 13:09:02 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 13:09:02 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 13:09:02 [Note] WSREP: EVS version 0
- 130527 13:09:02 [Note] WSREP: PC version 0
- 130527 13:09:02 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer ''
- 130527 13:09:02 [Note] WSREP: VIEW(view_id(PRIM,d652b838-c6bd-11e2-0800-d767601662c9,1) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:09:02 [Note] WSREP: gcomm: connected
- 130527 13:09:02 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 13:09:02 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 13:09:02 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 13:09:02 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:09:02 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 13:09:02 [Note] WSREP: Starting NEW GROUP FROM scratch: d653b18a-c6bd-11e2-0800-b8dfb9a872c1
- 130527 13:09:02 [Note] WSREP: STATE_EXCHANGE: sent state UUID: d653df8a-c6bd-11e2-0800-62ba3ced3ec6
- 130527 13:09:02 [Note] WSREP: STATE EXCHANGE: sent state msg: d653df8a-c6bd-11e2-0800-62ba3ced3ec6
- 130527 13:09:02 [Note] WSREP: STATE EXCHANGE: got state msg: d653df8a-c6bd-11e2-0800-62ba3ced3ec6 FROM 0 (db-node1.lactalis.pyco.be)
- 130527 13:09:02 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = d653b18a-c6bd-11e2-0800-b8dfb9a872c1
- 130527 13:09:02 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:09:02 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 13:09:02 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 13:09:02 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 13:09:02 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# 1: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:09:02 [Note] WSREP: SST complete, seqno: 0
- 130527 13:09:02 [Note] Plugin 'FEDERATED' IS disabled.
- 130527 13:09:02 InnoDB: The InnoDB memory heap IS disabled
- 130527 13:09:02 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins
- 130527 13:09:02 InnoDB: Compressed TABLES USE zlib 1.2.3
- 130527 13:09:02 InnoDB: USING Linux native AIO
- 130527 13:09:02 InnoDB: Initializing buffer pool, SIZE = 5.8G
- 130527 13:09:02 InnoDB: Completed initialization OF buffer pool
- 130527 13:09:03 InnoDB: highest supported file format IS Barracuda.
- 130527 13:09:03 [Note] WSREP: declaring 924749c8-c6bc-11e2-0800-8c78f9895388 stable
- 130527 13:09:03 [Note] WSREP: VIEW(view_id(PRIM,924749c8-c6bc-11e2-0800-8c78f9895388,4) memb {
- 924749c8-c6bc-11e2-0800-8c78f9895388,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- e926a917-c6bb-11e2-0800-3d3be9395a90,
- })
- 130527 13:09:03 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:09:03 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:09:03 [Note] WSREP: STATE EXCHANGE: sent state msg: d8417731-c6bd-11e2-0800-54e827842260
- 130527 13:09:03 [Note] WSREP: STATE EXCHANGE: got state msg: d8417731-c6bd-11e2-0800-54e827842260 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:09:03 [Note] WSREP: STATE EXCHANGE: got state msg: d8417731-c6bd-11e2-0800-54e827842260 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:09:03 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 1,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = d653b18a-c6bd-11e2-0800-b8dfb9a872c1
- 130527 13:09:03 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:09:04 InnoDB: Waiting FOR the background threads TO START
- 130527 13:09:05 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log SEQUENCE NUMBER 1598122
- 130527 13:09:05 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 13:09:05 [Note] - '0.0.0.0' resolves TO '0.0.0.0';
- 130527 13:09:05 [Note] Server socket created ON IP: '0.0.0.0'.
- 130527 13:09:05 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored IN --skip-name-resolve mode.
- 130527 13:09:05 [Note] Event Scheduler: Loaded 0 events
- 130527 13:09:05 [Note] /usr/sbin/mysqld: ready FOR connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 13:09:05 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:09:05 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:09:05 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 13:09:05 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:09:05 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# 2: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 13:09:05 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:09:05 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- rsync: writefd_unbuffered failed TO WRITE 4 bytes TO socket [sender]: Connection reset BY peer (104)
- rsync: connection unexpectedly closed (328 bytes received so far) [sender]
- rsync error: error IN rsync protocol DATA stream (code 12) at io.c(600) [sender=3.0.6]
- rsync returned code 12:
- WSREP_SST: [ERROR] rsync server ON the other END has incompatible protocol. Make sure you have the same version OF rsync ON ALL nodes. (20130527 13:09:58.532)
- 130527 13:09:58 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 13:09:59 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO 924749c8-c6bc-11e2-0800-8c78f9895388 (tcp://192.168.180.22:4567), attempt 0
- 130527 13:10:03 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, OPERATIONAL, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:03 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:04 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:04 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:05 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:05 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:06 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:06 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:07 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:07 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:08 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:08 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:09 [Note] WSREP: remote endpoint tcp://192.168.180.22:4567 changed IDENTITY 924749c8-c6bc-11e2-0800-8c78f9895388 -> ff989e40-c6bd-11e2-0800-47b23545377c
- 130527 13:10:09 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:10:09 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:10 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:10 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:11 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:11 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:12 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:12 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) suspecting node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:13 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,924749c8-c6bc-11e2-0800-8c78f9895388,4)) detected inactive node: 924749c8-c6bc-11e2-0800-8c78f9895388
- 130527 13:10:15 [Note] WSREP: VIEW(view_id(NON_PRIM,924749c8-c6bc-11e2-0800-8c78f9895388,4) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 924749c8-c6bc-11e2-0800-8c78f9895388,
- })
- 130527 13:10:15 [Note] WSREP: declaring ff989e40-c6bd-11e2-0800-47b23545377c stable
- 130527 13:10:15 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:10:15 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:10:15 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:10:15 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 0)
- 130527 13:10:15 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:10:15 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:10:15 [Note] WSREP: VIEW(view_id(NON_PRIM,d652b838-c6bd-11e2-0800-d767601662c9,6) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- ff989e40-c6bd-11e2-0800-47b23545377c,
- } joined {
- } LEFT {
- } partitioned {
- 924749c8-c6bc-11e2-0800-8c78f9895388,
- })
- 130527 13:10:15 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 2
- 130527 13:10:15 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:10:15 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:10:15 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 2, my INDEX: 0, protocol version 2
- 130527 13:10:15 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:10:40 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 13:10:40 [Note] WSREP: VIEW(view_id(NON_PRIM,d652b838-c6bd-11e2-0800-d767601662c9,7) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 924749c8-c6bc-11e2-0800-8c78f9895388,
- ff989e40-c6bd-11e2-0800-47b23545377c,
- })
- 130527 13:10:40 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:10:40 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:10:40 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:10:40 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:10:40 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:10:41 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO ff989e40-c6bd-11e2-0800-47b23545377c (tcp://192.168.180.22:4567), attempt 0
- 130527 13:10:57 [Note] WSREP: VIEW(view_id(PRIM,d652b838-c6bd-11e2-0800-d767601662c9,7) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 924749c8-c6bc-11e2-0800-8c78f9895388,
- ff989e40-c6bd-11e2-0800-47b23545377c,
- })
- 130527 13:10:57 [Note] WSREP: forgetting ff989e40-c6bd-11e2-0800-47b23545377c (tcp://192.168.180.22:4567)
- 130527 13:10:57 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:10:57 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = yes, my_idx = 0, memb_num = 1
- 130527 13:10:57 [Note] WSREP: STATE_EXCHANGE: sent state UUID: 1b45e046-c6be-11e2-0800-bb8466fb9bda
- 130527 13:10:57 [Note] WSREP: STATE EXCHANGE: sent state msg: 1b45e046-c6be-11e2-0800-bb8466fb9bda
- 130527 13:10:57 [Note] WSREP: STATE EXCHANGE: got state msg: 1b45e046-c6be-11e2-0800-bb8466fb9bda FROM 0 (db-node1.lactalis.pyco.be)
- 130527 13:10:57 [Warning] WSREP: Quorum: No node WITH complete state:
- Version : 2
- Flags : 7
- Protocols : 0 / 4 / 2
- State : NON-PRIMARY
- Prim state : SYNCED
- Prim UUID : d8417731-c6bd-11e2-0800-54e827842260
- Prim seqno : 2
- LAST seqno : 0
- Prim JOINED : 1
- State UUID : 1b45e046-c6be-11e2-0800-bb8466fb9bda
- GROUP UUID : d653b18a-c6bd-11e2-0800-b8dfb9a872c1
- Name : 'db-node1.lactalis.pyco.be'
- Incoming addr: '192.168.180.21:3306'
- 130527 13:10:57 [Note] WSREP: FULL re-MERGE OF PRIMARY d8417731-c6bd-11e2-0800-54e827842260 found: 1 OF 1.
- 130527 13:10:57 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 2,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = d653b18a-c6bd-11e2-0800-b8dfb9a872c1
- 130527 13:10:57 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:10:57 [Note] WSREP: Restored state OPEN -> SYNCED (0)
- 130527 13:10:57 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# 3: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:10:57 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:10:57 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:10:57 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 13:10:57 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:11:03 [Note] WSREP: cleaning up ff989e40-c6bd-11e2-0800-47b23545377c (tcp://192.168.180.22:4567)
- 130527 13:11:58 [Note] WSREP: declaring 40e2ccce-c6be-11e2-0800-63e52cecf083 stable
- 130527 13:11:58 [Note] WSREP: VIEW(view_id(PRIM,40e2ccce-c6be-11e2-0800-63e52cecf083,8) memb {
- 40e2ccce-c6be-11e2-0800-63e52cecf083,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:11:58 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:11:58 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:11:59 [Note] WSREP: STATE EXCHANGE: sent state msg: 412fa935-c6be-11e2-0800-94138f5389e5
- 130527 13:11:59 [Note] WSREP: STATE EXCHANGE: got state msg: 412fa935-c6be-11e2-0800-94138f5389e5 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:11:59 [Note] WSREP: STATE EXCHANGE: got state msg: 412fa935-c6be-11e2-0800-94138f5389e5 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:11:59 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 3,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = d653b18a-c6bd-11e2-0800-b8dfb9a872c1
- 130527 13:11:59 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:11:59 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# 4: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 13:11:59 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:11:59 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:12:01 [Note] WSREP: Node 0 (db-node2.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 1 (db-node1.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 13:12:01 [Note] WSREP: Shifting SYNCED -> DONOR/DESYNCED (TO: 0)
- 130527 13:12:01 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:12:01 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'd653b18a-c6bd-11e2-0800-b8dfb9a872c1:0''
- 130527 13:12:01 [Note] WSREP: sst_donor_thread signaled WITH 0
- 130527 13:12:01 [Note] WSREP: Flushing TABLES FOR SST...
- 130527 13:12:01 [Note] WSREP: Provider paused at d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0
- 130527 13:12:01 [Note] WSREP: TABLES flushed.
- 130527 13:14:45 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 13:14:46 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO 40e2ccce-c6be-11e2-0800-63e52cecf083 (tcp://192.168.180.22:4567), attempt 0
- 130527 13:14:49 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, OPERATIONAL, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:50 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:50 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:51 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:51 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:52 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:52 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:53 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:53 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:54 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:54 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:55 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:55 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:56 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:56 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:57 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:57 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:58 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:58 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:59 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) suspecting node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:14:59 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,40e2ccce-c6be-11e2-0800-63e52cecf083,8)) detected inactive node: 40e2ccce-c6be-11e2-0800-63e52cecf083
- 130527 13:15:00 [Note] WSREP: VIEW(view_id(NON_PRIM,40e2ccce-c6be-11e2-0800-63e52cecf083,8) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 40e2ccce-c6be-11e2-0800-63e52cecf083,
- })
- 130527 13:15:00 [Note] WSREP: VIEW(view_id(NON_PRIM,d652b838-c6bd-11e2-0800-d767601662c9,9) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 40e2ccce-c6be-11e2-0800-63e52cecf083,
- })
- 130527 13:15:00 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:15:00 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:15:00 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:15:00 [Note] WSREP: Shifting DONOR/DESYNCED -> OPEN (TO: 0)
- 130527 13:15:00 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:15:00 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:15:00 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:15:31 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO 40e2ccce-c6be-11e2-0800-63e52cecf083 (tcp://192.168.180.22:4567), attempt 30
- 130527 13:16:00 [Note] WSREP: remote endpoint tcp://192.168.180.22:4567 changed IDENTITY 40e2ccce-c6be-11e2-0800-63e52cecf083 -> d0cbdb5a-c6be-11e2-0800-0aea89ffaff7
- 130527 13:16:00 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:16:00 [Note] WSREP: declaring d0cbdb5a-c6be-11e2-0800-0aea89ffaff7 stable
- 130527 13:16:00 [Note] WSREP: VIEW(view_id(NON_PRIM,d0cbdb5a-c6be-11e2-0800-0aea89ffaff7,10) memb {
- d0cbdb5a-c6be-11e2-0800-0aea89ffaff7,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 40e2ccce-c6be-11e2-0800-63e52cecf083,
- })
- 130527 13:16:00 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:16:00 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:16:00 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:16:31 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 13:16:32 [Note] WSREP: VIEW(view_id(NON_PRIM,d652b838-c6bd-11e2-0800-d767601662c9,11) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 40e2ccce-c6be-11e2-0800-63e52cecf083,
- d0cbdb5a-c6be-11e2-0800-0aea89ffaff7,
- })
- 130527 13:16:32 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:16:32 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:16:32 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:16:32 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO d0cbdb5a-c6be-11e2-0800-0aea89ffaff7 (tcp://192.168.180.22:4567), attempt 0
- 130527 13:17:17 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO d0cbdb5a-c6be-11e2-0800-0aea89ffaff7 (tcp://192.168.180.22:4567), attempt 30
- 130527 13:18:02 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO d0cbdb5a-c6be-11e2-0800-0aea89ffaff7 (tcp://192.168.180.22:4567), attempt 60
- 130527 13:18:45 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO d0cbdb5a-c6be-11e2-0800-0aea89ffaff7 (tcp://192.168.180.22:4567), attempt 90
- 130527 13:19:00 [Note] WSREP: remote endpoint tcp://192.168.180.22:4567 changed IDENTITY d0cbdb5a-c6be-11e2-0800-0aea89ffaff7 -> 3be9a498-c6bf-11e2-0800-0dbcd910dcce
- 130527 13:19:00 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:19:01 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:19:01 [Note] WSREP: VIEW(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,12) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 40e2ccce-c6be-11e2-0800-63e52cecf083,
- d0cbdb5a-c6be-11e2-0800-0aea89ffaff7,
- })
- 130527 13:19:01 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:19:01 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:19:01 [Note] WSREP: STATE EXCHANGE: sent state msg: 3d1d3e3c-c6bf-11e2-0800-3c2ca8c4e411
- 130527 13:19:01 [Note] WSREP: STATE EXCHANGE: got state msg: 3d1d3e3c-c6bf-11e2-0800-3c2ca8c4e411 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:19:01 [Note] WSREP: STATE EXCHANGE: got state msg: 3d1d3e3c-c6bf-11e2-0800-3c2ca8c4e411 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:19:01 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 1,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:19:01 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:19:01 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 0)
- 130527 13:24:21 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:24:21 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:24:21 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') cleaning up duplicate 0x7fd6c000ba90 after established 0x7fd6c000b800
- 130527 13:24:22 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:24:22 [Note] WSREP: declaring fbf0727c-c6bf-11e2-0800-3ce6a7970b4a stable
- 130527 13:24:22 [Note] WSREP: VIEW(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,13) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- d652b838-c6bd-11e2-0800-d767601662c9,
- fbf0727c-c6bf-11e2-0800-3ce6a7970b4a,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:24:22 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 3
- 130527 13:24:22 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:24:22 [Note] WSREP: STATE EXCHANGE: sent state msg: fbe4e5ef-c6bf-11e2-0800-d13b7d7f652d
- 130527 13:24:22 [Note] WSREP: STATE EXCHANGE: got state msg: fbe4e5ef-c6bf-11e2-0800-d13b7d7f652d FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:24:22 [Note] WSREP: STATE EXCHANGE: got state msg: fbe4e5ef-c6bf-11e2-0800-d13b7d7f652d FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:24:22 [Note] WSREP: STATE EXCHANGE: got state msg: fbe4e5ef-c6bf-11e2-0800-d13b7d7f652d FROM 2 (db-node3.lactalis.pyco.be)
- 130527 13:24:22 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 2,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:24:22 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 13:24:22 [Note] WSREP: Shifting PRIMARY -> PRIMARY (TO: 0)
- 130527 13:24:24 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:24:25 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO fbf0727c-c6bf-11e2-0800-3ce6a7970b4a (tcp://192.168.180.23:4567), attempt 0
- 130527 13:24:29 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, OPERATIONAL, view_id(REG,3be9a498-c6bf-11e2-0800-0dbcd910dcce,13)) suspecting node: fbf0727c-c6bf-11e2-0800-3ce6a7970b4a
- 130527 13:24:29 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,3be9a498-c6bf-11e2-0800-0dbcd910dcce,13)) suspecting node: fbf0727c-c6bf-11e2-0800-3ce6a7970b4a
- 130527 13:24:30 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:24:30 [Note] WSREP: VIEW(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,14) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- fbf0727c-c6bf-11e2-0800-3ce6a7970b4a,
- })
- 130527 13:24:30 [Note] WSREP: forgetting fbf0727c-c6bf-11e2-0800-3ce6a7970b4a (tcp://192.168.180.23:4567)
- 130527 13:24:30 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:24:30 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:24:30 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:24:30 [Note] WSREP: STATE EXCHANGE: sent state msg: 00a9f7ec-c6c0-11e2-0800-e3e3fd8647fc
- 130527 13:24:30 [Note] WSREP: STATE EXCHANGE: got state msg: 00a9f7ec-c6c0-11e2-0800-e3e3fd8647fc FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:24:30 [Note] WSREP: STATE EXCHANGE: got state msg: 00a9f7ec-c6c0-11e2-0800-e3e3fd8647fc FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:24:30 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 3,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:24:30 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:24:30 [Note] WSREP: Shifting PRIMARY -> PRIMARY (TO: 0)
- 130527 13:24:35 [Note] WSREP: cleaning up fbf0727c-c6bf-11e2-0800-3ce6a7970b4a (tcp://192.168.180.23:4567)
- 130527 13:24:38 [Note] WSREP: declaring 049d8855-c6c0-11e2-0800-17120b79e414 stable
- 130527 13:24:38 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:24:39 [Note] WSREP: VIEW(view_id(PRIM,049d8855-c6c0-11e2-0800-17120b79e414,15) memb {
- 049d8855-c6c0-11e2-0800-17120b79e414,
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:24:39 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 13:24:39 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:24:39 [Note] WSREP: STATE EXCHANGE: sent state msg: 06682dd6-c6c0-11e2-0800-90ca9e2fd576
- 130527 13:24:39 [Note] WSREP: STATE EXCHANGE: got state msg: 06682dd6-c6c0-11e2-0800-90ca9e2fd576 FROM 0 (db-node3.lactalis.pyco.be)
- 130527 13:24:39 [Note] WSREP: STATE EXCHANGE: got state msg: 06682dd6-c6c0-11e2-0800-90ca9e2fd576 FROM 1 (db-node2.lactalis.pyco.be)
- 130527 13:24:39 [Note] WSREP: STATE EXCHANGE: got state msg: 06682dd6-c6c0-11e2-0800-90ca9e2fd576 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 13:24:39 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 4,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:24:39 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 13:24:39 [Note] WSREP: Shifting PRIMARY -> PRIMARY (TO: 0)
- 130527 13:24:42 [Note] WSREP: Node 0 (db-node3.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 1 (db-node2.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 13:29:07 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:29:09 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') reconnecting TO 049d8855-c6c0-11e2-0800-17120b79e414 (tcp://192.168.180.23:4567), attempt 0
- 130527 13:29:13 [Note] WSREP: evs::proto(d652b838-c6bd-11e2-0800-d767601662c9, GATHER, view_id(REG,049d8855-c6c0-11e2-0800-17120b79e414,15)) suspecting node: 049d8855-c6c0-11e2-0800-17120b79e414
- 130527 13:29:13 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:29:13 [Note] WSREP: VIEW(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,16) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } LEFT {
- } partitioned {
- 049d8855-c6c0-11e2-0800-17120b79e414,
- })
- 130527 13:29:13 [Note] WSREP: forgetting 049d8855-c6c0-11e2-0800-17120b79e414 (tcp://192.168.180.23:4567)
- 130527 13:29:13 [Note] WSREP: (d652b838-c6bd-11e2-0800-d767601662c9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:29:13 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:29:13 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:29:13 [Note] WSREP: STATE EXCHANGE: sent state msg: a9d1a9cb-c6c0-11e2-0800-d29f03d7bbd5
- 130527 13:29:13 [Note] WSREP: STATE EXCHANGE: got state msg: a9d1a9cb-c6c0-11e2-0800-d29f03d7bbd5 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:29:13 [Note] WSREP: STATE EXCHANGE: got state msg: a9d1a9cb-c6c0-11e2-0800-d29f03d7bbd5 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:29:13 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 5,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:29:13 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:29:13 [Note] WSREP: Shifting PRIMARY -> PRIMARY (TO: 0)
- 130527 13:29:19 [Note] WSREP: cleaning up 049d8855-c6c0-11e2-0800-17120b79e414 (tcp://192.168.180.23:4567)
- 130527 13:29:39 [Warning] WSREP: Could NOT find peer: 049d8855-c6c0-11e2-0800-17120b79e414
- 130527 13:29:39 [Warning] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer TO -1 (LEFT the GROUP) failed: -1 (Operation NOT permitted)
- 130527 13:29:39 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced WITH GROUP.
- 130527 13:29:47 [Note] WSREP: Provider resumed.
- 130527 13:29:47 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:29:47 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:29:47 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:29:47 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:29:47 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 13:29:47 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:29:47 [Note] WSREP: NEW cluster VIEW: global state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:29:47 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:29:47 [Note] WSREP: State transfer required:
- GROUP state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:0
- LOCAL state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0
- 130527 13:29:47 [Note] WSREP: NEW cluster VIEW: global state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:0, VIEW# 2: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 13:29:47 [Warning] WSREP: Gap IN state SEQUENCE. Need state transfer.
- rsync: failed TO CONNECT TO 192.168.180.22: Connection refused (111)
- rsync error: error IN socket IO (code 10) at clientserver.c(124) [sender=3.0.6]
- 130527 13:29:47 [ERROR] WSREP: Failed TO READ FROM: wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'd653b18a-c6bd-11e2-0800-b8dfb9a872c1:0'
- 130527 13:29:47 [ERROR] WSREP: sst sent called WHEN NOT SST donor, state CONNECTED
- 130527 13:29:47 [ERROR] WSREP: Process completed WITH error: wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'd653b18a-c6bd-11e2-0800-b8dfb9a872c1:0': 10 (No child processes)
- 130527 13:29:49 [Note] WSREP: killing LOCAL connection: 997
- 130527 13:29:49 [Note] WSREP: killing LOCAL connection: 958
- 130527 13:29:49 [Note] WSREP: killing LOCAL connection: 13
- 130527 13:29:49 [Note] WSREP: You have configured 'rsync' state snapshot transfer method which cannot be performed ON a running server. Wsrep provider won't be able to fall back to it if other means of state transfer are unavailable. In that case you will need to restart the server.
- 130527 13:29:49 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130527 13:29:49 [Note] WSREP: Closing send monitor...
- 130527 13:29:49 [Note] WSREP: Closed send monitor.
- 130527 13:29:49 [Note] WSREP: gcomm: terminating thread
- 130527 13:29:49 [Note] WSREP: gcomm: joining thread
- 130527 13:29:49 [Note] WSREP: gcomm: closing backend
- 130527 13:29:50 [Note] WSREP: view(view_id(NON_PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,16) memb {
- d652b838-c6bd-11e2-0800-d767601662c9,
- } joined {
- } left {
- } partitioned {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- })
- 130527 13:29:50 [Note] WSREP: New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:29:50 [Note] WSREP: view((empty))
- 130527 13:29:50 [Note] WSREP: gcomm: closed
- 130527 13:29:50 [Note] WSREP: Flow-control interval: [16, 16]
- 130527 13:29:50 [Note] WSREP: Received NON-PRIMARY.
- 130527 13:29:50 [Note] WSREP: Shifting PRIMARY -> OPEN (TO: 0)
- 130527 13:29:50 [Note] WSREP: Received self-leave message.
- 130527 13:29:50 [Note] WSREP: Flow-control interval: [0, 0]
- 130527 13:29:50 [Note] WSREP: Received SELF-LEAVE. Closing connection.
- 130527 13:29:50 [Note] WSREP: Shifting OPEN -> CLOSED (TO: 0)
- 130527 13:29:50 [Note] WSREP: RECV thread exiting 0: Success
- 130527 13:29:50 [Note] WSREP: recv_thread() joined.
- 130527 13:29:50 [Note] WSREP: Closing slave action queue.
- 130527 13:29:50 [ERROR] WSREP: Local state UUID d653b18a-c6bd-11e2-0800-b8dfb9a872c1 is different from group state UUID 3bea602c-c6bf-11e2-0800-f7e57343b96d, and SST request is null: restart required. (FATAL)
- at galera/src/replicator_smm.cpp:process_conf_change():1218
- 130527 13:29:50 [Note] WSREP: applier thread exiting (code:7)
- 130527 13:29:50 [Note] WSREP: starting shutdown
- 130527 13:29:50 [Note] /usr/sbin/mysqld: Normal shutdown
- 130527 13:29:50 [Note] WSREP: Stop replication
- 130527 13:29:50 [Note] WSREP: Closing send monitor...
- 130527 13:29:50 [Note] WSREP: Closed send monitor.
- 130527 13:29:52 [Note] WSREP: rollbacker thread exiting
- 130527 13:29:52 [Note] Event Scheduler: Purging the queue. 0 events
- 130527 13:29:54 [Warning] /usr/sbin/mysqld: Forcing close of thread 39 user: 'cmon'
- 130527 13:29:54 [Warning] /usr/sbin/mysqld: Forcing close of thread 5 user: 'cmon'
- 130527 13:29:54 [Note] WSREP: dtor state: CONNECTED
- 130527 13:29:54 [Note] WSREP: Closing send monitor...
- 130527 13:29:54 [Note] WSREP: Closed send monitor.
- 130527 13:29:54 [Note] WSREP: apply mon: entered 0
- 130527 13:29:54 [Note] WSREP: apply mon: entered 0
- 130527 13:29:54 [Note] WSREP: mon: entered 14 oooe fraction 0 oool fraction 0
- 130527 13:29:54 [Note] WSREP: cert index usage at exit 0
- 130527 13:29:54 [Note] WSREP: cert trx map usage at exit 0
- 130527 13:29:54 [Note] WSREP: deps set usage at exit 0
- 130527 13:29:54 [Note] WSREP: avg deps dist 0
- 130527 13:29:54 [Note] WSREP: wsdb trx map usage 0 conn query map usage 0
- 130527 13:29:54 [Warning] WSREP: Waiting for 6 items to be fetched.
- 130527 13:31:13 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
- 130527 13:31:13 mysqld_safe WSREP: Running position recovery with --log_error=/tmp/tmp.WYF3wG91Py
- 130527 13:31:21 mysqld_safe WSREP: Recovered position d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0
- 130527 13:31:21 [Note] WSREP: wsrep_start_position var submitted: 'd653b18a-c6bd-11e2-0800-b8dfb9a872c1:0'
- 130527 13:31:21 [Note] WSREP: Read nil XID from storage engines, skipping position init
- 130527 13:31:21 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 13:31:21 [Note] WSREP: wsrep_load(): Galera 2.3(r143) by Codership Oy <info@codership.com> loaded succesfully.
- 130527 13:31:21 [Note] WSREP: Found saved state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0
- 130527 13:31:21 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 13:31:21 [Note] WSREP: Passing config to GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.size = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 13:31:21 [Note] WSREP: Assign initial position for certification: 0, protocol version: -1
- 130527 13:31:21 [Note] WSREP: wsrep_sst_grab()
- 130527 13:31:21 [Note] WSREP: Start replication
- 130527 13:31:21 [Note] WSREP: Setting initial position to d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0
- 130527 13:31:21 [Note] WSREP: protonet asio version 0
- 130527 13:31:21 [Note] WSREP: backend: asio
- 130527 13:31:21 [Note] WSREP: GMCast version 0
- 130527 13:31:21 [Note] WSREP: (f4918dbd-c6c0-11e2-0800-cc46428f90c6, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 13:31:21 [Note] WSREP: (f4918dbd-c6c0-11e2-0800-cc46428f90c6, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 13:31:21 [Note] WSREP: EVS version 0
- 130527 13:31:21 [Note] WSREP: PC version 0
- 130527 13:31:21 [Note] WSREP: gcomm: connecting to group 'my_wsrep_cluster', peer '192.168.180.22:4567'
- 130527 13:31:21 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:31:21 [Note] WSREP: view(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,18) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- f4918dbd-c6c0-11e2-0800-cc46428f90c6,
- } joined {
- } left {
- } partitioned {
- })
- 130527 13:31:22 [Note] WSREP: gcomm: connected
- 130527 13:31:22 [Note] WSREP: Changing maximum packet size to 64500, resulting msg size: 32636
- 130527 13:31:22 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 13:31:22 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 13:31:22 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:31:22 [Note] WSREP: Waiting for SST to complete.
- 130527 13:31:22 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130527 13:31:22 [Note] WSREP: STATE EXCHANGE: sent state msg: f626612f-c6c0-11e2-0800-ec624193b995
- 130527 13:31:22 [Note] WSREP: STATE EXCHANGE: got state msg: f626612f-c6c0-11e2-0800-ec624193b995 from 0 (db-node2.lactalis.pyco.be)
- 130527 13:31:22 [Note] WSREP: STATE EXCHANGE: got state msg: f626612f-c6c0-11e2-0800-ec624193b995 from 1 (db-node1.lactalis.pyco.be)
- 130527 13:31:22 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 7,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:31:22 [Note] WSREP: Flow-control interval: [23, 23]
- 130527 13:31:22 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 0)
- 130527 13:31:22 [Note] WSREP: State transfer required:
- Group state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:0
- Local state: d653b18a-c6bd-11e2-0800-b8dfb9a872c1:0
- 130527 13:31:22 [Note] WSREP: New cluster view: global state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:0, view# 8: Primary, number of nodes: 2, my index: 1, protocol version 2
- 130527 13:31:22 [Warning] WSREP: Gap in state sequence. Need state transfer.
- 130527 13:31:24 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'joiner' --address '192.168.180.21' --auth 'root:YuYx03s12832jfn' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --parent '14945''
- 130527 13:31:24 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:31:24 [Note] WSREP: declaring f79ea3b8-c6c0-11e2-0800-14b130958ce0 stable
- 130527 13:31:24 [Note] WSREP: VIEW(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,19) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- f4918dbd-c6c0-11e2-0800-cc46428f90c6,
- f79ea3b8-c6c0-11e2-0800-14b130958ce0,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:31:24 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 3
- 130527 13:31:24 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:31:24 [Note] WSREP: STATE EXCHANGE: sent state msg: f7b5562b-c6c0-11e2-0800-17da2114a8c8
- 130527 13:31:24 [Note] WSREP: STATE EXCHANGE: got state msg: f7b5562b-c6c0-11e2-0800-17da2114a8c8 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:31:24 [Note] WSREP: STATE EXCHANGE: got state msg: f7b5562b-c6c0-11e2-0800-17da2114a8c8 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:31:24 [Note] WSREP: Prepared SST request: rsync|192.168.180.21:4444/rsync_sst
- 130527 13:31:24 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:31:24 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:31:24 [Warning] WSREP: Failed TO PREPARE FOR incremental state transfer: LOCAL state UUID (d653b18a-c6bd-11e2-0800-b8dfb9a872c1) does NOT MATCH GROUP state UUID (3bea602c-c6bf-11e2-0800-f7e57343b96d): 1 (Operation NOT permitted)
- at galera/src/replicator_str.cpp:prepare_for_IST():442. IST will be unavailable.
- 130527 13:31:24 [Note] WSREP: STATE EXCHANGE: got state msg: f7b5562b-c6c0-11e2-0800-17da2114a8c8 FROM 2 (db-node3.lactalis.pyco.be)
- 130527 13:31:24 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 8,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:31:24 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 13:31:24 [Note] WSREP: Shifting PRIMARY -> PRIMARY (TO: 0)
- 130527 13:31:24 [Note] WSREP: Node 1 (db-node1.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 0 (db-node2.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 13:31:24 [Note] WSREP: Shifting PRIMARY -> JOINER (TO: 0)
- 130527 13:31:24 [Note] WSREP: Requesting state transfer: success, donor: 0
- 130527 13:31:59 [Note] WSREP: (f4918dbd-c6c0-11e2-0800-cc46428f90c6, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:32:00 [Note] WSREP: (f4918dbd-c6c0-11e2-0800-cc46428f90c6, 'tcp://0.0.0.0:4567') reconnecting TO f79ea3b8-c6c0-11e2-0800-14b130958ce0 (tcp://192.168.180.23:4567), attempt 0
- 130527 13:32:05 [Note] WSREP: evs::proto(f4918dbd-c6c0-11e2-0800-cc46428f90c6, GATHER, view_id(REG,3be9a498-c6bf-11e2-0800-0dbcd910dcce,19)) suspecting node: f79ea3b8-c6c0-11e2-0800-14b130958ce0
- 130527 13:32:05 [Note] WSREP: evs::proto(f4918dbd-c6c0-11e2-0800-cc46428f90c6, GATHER, view_id(REG,3be9a498-c6bf-11e2-0800-0dbcd910dcce,19)) suspecting node: f79ea3b8-c6c0-11e2-0800-14b130958ce0
- 130527 13:32:05 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:32:05 [Note] WSREP: VIEW(view_id(PRIM,3be9a498-c6bf-11e2-0800-0dbcd910dcce,20) memb {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- f4918dbd-c6c0-11e2-0800-cc46428f90c6,
- } joined {
- } LEFT {
- } partitioned {
- f79ea3b8-c6c0-11e2-0800-14b130958ce0,
- })
- 130527 13:32:05 [Note] WSREP: forgetting f79ea3b8-c6c0-11e2-0800-14b130958ce0 (tcp://192.168.180.23:4567)
- 130527 13:32:05 [Note] WSREP: (f4918dbd-c6c0-11e2-0800-cc46428f90c6, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:32:05 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:32:05 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:32:05 [Note] WSREP: STATE EXCHANGE: sent state msg: 1028bf5d-c6c1-11e2-0800-0e1f66ffecc7
- 130527 13:32:05 [Note] WSREP: STATE EXCHANGE: got state msg: 1028bf5d-c6c1-11e2-0800-0e1f66ffecc7 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:32:05 [Note] WSREP: STATE EXCHANGE: got state msg: 1028bf5d-c6c1-11e2-0800-0e1f66ffecc7 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:32:05 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 9,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:32:05 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:32:10 [Note] WSREP: remote endpoint tcp://192.168.180.23:4567 changed IDENTITY f79ea3b8-c6c0-11e2-0800-14b130958ce0 -> 12d8f902-c6c1-11e2-0800-47ca8911f944
- 130527 13:32:11 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 13:32:11 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:32:11 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,21) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- f4918dbd-c6c0-11e2-0800-cc46428f90c6,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:32:11 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 13:32:11 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:32:11 [Note] WSREP: STATE EXCHANGE: sent state msg: 140b3c30-c6c1-11e2-0800-00f2a776a930
- 130527 13:32:11 [Note] WSREP: STATE EXCHANGE: got state msg: 140b3c30-c6c1-11e2-0800-00f2a776a930 FROM 0 (db-node3.lactalis.pyco.be)
- 130527 13:32:11 [Note] WSREP: STATE EXCHANGE: got state msg: 140b3c30-c6c1-11e2-0800-00f2a776a930 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 13:32:11 [Note] WSREP: STATE EXCHANGE: got state msg: 140b3c30-c6c1-11e2-0800-00f2a776a930 FROM 1 (db-node2.lactalis.pyco.be)
- 130527 13:32:11 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 10,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:32:11 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 13:39:58 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- Parent mysqld process (PID:14945) TERMINATED unexpectedly.
- WSREP_SST: [INFO] Joiner cleanup. (20130527 13:39:59.708)
- done.
- 130527 13:40:30 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 13:40:30 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.3vNH2llFgb
- 130527 13:40:54 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 13:40:54 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 13:40:54 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 13:40:54 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 13:40:54 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 13:40:54 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 13:40:54 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:40:54 [Note] WSREP: Preallocating 34359739688/34359739688 bytes IN '/var/lib/galeracache//galera.cache'...
- 130527 13:40:54 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 13:40:54 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 13:40:54 [Note] WSREP: wsrep_sst_grab()
- 130527 13:40:54 [Note] WSREP: START replication
- 130527 13:40:54 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 13:40:54 [Note] WSREP: protonet asio version 0
- 130527 13:40:54 [Note] WSREP: backend: asio
- 130527 13:40:54 [Note] WSREP: GMCast version 0
- 130527 13:40:54 [Note] WSREP: (4a2a289e-c6c2-11e2-0800-9773f7e64764, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 13:40:54 [Note] WSREP: (4a2a289e-c6c2-11e2-0800-9773f7e64764, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 13:40:54 [Note] WSREP: EVS version 0
- 130527 13:40:54 [Note] WSREP: PC version 0
- 130527 13:40:54 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.22:4567'
- 130527 13:40:54 [Note] WSREP: (4a2a289e-c6c2-11e2-0800-9773f7e64764, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:40:54 [Note] WSREP: (4a2a289e-c6c2-11e2-0800-9773f7e64764, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:40:54 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 13:40:54 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:40:54 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,23) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- 4a2a289e-c6c2-11e2-0800-9773f7e64764,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:40:55 [Note] WSREP: gcomm: connected
- 130527 13:40:55 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 13:40:55 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 13:40:55 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 13:40:55 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 13:40:55 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:40:55 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 13:40:55 [Note] WSREP: STATE EXCHANGE: sent state msg: 4bf49113-c6c2-11e2-0800-bd9493fe4313
- 130527 13:40:55 [Note] WSREP: STATE EXCHANGE: got state msg: 4bf49113-c6c2-11e2-0800-bd9493fe4313 FROM 0 (db-node3.lactalis.pyco.be)
- 130527 13:40:55 [Note] WSREP: STATE EXCHANGE: got state msg: 4bf49113-c6c2-11e2-0800-bd9493fe4313 FROM 1 (db-node2.lactalis.pyco.be)
- 130527 13:40:55 [Note] WSREP: STATE EXCHANGE: got state msg: 4bf49113-c6c2-11e2-0800-bd9493fe4313 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 13:40:55 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 12,
- members = 1/3 (joined/total),
- act_id = 1,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:40:55 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 13:40:55 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 1)
- 130527 13:40:55 [Note] WSREP: State transfer required:
- GROUP state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:1
- LOCAL state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:40:55 [Note] WSREP: NEW cluster VIEW: global state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:1, VIEW# 13: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 13:40:55 [Warning] WSREP: Gap IN state SEQUENCE. Need state transfer.
- 130527 13:40:57 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'joiner' --address '192.168.180.21' --auth 'root:YuYx03s12832jfn' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --parent '18839''
- 130527 13:40:57 [Note] WSREP: Prepared SST request: rsync|192.168.180.21:4444/rsync_sst
- 130527 13:40:57 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:40:57 [Note] WSREP: Assign initial POSITION FOR certification: 1, protocol version: 2
- 130527 13:40:57 [Warning] WSREP: Failed TO PREPARE FOR incremental state transfer: LOCAL state UUID (00000000-0000-0000-0000-000000000000) does NOT MATCH GROUP state UUID (3bea602c-c6bf-11e2-0800-f7e57343b96d): 1 (Operation NOT permitted)
- at galera/src/replicator_str.cpp:prepare_for_IST():442. IST will be unavailable.
- 130527 13:40:57 [Note] WSREP: Requesting state transfer failed: -11(Resource temporarily unavailable). Will keep retrying every 1 SECOND(s)
- 130527 13:41:10 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- Parent mysqld process (PID:18839) TERMINATED unexpectedly.
- WSREP_SST: [INFO] Joiner cleanup. (20130527 13:41:11.061)
- done.
- 130527 13:41:55 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 13:41:55 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.o4tNbFTnSM
- 130527 13:42:15 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 13:42:15 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.N7k72CfgPj
- 130527 13:42:16 mysqld_safe WSREP: Failed TO recover POSITION: 130527 13:42:15 [Note] Plugin 'FEDERATED' IS disabled. 130527 13:42:15 InnoDB: The InnoDB memory heap IS disabled 130527 13:42:15 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins 130527 13:42:15 InnoDB: Compressed TABLES USE zlib 1.2.3 130527 13:42:15 InnoDB: USING Linux native AIO 130527 13:42:15 InnoDB: Initializing buffer pool, SIZE = 5.8G 130527 13:42:16 InnoDB: Completed initialization OF buffer pool InnoDB: Unable TO LOCK ./ib_logfile1, error: 11 InnoDB: CHECK that you do NOT already have another mysqld process InnoDB: USING the same InnoDB DATA OR log files. InnoDB: Error IN opening ./ib_logfile1 130527 13:42:16 [ERROR] Plugin 'InnoDB' init FUNCTION returned error. 130527 13:42:16 [ERROR] Plugin 'InnoDB' registration AS a STORAGE ENGINE failed. 130527 13:42:16 [ERROR] UNKNOWN/unsupported storage engine: InnoDB 130527 13:42:16 [ERROR] Aborting 130527 13:42:16 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 13:42:16 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 13:42:16 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 13:42:16 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 13:42:16 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 13:42:16 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:42:16 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 13:42:16 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 13:42:16 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 13:42:16 [Note] WSREP: wsrep_sst_grab()
- 130527 13:42:16 [Note] WSREP: START replication
- 130527 13:42:16 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 13:42:16 [Note] WSREP: protonet asio version 0
- 130527 13:42:16 [Note] WSREP: backend: asio
- 130527 13:42:16 [Note] WSREP: GMCast version 0
- 130527 13:42:16 [Note] WSREP: (7b41e4c5-c6c2-11e2-0800-b6fc92c4bca9, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 13:42:16 [Note] WSREP: (7b41e4c5-c6c2-11e2-0800-b6fc92c4bca9, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 13:42:16 [Note] WSREP: EVS version 0
- 130527 13:42:16 [Note] WSREP: PC version 0
- 130527 13:42:16 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer ''
- 130527 13:42:16 [Note] WSREP: VIEW(view_id(PRIM,7b41e4c5-c6c2-11e2-0800-b6fc92c4bca9,1) memb {
- 7b41e4c5-c6c2-11e2-0800-b6fc92c4bca9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:42:16 [Note] WSREP: gcomm: connected
- 130527 13:42:16 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 13:42:16 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 13:42:16 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 13:42:16 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 13:42:16 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:42:16 [Note] WSREP: Starting NEW GROUP FROM scratch: 7b42b0a5-c6c2-11e2-0800-2f55ed3b70cf
- 130527 13:42:16 [Note] WSREP: STATE_EXCHANGE: sent state UUID: 7b42d1da-c6c2-11e2-0800-97c3a29c5a06
- 130527 13:42:16 [Note] WSREP: STATE EXCHANGE: sent state msg: 7b42d1da-c6c2-11e2-0800-97c3a29c5a06
- 130527 13:42:16 [Note] WSREP: STATE EXCHANGE: got state msg: 7b42d1da-c6c2-11e2-0800-97c3a29c5a06 FROM 0 (db-node1.lactalis.pyco.be)
- 130527 13:42:16 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = 7b42b0a5-c6c2-11e2-0800-2f55ed3b70cf
- 130527 13:42:16 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:42:16 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 13:42:16 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 13:42:16 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 13:42:16 [Note] WSREP: NEW cluster VIEW: global state: 7b42b0a5-c6c2-11e2-0800-2f55ed3b70cf:0, VIEW# 1: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:42:16 [Note] WSREP: SST complete, seqno: 0
- 130527 13:42:16 [Note] Plugin 'FEDERATED' IS disabled.
- 130527 13:42:16 InnoDB: The InnoDB memory heap IS disabled
- 130527 13:42:16 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins
- 130527 13:42:16 InnoDB: Compressed TABLES USE zlib 1.2.3
- 130527 13:42:16 InnoDB: USING Linux native AIO
- 130527 13:42:16 InnoDB: Initializing buffer pool, SIZE = 5.8G
- 130527 13:42:17 InnoDB: Completed initialization OF buffer pool
- InnoDB: Unable TO LOCK ./ib_logfile1, error: 11
- InnoDB: CHECK that you do NOT already have another mysqld process
- InnoDB: USING the same InnoDB DATA OR log files.
- InnoDB: Error IN opening ./ib_logfile1
- 130527 13:42:17 [ERROR] Plugin 'InnoDB' init FUNCTION returned error.
- 130527 13:42:17 [ERROR] Plugin 'InnoDB' registration AS a STORAGE ENGINE failed.
- 130527 13:42:17 [ERROR] UNKNOWN/unsupported storage engine: InnoDB
- 130527 13:42:17 [ERROR] Aborting
- 130527 13:42:19 [Note] WSREP: Closing send monitor...
- 130527 13:42:19 [Note] WSREP: Closed send monitor.
- 130527 13:42:19 [Note] WSREP: gcomm: terminating thread
- 130527 13:42:19 [Note] WSREP: gcomm: joining thread
- 130527 13:42:19 [Note] WSREP: gcomm: closing backend
- 130527 13:42:19 [Note] WSREP: VIEW((empty))
- 130527 13:42:19 [Note] WSREP: Received self-leave message.
- 130527 13:42:19 [Note] WSREP: gcomm: closed
- 130527 13:42:19 [Note] WSREP: Flow-control INTERVAL: [0, 0]
- 130527 13:42:19 [Note] WSREP: Received SELF-LEAVE. Closing connection.
- 130527 13:42:19 [Note] WSREP: Shifting SYNCED -> CLOSED (TO: 0)
- 130527 13:42:19 [Note] WSREP: RECV thread exiting 0: Success
- 130527 13:42:19 [Note] WSREP: recv_thread() joined.
- 130527 13:42:19 [Note] WSREP: Closing slave action queue.
- 130527 13:42:19 [Note] WSREP: Service disconnected.
- 130527 13:42:19 [Note] WSREP: rollbacker thread exiting
- 130527 13:42:20 [Note] WSREP: SOME threads may fail TO exit.
- 130527 13:42:20 [Note] /usr/sbin/mysqld: Shutdown complete
- 130527 13:42:24 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 13:42:24 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 13:42:24 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 13:42:24 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 13:42:24 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 13:42:24 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:42:24 [Note] WSREP: Reusing existing '/var/lib/galeracache//galera.cache'.
- 130527 13:42:24 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 13:42:24 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 13:42:24 [Note] WSREP: wsrep_sst_grab()
- 130527 13:42:24 [Note] WSREP: START replication
- 130527 13:42:24 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 13:42:24 [Note] WSREP: protonet asio version 0
- 130527 13:42:24 [Note] WSREP: backend: asio
- 130527 13:42:24 [Note] WSREP: GMCast version 0
- 130527 13:42:24 [Note] WSREP: (7ff4ee24-c6c2-11e2-0800-fc0bf524e95c, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 13:42:24 [Note] WSREP: (7ff4ee24-c6c2-11e2-0800-fc0bf524e95c, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 13:42:24 [Note] WSREP: EVS version 0
- 130527 13:42:24 [Note] WSREP: PC version 0
- 130527 13:42:24 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer '192.168.180.22:4567'
- 130527 13:42:24 [Note] WSREP: (7ff4ee24-c6c2-11e2-0800-fc0bf524e95c, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:42:25 [Note] WSREP: (7ff4ee24-c6c2-11e2-0800-fc0bf524e95c, 'tcp://0.0.0.0:4567') cleaning up established 0x13e32f0 which IS duplicate OF 0x13f5720
- 130527 13:42:25 [Note] WSREP: (7ff4ee24-c6c2-11e2-0800-fc0bf524e95c, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:42:25 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 13:42:25 [Note] WSREP: declaring 3be9a498-c6bf-11e2-0800-0dbcd910dcce stable
- 130527 13:42:25 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,25) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- 7ff4ee24-c6c2-11e2-0800-fc0bf524e95c,
- } joined {
- } LEFT {
- } partitioned {
- })
- Error IN my_thread_global_end(): 2 threads didn't exit
- 130527 13:42:25 [Note] WSREP: gcomm: connected
- 130527 13:42:25 [Note] WSREP: Changing maximum packet size to 64500, resulting msg size: 32636
- 130527 13:42:25 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 13:42:25 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 13:42:25 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 13:42:25 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130527 13:42:25 [Note] WSREP: STATE EXCHANGE: sent state msg: 82041047-c6c2-11e2-0800-5bd6a701e188
- 130527 13:42:25 [Note] WSREP: STATE EXCHANGE: got state msg: 82041047-c6c2-11e2-0800-5bd6a701e188 from 0 (db-node3.lactalis.pyco.be)
- 130527 13:42:25 [Note] WSREP: STATE EXCHANGE: got state msg: 82041047-c6c2-11e2-0800-5bd6a701e188 from 1 (db-node2.lactalis.pyco.be)
- 130527 13:42:25 [Note] WSREP: Waiting for SST to complete.
- 130527 13:42:25 [Note] WSREP: STATE EXCHANGE: got state msg: 82041047-c6c2-11e2-0800-5bd6a701e188 from 2 (db-node1.lactalis.pyco.be)
- 130527 13:42:25 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 14,
- members = 1/3 (joined/total),
- act_id = 1,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = 3bea602c-c6bf-11e2-0800-f7e57343b96d
- 130527 13:42:25 [Note] WSREP: Flow-control interval: [28, 28]
- 130527 13:42:25 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 1)
- 130527 13:42:25 [Note] WSREP: State transfer required:
- Group state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:1
- Local state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:42:25 [Note] WSREP: New cluster view: global state: 3bea602c-c6bf-11e2-0800-f7e57343b96d:1, view# 15: Primary, number of nodes: 3, my index: 2, protocol version 2
- 130527 13:42:25 [Warning] WSREP: Gap in state sequence. Need state transfer.
- 130527 13:42:25 mysqld_safe mysqld from pid file /var/lib/mysql/mysqld.pid ended
- 130527 13:42:27 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'joiner' --address '192.168.180.21' --auth 'root:YuYx03s12832jfn' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --parent '20952''
- 130527 13:42:27 [Note] WSREP: Prepared SST request: rsync|192.168.180.21:4444/rsync_sst
- 130527 13:42:27 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:42:27 [Note] WSREP: Assign initial POSITION FOR certification: 1, protocol version: 2
- 130527 13:42:27 [Warning] WSREP: Failed TO PREPARE FOR incremental state transfer: LOCAL state UUID (00000000-0000-0000-0000-000000000000) does NOT MATCH GROUP state UUID (3bea602c-c6bf-11e2-0800-f7e57343b96d): 1 (Operation NOT permitted)
- at galera/src/replicator_str.cpp:prepare_for_IST():442. IST will be unavailable.
- 130527 13:42:27 [Note] WSREP: Requesting state transfer failed: -11(Resource temporarily unavailable). Will keep retrying every 1 SECOND(s)
- 130527 13:44:25 mysqld_safe mysqld FROM pid file /var/lib/mysql/mysqld.pid ended
- Parent mysqld process (PID:20952) TERMINATED unexpectedly.
- WSREP_SST: [INFO] Joiner cleanup. (20130527 13:44:26.356)
- done.
- 130527 13:45:00 mysqld_safe Starting mysqld daemon WITH DATABASES FROM /var/lib/mysql
- 130527 13:45:00 mysqld_safe WSREP: Running POSITION recovery WITH --log_error=/tmp/tmp.qkBwbGQWtM
- 130527 13:45:33 mysqld_safe WSREP: Recovered POSITION 00000000-0000-0000-0000-000000000000:-1
- 130527 13:45:33 [Note] WSREP: wsrep_start_position var submitted: '00000000-0000-0000-0000-000000000000:-1'
- 130527 13:45:33 [Note] WSREP: READ nil XID FROM storage engines, skipping POSITION init
- 130527 13:45:33 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so'
- 130527 13:45:33 [Note] WSREP: wsrep_load(): Galera 2.3(r143) BY Codership Oy <info@codership.com> loaded succesfully.
- 130527 13:45:33 [Warning] WSREP: Could NOT OPEN saved state file FOR reading: /var/lib/mysql//grastate.dat
- 130527 13:45:33 [Note] WSREP: Found saved state: 00000000-0000-0000-0000-000000000000:-1
- 130527 13:45:33 [Note] WSREP: Preallocating 34359739688/34359739688 bytes IN '/var/lib/galeracache//galera.cache'...
- 130527 13:45:34 [Note] WSREP: Passing config TO GCS: base_host = 192.168.180.21; base_port = 4567; cert.log_conflicts = no; gcache.dir = /var/lib/galeracache/; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/galeracache//galera.cache; gcache.page_size = 128M; gcache.SIZE = 32768M; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 16; gcs.fc_master_slave = NO; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = NO; replicator.causal_read_timeout = PT30S; replicator.commit_order = 3
- 130527 13:45:34 [Note] WSREP: Assign initial POSITION FOR certification: -1, protocol version: -1
- 130527 13:45:34 [Note] WSREP: wsrep_sst_grab()
- 130527 13:45:34 [Note] WSREP: START replication
- 130527 13:45:34 [Note] WSREP: Setting initial POSITION TO 00000000-0000-0000-0000-000000000000:-1
- 130527 13:45:34 [Note] WSREP: protonet asio version 0
- 130527 13:45:34 [Note] WSREP: backend: asio
- 130527 13:45:34 [Note] WSREP: GMCast version 0
- 130527 13:45:34 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567
- 130527 13:45:34 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') multicast: , ttl: 1
- 130527 13:45:34 [Note] WSREP: EVS version 0
- 130527 13:45:34 [Note] WSREP: PC version 0
- 130527 13:45:34 [Note] WSREP: gcomm: connecting TO GROUP 'my_wsrep_cluster', peer ''
- 130527 13:45:34 [Note] WSREP: VIEW(view_id(PRIM,f0fda968-c6c2-11e2-0800-b7c68555b5b9,1) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:45:34 [Note] WSREP: gcomm: connected
- 130527 13:45:34 [Note] WSREP: Changing maximum packet SIZE TO 64500, resulting msg SIZE: 32636
- 130527 13:45:34 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0)
- 130527 13:45:34 [Note] WSREP: Opened channel 'my_wsrep_cluster'
- 130527 13:45:34 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 0, memb_num = 1
- 130527 13:45:34 [Note] WSREP: Waiting FOR SST TO complete.
- 130527 13:45:34 [Note] WSREP: Starting NEW GROUP FROM scratch: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 13:45:34 [Note] WSREP: STATE_EXCHANGE: sent state UUID: f0fe8d71-c6c2-11e2-0800-d3a28579b128
- 130527 13:45:34 [Note] WSREP: STATE EXCHANGE: sent state msg: f0fe8d71-c6c2-11e2-0800-d3a28579b128
- 130527 13:45:34 [Note] WSREP: STATE EXCHANGE: got state msg: f0fe8d71-c6c2-11e2-0800-d3a28579b128 FROM 0 (db-node1.lactalis.pyco.be)
- 130527 13:45:34 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 0,
- members = 1/1 (joined/total),
- act_id = 0,
- last_appl. = -1,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 13:45:34 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130527 13:45:34 [Note] WSREP: Restored state OPEN -> JOINED (0)
- 130527 13:45:34 [Note] WSREP: Member 0 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 13:45:34 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 13:45:34 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 1: PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130527 13:45:34 [Note] WSREP: SST complete, seqno: 0
- 130527 13:45:34 [Note] Plugin 'FEDERATED' IS disabled.
- 130527 13:45:34 InnoDB: The InnoDB memory heap IS disabled
- 130527 13:45:34 InnoDB: Mutexes AND rw_locks USE GCC atomic builtins
- 130527 13:45:34 InnoDB: Compressed TABLES USE zlib 1.2.3
- 130527 13:45:34 InnoDB: USING Linux native AIO
- 130527 13:45:34 InnoDB: Initializing buffer pool, SIZE = 5.8G
- 130527 13:45:35 InnoDB: Completed initialization OF buffer pool
- 130527 13:45:35 InnoDB: highest supported file format IS Barracuda.
- 130527 13:45:35 InnoDB: Waiting FOR the background threads TO START
- 130527 13:45:36 Percona XtraDB (http://www.percona.com) 1.1.8-rel29.1 started; log SEQUENCE NUMBER 1598122
- 130527 13:45:36 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
- 130527 13:45:36 [Note] - '0.0.0.0' resolves TO '0.0.0.0';
- 130527 13:45:36 [Note] Server socket created ON IP: '0.0.0.0'.
- 130527 13:45:36 [Warning] 'proxies_priv' entry '@ root@db-node1.lactalis.pyco.be' ignored IN --skip-name-resolve mode.
- 130527 13:45:36 [Note] Event Scheduler: Loaded 0 events
- 130527 13:45:36 [Note] /usr/sbin/mysqld: ready FOR connections.
- Version: '5.5.29' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), wsrep_23.7.2.r3843
- 130527 13:45:36 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:45:36 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:45:36 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 13:45:36 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:48:20 [Note] WSREP: declaring 54d3d2ef-c6c3-11e2-0800-ca6dd97babea stable
- 130527 13:48:20 [Note] WSREP: VIEW(view_id(PRIM,54d3d2ef-c6c3-11e2-0800-ca6dd97babea,2) memb {
- 54d3d2ef-c6c3-11e2-0800-ca6dd97babea,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 13:48:20 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 13:48:20 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:48:20 [Note] WSREP: STATE EXCHANGE: sent state msg: 556d0430-c6c3-11e2-0800-47002ee6decb
- 130527 13:48:20 [Note] WSREP: STATE EXCHANGE: got state msg: 556d0430-c6c3-11e2-0800-47002ee6decb FROM 0 (db-node2.lactalis.pyco.be)
- 130527 13:48:20 [Note] WSREP: STATE EXCHANGE: got state msg: 556d0430-c6c3-11e2-0800-47002ee6decb FROM 1 (db-node1.lactalis.pyco.be)
- 130527 13:48:20 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 1,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 13:48:20 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 13:48:20 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 2: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 13:48:20 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:48:20 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:48:20 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 13:48:21 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 13:48:21 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 13:48:21 [Note] WSREP: declaring 54d3d2ef-c6c3-11e2-0800-ca6dd97babea stable
- 130527 13:48:21 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,28) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- 54d3d2ef-c6c3-11e2-0800-ca6dd97babea,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 3be9a498-c6bf-11e2-0800-0dbcd910dcce,
- })
- 130527 13:48:21 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 13:48:21 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 13:48:21 [Note] WSREP: STATE EXCHANGE: sent state msg: 55f1bb0f-c6c3-11e2-0800-073d61e832c3
- 130527 13:48:21 [Note] WSREP: STATE EXCHANGE: got state msg: 55f1bb0f-c6c3-11e2-0800-073d61e832c3 FROM 0 (db-node3.lactalis.pyco.be)
- 130527 13:48:21 [Note] WSREP: STATE EXCHANGE: got state msg: 55f1bb0f-c6c3-11e2-0800-073d61e832c3 FROM 1 (db-node2.lactalis.pyco.be)
- 130527 13:48:21 [Note] WSREP: STATE EXCHANGE: got state msg: 55f1bb0f-c6c3-11e2-0800-073d61e832c3 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 13:48:21 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 2,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 13:48:21 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 13:48:21 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 3: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 13:48:21 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:48:21 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 13:48:22 [Note] WSREP: Node 1 (db-node2.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 2 (db-node1.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 13:48:22 [Note] WSREP: Shifting SYNCED -> DONOR/DESYNCED (TO: 0)
- 130527 13:48:22 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 13:48:22 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0''
- 130527 13:48:22 [Note] WSREP: sst_donor_thread signaled WITH 0
- 130527 13:48:22 [Note] WSREP: Flushing TABLES FOR SST...
- 130527 13:48:22 [Note] WSREP: Provider paused at f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0
- 130527 13:48:22 [Note] WSREP: TABLES flushed.
- 130527 14:01:29 mysqld_safe A mysqld process already EXISTS
- 130527 14:03:22 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 14:03:23 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 54d3d2ef-c6c3-11e2-0800-ca6dd97babea (tcp://192.168.180.22:4567), attempt 0
- 130527 14:03:26 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,12d8f902-c6c1-11e2-0800-47ca8911f944,28)) suspecting node: 54d3d2ef-c6c3-11e2-0800-ca6dd97babea
- 130527 14:03:27 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,12d8f902-c6c1-11e2-0800-47ca8911f944,28)) suspecting node: 54d3d2ef-c6c3-11e2-0800-ca6dd97babea
- 130527 14:03:27 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,12d8f902-c6c1-11e2-0800-47ca8911f944,28)) suspecting node: 54d3d2ef-c6c3-11e2-0800-ca6dd97babea
- 130527 14:03:27 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 14:03:27 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,29) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 54d3d2ef-c6c3-11e2-0800-ca6dd97babea,
- })
- 130527 14:03:27 [Note] WSREP: forgetting 54d3d2ef-c6c3-11e2-0800-ca6dd97babea (tcp://192.168.180.22:4567)
- 130527 14:03:27 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 14:03:27 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 14:03:27 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 14:03:27 [Note] WSREP: STATE EXCHANGE: sent state msg: 7226f124-c6c5-11e2-0800-8708f51f6f83
- 130527 14:03:27 [Note] WSREP: STATE EXCHANGE: got state msg: 7226f124-c6c5-11e2-0800-8708f51f6f83 FROM 0 (db-node3.lactalis.pyco.be)
- 130527 14:03:27 [Note] WSREP: STATE EXCHANGE: got state msg: 7226f124-c6c5-11e2-0800-8708f51f6f83 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 14:03:27 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 3,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 14:03:27 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 14:03:33 [Note] WSREP: cleaning up 54d3d2ef-c6c3-11e2-0800-ca6dd97babea (tcp://192.168.180.22:4567)
- rsync: writefd_unbuffered failed TO WRITE 4 bytes TO socket [sender]: Connection reset BY peer (104)
- rsync: connection unexpectedly closed (328 bytes received so far) [sender]
- rsync error: error IN rsync protocol DATA stream (code 12) at io.c(600) [sender=3.0.6]
- rsync returned code 12:
- WSREP_SST: [ERROR] rsync server ON the other END has incompatible protocol. Make sure you have the same version OF rsync ON ALL nodes. (20130527 14:03:52.229)
- 130527 14:03:52 [ERROR] WSREP: Failed TO READ FROM: wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0'
- 130527 14:03:52 [Note] WSREP: Provider resumed.
- 130527 14:03:52 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 4: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 14:03:52 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:03:52 [ERROR] WSREP: Process completed WITH error: wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0': 71 (Protocol error)
- 130527 14:03:52 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 14:03:52 [Warning] WSREP: Could NOT find peer: 54d3d2ef-c6c3-11e2-0800-ca6dd97babea
- 130527 14:03:52 [Warning] WSREP: 1 (db-node1.lactalis.pyco.be): State transfer TO -1 (LEFT the GROUP) failed: -1 (Operation NOT permitted)
- 130527 14:03:52 [Note] WSREP: Shifting DONOR/DESYNCED -> JOINED (TO: 0)
- 130527 14:03:52 [Note] WSREP: Member 1 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 14:03:52 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 14:03:52 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 14:03:52 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:04:28 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 14:04:28 [Note] WSREP: declaring 9639f661-c6c5-11e2-0800-b5242bfe4b95 stable
- 130527 14:04:28 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,30) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- 9639f661-c6c5-11e2-0800-b5242bfe4b95,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 14:04:28 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 14:04:28 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 14:04:28 [Note] WSREP: STATE EXCHANGE: sent state msg: 9684d683-c6c5-11e2-0800-6c6c43f98f2c
- 130527 14:04:28 [Note] WSREP: STATE EXCHANGE: got state msg: 9684d683-c6c5-11e2-0800-6c6c43f98f2c FROM 0 (db-node3.lactalis.pyco.be)
- 130527 14:04:28 [Note] WSREP: STATE EXCHANGE: got state msg: 9684d683-c6c5-11e2-0800-6c6c43f98f2c FROM 2 (db-node1.lactalis.pyco.be)
- 130527 14:04:28 [Note] WSREP: STATE EXCHANGE: got state msg: 9684d683-c6c5-11e2-0800-6c6c43f98f2c FROM 1 (db-node2.lactalis.pyco.be)
- 130527 14:04:28 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 4,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 14:04:28 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 14:04:28 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 5: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 14:04:28 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:04:28 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 14:04:31 [Note] WSREP: Node 1 (db-node2.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 2 (db-node1.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 14:04:31 [Note] WSREP: Shifting SYNCED -> DONOR/DESYNCED (TO: 0)
- 130527 14:04:31 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:04:31 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0''
- 130527 14:04:31 [Note] WSREP: sst_donor_thread signaled WITH 0
- 130527 14:04:31 [Note] WSREP: Flushing TABLES FOR SST...
- 130527 14:04:31 [Note] WSREP: Provider paused at f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0
- 130527 14:04:31 [Note] WSREP: TABLES flushed.
- 130527 14:07:27 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567
- 130527 14:07:29 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 9639f661-c6c5-11e2-0800-b5242bfe4b95 (tcp://192.168.180.22:4567), attempt 0
- 130527 14:07:32 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,12d8f902-c6c1-11e2-0800-47ca8911f944,30)) suspecting node: 9639f661-c6c5-11e2-0800-b5242bfe4b95
- 130527 14:07:33 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 14:07:33 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,31) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 9639f661-c6c5-11e2-0800-b5242bfe4b95,
- })
- 130527 14:07:33 [Note] WSREP: forgetting 9639f661-c6c5-11e2-0800-b5242bfe4b95 (tcp://192.168.180.22:4567)
- 130527 14:07:33 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 14:07:33 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 14:07:33 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 14:07:33 [Note] WSREP: STATE EXCHANGE: sent state msg: 04dbb850-c6c6-11e2-0800-0ae8aa246d9f
- 130527 14:07:33 [Note] WSREP: STATE EXCHANGE: got state msg: 04dbb850-c6c6-11e2-0800-0ae8aa246d9f FROM 0 (db-node3.lactalis.pyco.be)
- 130527 14:07:33 [Note] WSREP: STATE EXCHANGE: got state msg: 04dbb850-c6c6-11e2-0800-0ae8aa246d9f FROM 1 (db-node1.lactalis.pyco.be)
- 130527 14:07:33 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 5,
- members = 1/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 14:07:33 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 14:07:39 [Note] WSREP: cleaning up 9639f661-c6c5-11e2-0800-b5242bfe4b95 (tcp://192.168.180.22:4567)
- rsync: writefd_unbuffered failed TO WRITE 4 bytes TO socket [sender]: Broken pipe (32)
- rsync: connection unexpectedly closed (328 bytes received so far) [sender]
- rsync error: error IN rsync protocol DATA stream (code 12) at io.c(600) [sender=3.0.6]
- rsync returned code 12:
- WSREP_SST: [ERROR] rsync server ON the other END has incompatible protocol. Make sure you have the same version OF rsync ON ALL nodes. (20130527 14:08:04.747)
- 130527 14:08:04 [ERROR] WSREP: Failed TO READ FROM: wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0'
- 130527 14:08:04 [Note] WSREP: Provider resumed.
- 130527 14:08:04 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 6: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 14:08:04 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:08:04 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 14:08:04 [ERROR] WSREP: Process completed WITH error: wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0': 71 (Protocol error)
- 130527 14:08:04 [Warning] WSREP: Could NOT find peer: 9639f661-c6c5-11e2-0800-b5242bfe4b95
- 130527 14:08:04 [Warning] WSREP: 1 (db-node1.lactalis.pyco.be): State transfer TO -1 (LEFT the GROUP) failed: -1 (Operation NOT permitted)
- 130527 14:08:04 [Note] WSREP: Shifting DONOR/DESYNCED -> JOINED (TO: 0)
- 130527 14:08:04 [Note] WSREP: Member 1 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 14:08:04 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 14:08:04 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 14:08:04 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:08:10 [Note] WSREP: declaring 12d8f902-c6c1-11e2-0800-47ca8911f944 stable
- 130527 14:08:10 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 14:08:10 [Note] WSREP: VIEW(view_id(PRIM,12d8f902-c6c1-11e2-0800-47ca8911f944,32) memb {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 14:08:10 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 14:08:10 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 14:08:10 [Note] WSREP: STATE EXCHANGE: sent state msg: 1aec37c0-c6c6-11e2-0800-3526c9404ccd
- 130527 14:08:10 [Note] WSREP: STATE EXCHANGE: got state msg: 1aec37c0-c6c6-11e2-0800-3526c9404ccd FROM 0 (db-node3.lactalis.pyco.be)
- 130527 14:08:10 [Note] WSREP: STATE EXCHANGE: got state msg: 1aec37c0-c6c6-11e2-0800-3526c9404ccd FROM 2 (db-node1.lactalis.pyco.be)
- 130527 14:08:11 [Note] WSREP: STATE EXCHANGE: got state msg: 1aec37c0-c6c6-11e2-0800-3526c9404ccd FROM 1 (db-node2.lactalis.pyco.be)
- 130527 14:08:11 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 6,
- members = 1/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 14:08:11 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 14:08:11 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 7: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 14:08:11 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:08:11 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 14:08:13 [Note] WSREP: Node 1 (db-node2.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 2 (db-node1.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 14:08:13 [Note] WSREP: Shifting SYNCED -> DONOR/DESYNCED (TO: 0)
- 130527 14:08:13 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:08:13 [Note] WSREP: Running: 'wsrep_sst_rsync --role 'donor' --address '192.168.180.22:4444/rsync_sst' --auth 'root:YuYx03s12832jfn' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --defaults-file '/etc/my.cnf' --gtid 'f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0''
- 130527 14:08:13 [Note] WSREP: sst_donor_thread signaled WITH 0
- 130527 14:08:13 [Note] WSREP: Flushing TABLES FOR SST...
- 130527 14:08:13 [Note] WSREP: Provider paused at f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0
- 130527 14:08:13 [Note] WSREP: TABLES flushed.
- 130527 14:26:51 [Note] WSREP: Provider resumed.
- 130527 14:26:51 [Note] WSREP: 2 (db-node1.lactalis.pyco.be): State transfer TO 1 (db-node2.lactalis.pyco.be) complete.
- 130527 14:26:51 [Note] WSREP: Shifting DONOR/DESYNCED -> JOINED (TO: 0)
- 130527 14:26:51 [Note] WSREP: Member 2 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130527 14:26:51 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 0)
- 130527 14:26:51 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130527 14:26:51 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 14:26:57 [Note] WSREP: 1 (db-node2.lactalis.pyco.be): State transfer FROM 2 (db-node1.lactalis.pyco.be) complete.
- 130527 14:26:57 [Note] WSREP: Member 1 (db-node2.lactalis.pyco.be) synced WITH GROUP.
- 130527 17:20:51 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:20:51 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 17:20:51 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,33) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 12d8f902-c6c1-11e2-0800-47ca8911f944,
- })
- 130527 17:20:51 [Note] WSREP: forgetting 12d8f902-c6c1-11e2-0800-47ca8911f944 (tcp://192.168.180.23:4567)
- 130527 17:20:51 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 17:20:51 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 17:20:51 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:20:51 [Note] WSREP: STATE EXCHANGE: sent state msg: 0524bf80-c6e1-11e2-0800-ca3dfde9fe9f
- 130527 17:20:51 [Note] WSREP: STATE EXCHANGE: got state msg: 0524bf80-c6e1-11e2-0800-ca3dfde9fe9f FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:20:51 [Note] WSREP: STATE EXCHANGE: got state msg: 0524bf80-c6e1-11e2-0800-ca3dfde9fe9f FROM 1 (db-node1.lactalis.pyco.be)
- 130527 17:20:51 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 7,
- members = 2/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:20:51 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 17:20:51 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 8: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 17:20:51 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:20:51 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 17:20:56 [Note] WSREP: cleaning up 12d8f902-c6c1-11e2-0800-47ca8911f944 (tcp://192.168.180.23:4567)
- 130527 17:21:59 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:21:59 [Note] WSREP: declaring 2d8dba45-c6e1-11e2-0800-d1c6f173732b stable
- 130527 17:21:59 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,34) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 2d8dba45-c6e1-11e2-0800-d1c6f173732b,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 17:21:59 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 17:21:59 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:21:59 [Note] WSREP: STATE EXCHANGE: sent state msg: 2db093aa-c6e1-11e2-0800-2de0cad05fc5
- 130527 17:21:59 [Note] WSREP: STATE EXCHANGE: got state msg: 2db093aa-c6e1-11e2-0800-2de0cad05fc5 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:21:59 [Note] WSREP: STATE EXCHANGE: got state msg: 2db093aa-c6e1-11e2-0800-2de0cad05fc5 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 17:21:59 [Note] WSREP: STATE EXCHANGE: got state msg: 2db093aa-c6e1-11e2-0800-2de0cad05fc5 FROM 1 (db-node3.lactalis.pyco.be)
- 130527 17:21:59 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 8,
- members = 2/3 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:21:59 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 17:21:59 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 9: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 17:21:59 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:21:59 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 17:29:34 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 17:29:35 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 2d8dba45-c6e1-11e2-0800-d1c6f173732b (tcp://192.168.180.23:4567), attempt 0
- 130527 17:29:38 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,34)) suspecting node: 2d8dba45-c6e1-11e2-0800-d1c6f173732b
- 130527 17:29:38 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,34)) suspecting node: 2d8dba45-c6e1-11e2-0800-d1c6f173732b
- 130527 17:29:39 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:29:39 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,35) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 2d8dba45-c6e1-11e2-0800-d1c6f173732b,
- })
- 130527 17:29:39 [Note] WSREP: forgetting 2d8dba45-c6e1-11e2-0800-d1c6f173732b (tcp://192.168.180.23:4567)
- 130527 17:29:39 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 17:29:39 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 17:29:39 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:29:39 [Note] WSREP: STATE EXCHANGE: sent state msg: 400041b7-c6e2-11e2-0800-469e432d8d5d
- 130527 17:29:39 [Note] WSREP: STATE EXCHANGE: got state msg: 400041b7-c6e2-11e2-0800-469e432d8d5d FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:29:39 [Note] WSREP: STATE EXCHANGE: got state msg: 400041b7-c6e2-11e2-0800-469e432d8d5d FROM 1 (db-node1.lactalis.pyco.be)
- 130527 17:29:39 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 9,
- members = 2/2 (joined/total),
- act_id = 0,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:29:39 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 17:29:39 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:0, VIEW# 10: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 17:29:39 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:29:39 [Note] WSREP: Assign initial POSITION FOR certification: 0, protocol version: 2
- 130527 17:29:44 [Note] WSREP: cleaning up 2d8dba45-c6e1-11e2-0800-d1c6f173732b (tcp://192.168.180.23:4567)
- 130527 17:44:23 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:44:23 [Note] WSREP: declaring 4f08e690-c6e4-11e2-0800-9661a54f2178 stable
- 130527 17:44:23 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,36) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 4f08e690-c6e4-11e2-0800-9661a54f2178,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 17:44:23 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 17:44:23 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:44:23 [Note] WSREP: STATE EXCHANGE: sent state msg: 4f2fe0bc-c6e4-11e2-0800-0ae879c2f944
- 130527 17:44:23 [Note] WSREP: STATE EXCHANGE: got state msg: 4f2fe0bc-c6e4-11e2-0800-0ae879c2f944 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:44:23 [Note] WSREP: STATE EXCHANGE: got state msg: 4f2fe0bc-c6e4-11e2-0800-0ae879c2f944 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 17:44:24 [Note] WSREP: STATE EXCHANGE: got state msg: 4f2fe0bc-c6e4-11e2-0800-0ae879c2f944 FROM 1 (db-node3.lactalis.pyco.be)
- 130527 17:44:24 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 10,
- members = 2/3 (joined/total),
- act_id = 2,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:44:24 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 17:44:24 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:2, VIEW# 11: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 17:44:24 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:44:24 [Note] WSREP: Assign initial POSITION FOR certification: 2, protocol version: 2
- 130527 17:44:24 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 17:44:25 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 4f08e690-c6e4-11e2-0800-9661a54f2178 (tcp://192.168.180.23:4567), attempt 0
- 130527 17:44:29 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,36)) suspecting node: 4f08e690-c6e4-11e2-0800-9661a54f2178
- 130527 17:44:29 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,36)) suspecting node: 4f08e690-c6e4-11e2-0800-9661a54f2178
- 130527 17:44:30 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,36)) suspecting node: 4f08e690-c6e4-11e2-0800-9661a54f2178
- 130527 17:44:30 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:44:30 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,37) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 4f08e690-c6e4-11e2-0800-9661a54f2178,
- })
- 130527 17:44:30 [Note] WSREP: forgetting 4f08e690-c6e4-11e2-0800-9661a54f2178 (tcp://192.168.180.23:4567)
- 130527 17:44:30 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 17:44:30 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 17:44:30 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:44:30 [Note] WSREP: STATE EXCHANGE: sent state msg: 53105f5c-c6e4-11e2-0800-741b7db36618
- 130527 17:44:30 [Note] WSREP: STATE EXCHANGE: got state msg: 53105f5c-c6e4-11e2-0800-741b7db36618 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:44:30 [Note] WSREP: STATE EXCHANGE: got state msg: 53105f5c-c6e4-11e2-0800-741b7db36618 FROM 1 (db-node1.lactalis.pyco.be)
- 130527 17:44:30 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 11,
- members = 2/2 (joined/total),
- act_id = 2,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:44:30 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 17:44:30 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:2, VIEW# 12: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 17:44:30 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:44:30 [Note] WSREP: Assign initial POSITION FOR certification: 2, protocol version: 2
- 130527 17:44:34 [Note] WSREP: remote endpoint tcp://192.168.180.23:4567 changed IDENTITY 4f08e690-c6e4-11e2-0800-9661a54f2178 -> 55c1e2e6-c6e4-11e2-0800-4585a9f54e0a
- 130527 17:44:37 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:44:37 [Note] WSREP: declaring 55c1e2e6-c6e4-11e2-0800-4585a9f54e0a stable
- 130527 17:44:37 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,39) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 55c1e2e6-c6e4-11e2-0800-4585a9f54e0a,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 17:44:37 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 17:44:37 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:44:37 [Note] WSREP: STATE EXCHANGE: sent state msg: 57199df0-c6e4-11e2-0800-ac859e6341e6
- 130527 17:44:37 [Note] WSREP: STATE EXCHANGE: got state msg: 57199df0-c6e4-11e2-0800-ac859e6341e6 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:44:37 [Note] WSREP: STATE EXCHANGE: got state msg: 57199df0-c6e4-11e2-0800-ac859e6341e6 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 17:44:37 [Note] WSREP: STATE EXCHANGE: got state msg: 57199df0-c6e4-11e2-0800-ac859e6341e6 FROM 1 (db-node3.lactalis.pyco.be)
- 130527 17:44:37 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 12,
- members = 2/3 (joined/total),
- act_id = 2,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:44:37 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 17:44:37 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:2, VIEW# 13: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 17:44:37 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:44:37 [Note] WSREP: Assign initial POSITION FOR certification: 2, protocol version: 2
- 130527 17:44:39 [Note] WSREP: Node 1 (db-node3.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 0 (db-node2.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 17:44:40 [Warning] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer TO 1 (db-node3.lactalis.pyco.be) failed: -1 (Operation NOT permitted)
- 130527 17:44:40 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced WITH GROUP.
- 130527 17:44:40 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:44:40 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.23:4567
- 130527 17:44:40 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,40) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 55c1e2e6-c6e4-11e2-0800-4585a9f54e0a,
- })
- 130527 17:44:40 [Note] WSREP: forgetting 55c1e2e6-c6e4-11e2-0800-4585a9f54e0a (tcp://192.168.180.23:4567)
- 130527 17:44:40 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130527 17:44:40 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130527 17:44:40 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:44:40 [Note] WSREP: STATE EXCHANGE: sent state msg: 58f6e5cb-c6e4-11e2-0800-8f986a2da1de
- 130527 17:44:40 [Note] WSREP: STATE EXCHANGE: got state msg: 58f6e5cb-c6e4-11e2-0800-8f986a2da1de FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:44:40 [Note] WSREP: STATE EXCHANGE: got state msg: 58f6e5cb-c6e4-11e2-0800-8f986a2da1de FROM 1 (db-node1.lactalis.pyco.be)
- 130527 17:44:40 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 13,
- members = 2/2 (joined/total),
- act_id = 2,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:44:40 [Note] WSREP: Flow-control INTERVAL: [23, 23]
- 130527 17:44:40 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:2, VIEW# 14: PRIMARY, NUMBER OF nodes: 2, my INDEX: 1, protocol version 2
- 130527 17:44:40 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:44:40 [Note] WSREP: Assign initial POSITION FOR certification: 2, protocol version: 2
- 130527 17:44:45 [Note] WSREP: cleaning up 55c1e2e6-c6e4-11e2-0800-4585a9f54e0a (tcp://192.168.180.23:4567)
- 130527 17:45:42 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130527 17:45:42 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130527 17:45:42 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,41) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130527 17:45:42 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130527 17:45:42 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130527 17:45:42 [Note] WSREP: STATE EXCHANGE: sent state msg: 7dee2a35-c6e4-11e2-0800-749570857cb9
- 130527 17:45:42 [Note] WSREP: STATE EXCHANGE: got state msg: 7dee2a35-c6e4-11e2-0800-749570857cb9 FROM 0 (db-node2.lactalis.pyco.be)
- 130527 17:45:42 [Note] WSREP: STATE EXCHANGE: got state msg: 7dee2a35-c6e4-11e2-0800-749570857cb9 FROM 2 (db-node1.lactalis.pyco.be)
- 130527 17:45:42 [Note] WSREP: STATE EXCHANGE: got state msg: 7dee2a35-c6e4-11e2-0800-749570857cb9 FROM 1 (db-node3.lactalis.pyco.be)
- 130527 17:45:42 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 14,
- members = 2/3 (joined/total),
- act_id = 2,
- last_appl. = 0,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130527 17:45:42 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130527 17:45:42 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:2, VIEW# 15: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130527 17:45:42 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130527 17:45:42 [Note] WSREP: Assign initial POSITION FOR certification: 2, protocol version: 2
- 130527 17:45:44 [Note] WSREP: Node 1 (db-node3.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 0 (db-node2.lactalis.pyco.be)(SYNCED) AS donor.
- 130527 18:00:41 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer TO 1 (db-node3.lactalis.pyco.be) complete.
- 130527 18:00:41 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced WITH GROUP.
- 130527 18:00:53 [Note] WSREP: 1 (db-node3.lactalis.pyco.be): State transfer FROM 0 (db-node2.lactalis.pyco.be) complete.
- 130527 18:00:53 [Note] WSREP: Member 1 (db-node3.lactalis.pyco.be) synced WITH GROUP.
- 130528 3:42:16 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 3:52:20 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 3:54:11 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 3:54:11 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567 tcp://192.168.180.23:4567
- 130528 3:54:12 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 3:58:50 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 5:54:19 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 9:14:30 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 10:03:18 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 10:03:18 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567 tcp://192.168.180.23:4567
- 130528 10:03:19 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:03:19 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:03:19 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:03:23 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,41)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:03:23 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,41)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:03:23 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,41)) suspecting node: 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d
- 130528 10:03:24 [Note] WSREP: VIEW(view_id(NON_PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,41) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- })
- 130528 10:03:24 [Note] WSREP: VIEW(view_id(NON_PRIM,f0fda968-c6c2-11e2-0800-b7c68555b5b9,42) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- })
- 130528 10:03:24 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130528 10:03:24 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130528 10:03:24 [Note] WSREP: Received NON-PRIMARY.
- 130528 10:03:24 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 108477)
- 130528 10:03:24 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130528 10:03:24 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130528 10:03:24 [Warning] WSREP: Send action {0x7f08f8074f80, 1065, TORDERED} returned -107 (Transport endpoint IS NOT connected)
- 130528 10:03:24 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:108477, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130528 10:03:24 [Note] WSREP: Received NON-PRIMARY.
- 130528 10:03:24 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130528 10:03:24 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:108477, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130528 10:03:24 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130528 10:03:25 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130528 10:03:25 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:03:25 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,43) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130528 10:03:25 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130528 10:03:25 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130528 10:03:25 [Note] WSREP: STATE EXCHANGE: sent state msg: 1322fd6c-c76d-11e2-0800-82db4e64109c
- 130528 10:03:25 [Note] WSREP: STATE EXCHANGE: got state msg: 1322fd6c-c76d-11e2-0800-82db4e64109c FROM 0 (db-node2.lactalis.pyco.be)
- 130528 10:03:25 [Note] WSREP: STATE EXCHANGE: got state msg: 1322fd6c-c76d-11e2-0800-82db4e64109c FROM 1 (db-node3.lactalis.pyco.be)
- 130528 10:03:25 [Note] WSREP: STATE EXCHANGE: got state msg: 1322fd6c-c76d-11e2-0800-82db4e64109c FROM 2 (db-node1.lactalis.pyco.be)
- 130528 10:03:25 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 16,
- members = 2/3 (joined/total),
- act_id = 109169,
- last_appl. = 108284,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:03:25 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130528 10:03:25 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 109169)
- 130528 10:03:25 [Note] WSREP: State transfer required:
- GROUP state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:109169
- LOCAL state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:108477
- 130528 10:03:25 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:109169, VIEW# 17: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130528 10:03:25 [Warning] WSREP: Gap IN state SEQUENCE. Need state transfer.
- 130528 10:03:27 [Note] WSREP: killing LOCAL connection: 145707
- 130528 10:03:27 [Note] WSREP: killing LOCAL connection: 28
- 130528 10:03:27 [Note] WSREP: killing LOCAL connection: 5
- 130528 10:03:27 [Note] WSREP: You have configured 'rsync' state snapshot transfer method which cannot be performed ON a running server. Wsrep provider won't be able to fall back to it if other means of state transfer are unavailable. In that case you will need to restart the server.
- 130528 10:03:27 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:03:27 [Note] WSREP: Assign initial position for certification: 109169, protocol version: 2
- 130528 10:03:27 [Note] WSREP: Prepared IST receiver, listening at: tcp://192.168.180.21:4568
- 130528 10:03:27 [Note] WSREP: Node 2 (db-node1.lactalis.pyco.be) requested state transfer from '*any*'. Selected 0 (db-node2.lactalis.pyco.be)(SYNCED) as donor.
- 130528 10:03:27 [Note] WSREP: Shifting PRIMARY -> JOINER (TO: 109226)
- 130528 10:03:27 [Note] WSREP: Requesting state transfer: success, donor: 0
- 130528 10:03:27 [Note] WSREP: GCache DEBUG: RingBuffer::seqno_reset(): discarded 6812818953 bytes
- 130528 10:03:27 [Note] WSREP: GCache DEBUG: RingBuffer::seqno_reset(): found 0/57 locked buffers
- 130528 10:03:27 [Note] WSREP: Receiving IST: 692 writesets, seqnos 108477-109169
- 130528 10:03:28 [Note] WSREP: IST received: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:109169
- 130528 10:03:28 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer to 2 (db-node1.lactalis.pyco.be) complete.
- 130528 10:03:28 [Note] WSREP: 2 (db-node1.lactalis.pyco.be): State transfer from 0 (db-node2.lactalis.pyco.be) complete.
- 130528 10:03:28 [Note] WSREP: Shifting JOINER -> JOINED (TO: 109226)
- 130528 10:03:28 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced with group.
- 130528 10:03:28 [Note] WSREP: Member 2 (db-node1.lactalis.pyco.be) synced with group.
- 130528 10:03:28 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 109226)
- 130528 10:03:28 [Note] WSREP: Synchronized with group, ready for connections
- 130528 10:03:28 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:04:58 [Warning] WSREP: last inactive check more than PT1.5S ago, skipping check
- 130528 10:04:59 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.22:4567 tcp://192.168.180.23:4567
- 130528 10:04:59 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting to 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:04:59 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting to 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:04:59 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:05:03 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,43)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:05:03 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,43)) suspecting node: 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d
- 130528 10:05:05 [Warning] WSREP: last inactive check more than PT1.5S ago, skipping check
- 130528 10:05:05 [Note] WSREP: view(view_id(NON_PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,43) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- })
- 130528 10:05:05 [Note] WSREP: view(view_id(NON_PRIM,f0fda968-c6c2-11e2-0800-b7c68555b5b9,44) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- })
- 130528 10:05:05 [Note] WSREP: New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130528 10:05:05 [Note] WSREP: Flow-control interval: [16, 16]
- 130528 10:05:05 [Note] WSREP: Received NON-PRIMARY.
- 130528 10:05:05 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 110162)
- 130528 10:05:05 [Note] WSREP: New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130528 10:05:05 [Note] WSREP: Flow-control interval: [16, 16]
- 130528 10:05:05 [Note] WSREP: Received NON-PRIMARY.
- 130528 10:05:05 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:110162, view# -1: non-Primary, number of nodes: 1, my index: 0, protocol version 2
- 130528 10:05:05 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:05:05 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:110162, view# -1: non-Primary, number of nodes: 1, my index: 0, protocol version 2
- 130528 10:05:05 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:05:05 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130528 10:05:05 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:05:05 [Note] WSREP: view(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,45) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- })
- 130528 10:05:05 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130528 10:05:05 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:05:05 [Note] WSREP: STATE EXCHANGE: sent state msg: 4eb82ce9-c76d-11e2-0800-7b73391d6e8c
- 130528 10:05:05 [Note] WSREP: STATE EXCHANGE: got state msg: 4eb82ce9-c76d-11e2-0800-7b73391d6e8c from 0 (db-node2.lactalis.pyco.be)
- 130528 10:05:05 [Note] WSREP: STATE EXCHANGE: got state msg: 4eb82ce9-c76d-11e2-0800-7b73391d6e8c from 1 (db-node3.lactalis.pyco.be)
- 130528 10:05:05 [Note] WSREP: STATE EXCHANGE: got state msg: 4eb82ce9-c76d-11e2-0800-7b73391d6e8c from 2 (db-node1.lactalis.pyco.be)
- 130528 10:05:05 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 18,
- members = 2/3 (joined/total),
- act_id = 111071,
- last_appl. = 109999,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:05:05 [Note] WSREP: Flow-control interval: [28, 28]
- 130528 10:05:05 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 111071)
- 130528 10:05:05 [Note] WSREP: State transfer required:
- Group state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111071
- Local state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:110162
- 130528 10:05:05 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111071, view# 19: Primary, number of nodes: 3, my index: 2, protocol version 2
- 130528 10:05:05 [Warning] WSREP: Gap in state sequence. Need state transfer.
- 130528 10:05:07 [Note] WSREP: killing local connection: 145800
- 130528 10:05:07 [Note] WSREP: killing local connection: 145721
- 130528 10:05:07 [Note] WSREP: killing local connection: 145716
- 130528 10:05:07 [Note] WSREP: You have configured 'rsync' state snapshot transfer method which cannot be performed on a running server. Wsrep provider won't be able TO fall back TO it IF other means OF state transfer are unavailable. IN that CASE you will need TO restart the server.
- 130528 10:05:07 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130528 10:05:07 [Note] WSREP: Assign initial POSITION FOR certification: 111071, protocol version: 2
- 130528 10:05:07 [Note] WSREP: Prepared IST receiver, listening at: tcp://192.168.180.21:4568
- 130528 10:05:07 [Note] WSREP: Node 2 (db-node1.lactalis.pyco.be) requested state transfer FROM '*any*'. Selected 0 (db-node2.lactalis.pyco.be)(SYNCED) AS donor.
- 130528 10:05:07 [Note] WSREP: Shifting PRIMARY -> JOINER (TO: 111112)
- 130528 10:05:07 [Note] WSREP: Requesting state transfer: success, donor: 0
- 130528 10:05:07 [Note] WSREP: GCache DEBUG: RingBuffer::seqno_reset(): discarded 28450376 bytes
- 130528 10:05:07 [Note] WSREP: GCache DEBUG: RingBuffer::seqno_reset(): found 0/41 locked buffers
- 130528 10:05:07 [Note] WSREP: Receiving IST: 909 writesets, seqnos 110162-111071
- 130528 10:05:08 [Note] WSREP: IST received: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111071
- 130528 10:05:08 [Note] WSREP: 2 (db-node1.lactalis.pyco.be): State transfer FROM 0 (db-node2.lactalis.pyco.be) complete.
- 130528 10:05:08 [Note] WSREP: Shifting JOINER -> JOINED (TO: 111118)
- 130528 10:05:08 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer TO 2 (db-node1.lactalis.pyco.be) complete.
- 130528 10:05:08 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced WITH GROUP.
- 130528 10:05:08 [Note] WSREP: Member 2 (db-node1.lactalis.pyco.be) synced WITH GROUP.
- 130528 10:05:08 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 111118)
- 130528 10:05:08 [Note] WSREP: Synchronized WITH GROUP, ready FOR connections
- 130528 10:05:08 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130528 10:05:20 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567 tcp://192.168.180.23:4567
- 130528 10:05:20 [Warning] WSREP: LAST inactive CHECK more than PT1.5S ago, skipping CHECK
- 130528 10:05:21 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,45)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:05:21 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,45)) suspecting node: 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d
- 130528 10:05:21 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:05:21 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:05:21 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:05:22 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting ON, nonlive peers: tcp://192.168.180.22:4567 tcp://192.168.180.23:4567
- 130528 10:05:22 [Note] WSREP: VIEW(view_id(NON_PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,45) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- })
- 130528 10:05:22 [Note] WSREP: VIEW(view_id(NON_PRIM,f0fda968-c6c2-11e2-0800-b7c68555b5b9,46) memb {
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- })
- 130528 10:05:22 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130528 10:05:22 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130528 10:05:22 [Note] WSREP: Received NON-PRIMARY.
- 130528 10:05:22 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 111145)
- 130528 10:05:22 [Note] WSREP: NEW COMPONENT: PRIMARY = no, bootstrap = no, my_idx = 0, memb_num = 1
- 130528 10:05:22 [Note] WSREP: Flow-control INTERVAL: [16, 16]
- 130528 10:05:22 [Note] WSREP: Received NON-PRIMARY.
- 130528 10:05:22 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111145, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130528 10:05:22 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130528 10:05:22 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111145, VIEW# -1: non-PRIMARY, NUMBER OF nodes: 1, my INDEX: 0, protocol version 2
- 130528 10:05:22 [Note] WSREP: wsrep_notify_cmd IS NOT defined, skipping notification.
- 130528 10:05:23 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:05:23 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:05:24 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:05:24 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:05:26 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:05:26 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:05:27 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:05:27 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting TO 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d (tcp://192.168.180.23:4567), attempt 0
- 130528 10:05:27 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:05:27 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130528 10:05:27 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:05:27 [Note] WSREP: VIEW(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,47) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } LEFT {
- } partitioned {
- })
- 130528 10:05:27 [Note] WSREP: NEW COMPONENT: PRIMARY = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130528 10:05:27 [Note] WSREP: STATE EXCHANGE: Waiting FOR state UUID.
- 130528 10:05:27 [Note] WSREP: STATE EXCHANGE: sent state msg: 5c23eb85-c76d-11e2-0800-0c7b619e8d87
- 130528 10:05:27 [Note] WSREP: STATE EXCHANGE: got state msg: 5c23eb85-c76d-11e2-0800-0c7b619e8d87 FROM 0 (db-node2.lactalis.pyco.be)
- 130528 10:05:27 [Note] WSREP: STATE EXCHANGE: got state msg: 5c23eb85-c76d-11e2-0800-0c7b619e8d87 FROM 1 (db-node3.lactalis.pyco.be)
- 130528 10:05:27 [Note] WSREP: STATE EXCHANGE: got state msg: 5c23eb85-c76d-11e2-0800-0c7b619e8d87 FROM 2 (db-node1.lactalis.pyco.be)
- 130528 10:05:27 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 20,
- members = 2/3 (joined/total),
- act_id = 111175,
- last_appl. = 109999,
- protocols = 0/4/2 (gcs/repl/appl),
- GROUP UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:05:27 [Note] WSREP: Flow-control INTERVAL: [28, 28]
- 130528 10:05:27 [Note] WSREP: Shifting OPEN -> PRIMARY (TO: 111175)
- 130528 10:05:27 [Note] WSREP: State transfer required:
- GROUP state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111175
- LOCAL state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111145
- 130528 10:05:27 [Note] WSREP: NEW cluster VIEW: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111175, VIEW# 21: PRIMARY, NUMBER OF nodes: 3, my INDEX: 2, protocol version 2
- 130528 10:05:27 [Warning] WSREP: Gap IN state SEQUENCE. Need state transfer.
- 130528 10:05:29 [Note] WSREP: killing LOCAL connection: 145814
- 130528 10:05:29 [Note] WSREP: killing LOCAL connection: 145811
- 130528 10:05:29 [Note] WSREP: You have configured 'rsync' state snapshot transfer method which cannot be performed ON a running server. Wsrep provider won't be able to fall back to it if other means of state transfer are unavailable. In that case you will need to restart the server.
- 130528 10:05:29 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:05:29 [Note] WSREP: Assign initial position for certification: 111175, protocol version: 2
- 130528 10:05:29 [Note] WSREP: Prepared IST receiver, listening at: tcp://192.168.180.21:4568
- 130528 10:05:29 [Note] WSREP: Node 2 (db-node1.lactalis.pyco.be) requested state transfer from '*any*'. Selected 0 (db-node2.lactalis.pyco.be)(SYNCED) as donor.
- 130528 10:05:29 [Note] WSREP: Shifting PRIMARY -> JOINER (TO: 111205)
- 130528 10:05:29 [Note] WSREP: Requesting state transfer: success, donor: 0
- 130528 10:05:29 [Note] WSREP: GCache DEBUG: RingBuffer::seqno_reset(): discarded 82498 bytes
- 130528 10:05:29 [Note] WSREP: GCache DEBUG: RingBuffer::seqno_reset(): found 0/30 locked buffers
- 130528 10:05:29 [Note] WSREP: Receiving IST: 30 writesets, seqnos 111145-111175
- 130528 10:05:30 [Note] WSREP: IST received: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:111175
- 130528 10:05:30 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer to 2 (db-node1.lactalis.pyco.be) complete.
- 130528 10:05:30 [Note] WSREP: 2 (db-node1.lactalis.pyco.be): State transfer from 0 (db-node2.lactalis.pyco.be) complete.
- 130528 10:05:30 [Note] WSREP: Shifting JOINER -> JOINED (TO: 111205)
- 130528 10:05:30 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced with group.
- 130528 10:05:30 [Note] WSREP: Member 2 (db-node1.lactalis.pyco.be) synced with group.
- 130528 10:05:30 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 111205)
- 130528 10:05:30 [Note] WSREP: Synchronized with group, ready for connections
- 130528 10:05:30 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:06:08 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.22:4567
- 130528 10:06:09 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting to 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:06:09 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:54:14 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.22:4567
- 130528 10:54:16 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting to 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:54:17 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,47)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:54:17 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,47)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:54:18 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:54:18 [Note] WSREP: view(view_id(PRIM,7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,48) memb {
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- })
- 130528 10:54:18 [Note] WSREP: forgetting 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:54:18 [Note] WSREP: deleting entry tcp://192.168.180.22:4567
- 130528 10:54:18 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130528 10:54:18 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:54:18 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:54:18 [Note] WSREP: STATE EXCHANGE: sent state msg: 2efee6fe-c774-11e2-0800-6e79d9849520
- 130528 10:54:18 [Note] WSREP: STATE EXCHANGE: got state msg: 2efee6fe-c774-11e2-0800-6e79d9849520 from 0 (db-node3.lactalis.pyco.be)
- 130528 10:54:18 [Note] WSREP: STATE EXCHANGE: got state msg: 2efee6fe-c774-11e2-0800-6e79d9849520 from 1 (db-node1.lactalis.pyco.be)
- 130528 10:54:18 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 21,
- members = 2/2 (joined/total),
- act_id = 147883,
- last_appl. = 146975,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:54:18 [Note] WSREP: Flow-control interval: [23, 23]
- 130528 10:54:18 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:147883, view# 22: Primary, number of nodes: 2, my index: 1, protocol version 2
- 130528 10:54:18 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:54:18 [Note] WSREP: Assign initial position for certification: 147883, protocol version: 2
- 130528 10:54:18 [Warning] WSREP: last seen seqno below limit for trx source: 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d version: 2 local: 0 state: CERTIFYING flags: 1 conn_id: 97536 trx_id: 2986364 seqnos (l: 150161, g: 147884, s: 147881, d: -1, ts: 1369731257984805571)
- 130528 10:54:24 [Note] WSREP: cleaning up 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:54:59 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130528 10:54:59 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:54:59 [Note] WSREP: view(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,49) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- })
- 130528 10:54:59 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130528 10:54:59 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:54:59 [Note] WSREP: STATE EXCHANGE: sent state msg: 473b1d34-c774-11e2-0800-946d915f436f
- 130528 10:54:59 [Note] WSREP: STATE EXCHANGE: got state msg: 473b1d34-c774-11e2-0800-946d915f436f from 0 (db-node2.lactalis.pyco.be)
- 130528 10:54:59 [Note] WSREP: STATE EXCHANGE: got state msg: 473b1d34-c774-11e2-0800-946d915f436f from 1 (db-node3.lactalis.pyco.be)
- 130528 10:54:59 [Note] WSREP: STATE EXCHANGE: got state msg: 473b1d34-c774-11e2-0800-946d915f436f from 2 (db-node1.lactalis.pyco.be)
- 130528 10:54:59 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 22,
- members = 2/3 (joined/total),
- act_id = 148224,
- last_appl. = 148001,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:54:59 [Note] WSREP: Flow-control interval: [28, 28]
- 130528 10:54:59 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:148224, view# 23: Primary, number of nodes: 3, my index: 2, protocol version 2
- 130528 10:54:59 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:54:59 [Note] WSREP: Assign initial position for certification: 148224, protocol version: 2
- 130528 10:55:01 [Note] WSREP: Node 0 (db-node2.lactalis.pyco.be) requested state transfer from '*any*'. Selected 1 (db-node3.lactalis.pyco.be)(SYNCED) as donor.
- 130528 10:55:02 [Note] WSREP: 1 (db-node3.lactalis.pyco.be): State transfer to 0 (db-node2.lactalis.pyco.be) complete.
- 130528 10:55:02 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer from 1 (db-node3.lactalis.pyco.be) complete.
- 130528 10:55:02 [Note] WSREP: Member 1 (db-node3.lactalis.pyco.be) synced with group.
- 130528 10:55:02 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced with group.
- 130528 10:56:28 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.22:4567
- 130528 10:56:30 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting to 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:56:30 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,49)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:56:31 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,49)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:56:31 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,49)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:56:31 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:56:31 [Note] WSREP: view(view_id(PRIM,7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,50) memb {
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- })
- 130528 10:56:31 [Note] WSREP: forgetting 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:56:31 [Note] WSREP: deleting entry tcp://192.168.180.22:4567
- 130528 10:56:31 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130528 10:56:31 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:56:31 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:56:31 [Note] WSREP: STATE EXCHANGE: sent state msg: 7e4c108c-c774-11e2-0800-1cf88820f00b
- 130528 10:56:31 [Note] WSREP: STATE EXCHANGE: got state msg: 7e4c108c-c774-11e2-0800-1cf88820f00b from 0 (db-node3.lactalis.pyco.be)
- 130528 10:56:31 [Note] WSREP: STATE EXCHANGE: got state msg: 7e4c108c-c774-11e2-0800-1cf88820f00b from 1 (db-node1.lactalis.pyco.be)
- 130528 10:56:31 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 23,
- members = 2/2 (joined/total),
- act_id = 149049,
- last_appl. = 148997,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:56:31 [Note] WSREP: Flow-control interval: [23, 23]
- 130528 10:56:31 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:149049, view# 24: Primary, number of nodes: 2, my index: 1, protocol version 2
- 130528 10:56:31 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:56:31 [Note] WSREP: Assign initial position for certification: 149049, protocol version: 2
- 130528 10:56:31 [Warning] WSREP: last seen seqno below limit for trx source: 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d version: 2 local: 0 state: CERTIFYING flags: 1 conn_id: 97773 trx_id: 3037647 seqnos (l: 151334, g: 149050, s: 149044, d: -1, ts: 1369731392269463636)
- 130528 10:56:31 [Warning] WSREP: last seen seqno below limit for trx source: f0fda968-c6c2-11e2-0800-b7c68555b5b9 version: 2 local: 1 state: CERTIFYING flags: 1 conn_id: 150643 trx_id: 4659834 seqnos (l: 151336, g: 149052, s: 149044, d: -1, ts: 1369731391137154008)
- 130528 10:56:37 [Note] WSREP: cleaning up 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:57:11 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130528 10:57:11 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:57:11 [Note] WSREP: view(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,51) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- })
- 130528 10:57:11 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130528 10:57:11 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:57:11 [Note] WSREP: STATE EXCHANGE: sent state msg: 96010537-c774-11e2-0800-0846eadc485b
- 130528 10:57:11 [Note] WSREP: STATE EXCHANGE: got state msg: 96010537-c774-11e2-0800-0846eadc485b from 0 (db-node2.lactalis.pyco.be)
- 130528 10:57:11 [Note] WSREP: STATE EXCHANGE: got state msg: 96010537-c774-11e2-0800-0846eadc485b from 1 (db-node3.lactalis.pyco.be)
- 130528 10:57:11 [Note] WSREP: STATE EXCHANGE: got state msg: 96010537-c774-11e2-0800-0846eadc485b from 2 (db-node1.lactalis.pyco.be)
- 130528 10:57:11 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 24,
- members = 2/3 (joined/total),
- act_id = 149440,
- last_appl. = 148997,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:57:11 [Note] WSREP: Flow-control interval: [28, 28]
- 130528 10:57:11 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:149440, view# 25: Primary, number of nodes: 3, my index: 2, protocol version 2
- 130528 10:57:11 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:57:11 [Note] WSREP: Assign initial position for certification: 149440, protocol version: 2
- 130528 10:57:13 [Note] WSREP: Node 0 (db-node2.lactalis.pyco.be) requested state transfer from '*any*'. Selected 1 (db-node3.lactalis.pyco.be)(SYNCED) as donor.
- 130528 10:57:13 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer from 1 (db-node3.lactalis.pyco.be) complete.
- 130528 10:57:13 [Note] WSREP: 1 (db-node3.lactalis.pyco.be): State transfer to 0 (db-node2.lactalis.pyco.be) complete.
- 130528 10:57:13 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced with group.
- 130528 10:57:13 [Note] WSREP: Member 1 (db-node3.lactalis.pyco.be) synced with group.
- 130528 10:57:31 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.22:4567
- 130528 10:57:32 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') reconnecting to 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567), attempt 0
- 130528 10:57:34 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, OPERATIONAL, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,51)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:57:34 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,51)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:57:35 [Note] WSREP: evs::proto(f0fda968-c6c2-11e2-0800-b7c68555b5b9, GATHER, view_id(REG,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,51)) suspecting node: 1aa38e5e-c6c6-11e2-0800-0b6442457f5d
- 130528 10:57:35 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:57:35 [Note] WSREP: view(view_id(PRIM,7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,52) memb {
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- })
- 130528 10:57:35 [Note] WSREP: forgetting 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:57:35 [Note] WSREP: deleting entry tcp://192.168.180.22:4567
- 130528 10:57:35 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2
- 130528 10:57:35 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 10:57:35 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:57:35 [Note] WSREP: STATE EXCHANGE: sent state msg: a3edd957-c774-11e2-0800-03998f53838c
- 130528 10:57:35 [Note] WSREP: STATE EXCHANGE: got state msg: a3edd957-c774-11e2-0800-03998f53838c from 0 (db-node3.lactalis.pyco.be)
- 130528 10:57:35 [Note] WSREP: STATE EXCHANGE: got state msg: a3edd957-c774-11e2-0800-03998f53838c from 1 (db-node1.lactalis.pyco.be)
- 130528 10:57:35 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 25,
- members = 2/2 (joined/total),
- act_id = 149580,
- last_appl. = 148997,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:57:35 [Note] WSREP: Flow-control interval: [23, 23]
- 130528 10:57:35 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:149580, view# 26: Primary, number of nodes: 2, my index: 1, protocol version 2
- 130528 10:57:35 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:57:35 [Note] WSREP: Assign initial position for certification: 149580, protocol version: 2
- 130528 10:57:36 [Warning] WSREP: discarding established (time wait) 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:57:38 [Warning] WSREP: discarding established (time wait) 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:57:39 [Warning] WSREP: discarding established (time wait) 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:57:40 [Note] WSREP: cleaning up 1aa38e5e-c6c6-11e2-0800-0b6442457f5d (tcp://192.168.180.22:4567)
- 130528 10:57:41 [Note] WSREP: declaring 1aa38e5e-c6c6-11e2-0800-0b6442457f5d stable
- 130528 10:57:41 [Note] WSREP: declaring 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d stable
- 130528 10:57:41 [Note] WSREP: view(view_id(PRIM,1aa38e5e-c6c6-11e2-0800-0b6442457f5d,53) memb {
- 1aa38e5e-c6c6-11e2-0800-0b6442457f5d,
- 7e0e0330-c6e4-11e2-0800-ff5d6d661a8d,
- f0fda968-c6c2-11e2-0800-b7c68555b5b9,
- } joined {
- } left {
- } partitioned {
- })
- 130528 10:57:41 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3
- 130528 10:57:41 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID.
- 130528 10:57:41 [Note] WSREP: STATE EXCHANGE: sent state msg: a798abc2-c774-11e2-0800-a9cf0c8c056b
- 130528 10:57:41 [Note] WSREP: STATE EXCHANGE: got state msg: a798abc2-c774-11e2-0800-a9cf0c8c056b from 0 (db-node2.lactalis.pyco.be)
- 130528 10:57:41 [Note] WSREP: STATE EXCHANGE: got state msg: a798abc2-c774-11e2-0800-a9cf0c8c056b from 2 (db-node1.lactalis.pyco.be)
- 130528 10:57:41 [Note] WSREP: STATE EXCHANGE: got state msg: a798abc2-c774-11e2-0800-a9cf0c8c056b from 1 (db-node3.lactalis.pyco.be)
- 130528 10:57:41 [Note] WSREP: Quorum results:
- version = 2,
- component = PRIMARY,
- conf_id = 26,
- members = 2/3 (joined/total),
- act_id = 149617,
- last_appl. = 148997,
- protocols = 0/4/2 (gcs/repl/appl),
- group UUID = f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a
- 130528 10:57:41 [Note] WSREP: Flow-control interval: [28, 28]
- 130528 10:57:41 [Note] WSREP: New cluster view: global state: f0fe6b94-c6c2-11e2-0800-0c60b3fcd81a:149617, view# 27: Primary, number of nodes: 3, my index: 2, protocol version 2
- 130528 10:57:41 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification.
- 130528 10:57:41 [Note] WSREP: Assign initial position for certification: 149617, protocol version: 2
- 130528 10:57:43 [Note] WSREP: Node 0 (db-node2.lactalis.pyco.be) requested state transfer from '*any*'. Selected 1 (db-node3.lactalis.pyco.be)(SYNCED) as donor.
- 130528 10:57:43 [Note] WSREP: 0 (db-node2.lactalis.pyco.be): State transfer from 1 (db-node3.lactalis.pyco.be) complete.
- 130528 10:57:43 [Note] WSREP: 1 (db-node3.lactalis.pyco.be): State transfer to 0 (db-node2.lactalis.pyco.be) complete.
- 130528 10:57:43 [Note] WSREP: Member 0 (db-node2.lactalis.pyco.be) synced with group.
- 130528 10:57:43 [Note] WSREP: Member 1 (db-node3.lactalis.pyco.be) synced with group.
- 130528 10:58:26 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130528 10:58:27 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
- 130528 11:47:36 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://192.168.180.23:4567
- 130528 11:47:37 [Note] WSREP: (f0fda968-c6c2-11e2-0800-b7c68555b5b9, 'tcp://0.0.0.0:4567') turning message relay requesting off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement