-- rm -rf 97754_Donor/ bin/mysqld --initialize-insecure --basedir=$PWD --datadir=$PWD/97754_Donor --log-error-verbosity=3 bin/mysqld_safe --no-defaults --basedir=$PWD --datadir=$PWD/97754_Donor --core-file --socket=/tmp/mysql_Donor.sock --port=3333 --log-error=$PWD/97754_Donor/log.err --mysqlx-port=33330 --mysqlx-socket=/tmp/mysql_x_ushastry.sock --log-error-verbosity=3 --secure-file-priv=/tmp/ --slow-query-log=ON --log-bin --server-id=1 --innodb_flush_method=O_DIRECT 2>&1 & - Recipient setup rm -rf 97754_Recipient/ bin/mysqld --initialize-insecure --basedir=$PWD --datadir=$PWD/97754_Recipient --log-error-verbosity=3 bin/mysqld_safe --no-defaults --basedir=$PWD --datadir=$PWD/97754_Recipient --core-file --socket=/tmp/mysql_Recipient.sock --port=6666 --log-error=$PWD/97754_Recipient/log.err --mysqlx-port=33360 --mysqlx-socket=/tmp/mysql_x_Recipient.sock --log-error-verbosity=3 --secure-file-priv=/tmp/ --slow-query-log=ON --log-bin --server-id=2 --innodb_flush_method=O_DIRECT 2>&1 & -- Donor bin/mysql -uroot -S /tmp/mysql_Donor.sock --prompt='Donor>' Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 8.0.17 MySQL Community Server - GPL Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. Donor>system cat docs/INFO_SRC commit: a5b2e523c881ab8c68fd0adb478a6232dd69e522 date: 2019-06-25 11:50:40 +0200 build-date: 2019-06-25 12:24:04 +0200 short: a5b2e52 branch: mysql-8.0.17-release MySQL source 8.0.17 Donor>select @@global.innodb_flush_method; +------------------------------+ | @@global.innodb_flush_method | +------------------------------+ | O_DIRECT | +------------------------------+ 1 row in set (0.00 sec) Donor>create database if not exists test; Query OK, 1 row affected (0.03 sec) Donor>use test; Database changed Donor>drop table if exists keyvalue; CREATE TABLE `keyvalue` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100), `name1` varchar(100), `name2` varchar(100), `name3` varchar(100), `name4` varchar(100), `name5` varchar(100), PRIMARY KEY (`id`) ) PARTITION BY RANGE (id) ( PARTITION p0 VALUES LESS THAN (500000), PARTITION p6 VALUES LESS THAN (3500000), PARTITION p13 VALUES LESS THAN (7500000), PARTITION p14 VALUES LESS THAN (9000000), PARTITION p15 VALUES LESS THAN (10000000), PARTITION p16 VALUES LESS THAN MAXVALUE ); set @id:=0; insert into `keyvalue` values (@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)),(@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)),(@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)),(@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)); insert into `keyvalue`(`id`,`name`,`name1`,`name2`,`name3`,`name4`,`name5`) select @id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000) from `keyvalue` k1, `keyvalue` k2, `keyvalue` k3, `keyvalue` k4,`keyvalue` k5,`keyvalue` k6, `keyvalue` k7, `keyvalue` k8, `keyvalue` k9,`keyvalue` k0,`keyvalue` ka, `keyvalue` kb, `keyvalue` kc, `keyvalue` kd limit 1000000; Query OK, 0 rows affected, 1 warning (0.01 sec) Donor>CREATE TABLE `keyvalue` ( -> `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, -> `name` varchar(100), -> `name1` varchar(100), -> `name2` varchar(100), -> `name3` varchar(100), -> `name4` varchar(100), -> `name5` varchar(100), -> PRIMARY KEY (`id`) -> ) PARTITION BY RANGE (id) ( -> PARTITION p0 VALUES LESS THAN (500000), -> PARTITION p6 VALUES LESS THAN (3500000), -> PARTITION p13 VALUES LESS THAN (7500000), -> PARTITION p14 VALUES LESS THAN (9000000), -> PARTITION p15 VALUES LESS THAN (10000000), -> PARTITION p16 VALUES LESS THAN MAXVALUE -> ); Query OK, 0 rows affected, 1 warning (0.09 sec) Donor> Donor>set @id:=0; Query OK, 0 rows affected (0.00 sec) Donor>insert into `keyvalue` values (@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)),(@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)),(@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)),(@id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000)); Query OK, 4 rows affected, 4 warnings (0.01 sec) Records: 4 Duplicates: 0 Warnings: 4 Donor>insert into `keyvalue`(`id`,`name`,`name1`,`name2`,`name3`,`name4`,`name5`) select @id:=@id+1,md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000),md5(rand()*1000000) from `keyvalue` k1, `keyvalue` k2, `keyvalue` k3, `keyvalue` k4,`keyvalue` k5,`keyvalue` k6, `keyvalue` k7, `keyvalue` k8, `keyvalue` k9,`keyvalue` k0,`keyvalue` ka, `keyvalue` kb, `keyvalue` kc, `keyvalue` kd limit 1000000; Query OK, 1000000 rows affected, 1 warning (31.22 sec) Records: 1000000 Duplicates: 0 Warnings: 1 Donor> Donor>INSTALL PLUGIN CLONE SONAME "mysql_clone.so"; SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE PLUGIN_NAME LIKE 'clone'; create user 'mydbops_clone_user'@'%' identified by 'Mydbops@8017'; grant backup_admin on *.* to 'mydbops_clone_user'@'%';Query OK, 0 rows affected (0.36 sec) Donor>SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE PLUGIN_NAME LIKE 'clone'; +-------------+---------------+ | PLUGIN_NAME | PLUGIN_STATUS | +-------------+---------------+ | clone | ACTIVE | +-------------+---------------+ 1 row in set (0.03 sec) Donor>create user 'mydbops_clone_user'@'%' identified by 'Mydbops@8017'; Query OK, 0 rows affected (0.03 sec) Donor>grant backup_admin on *.* to 'mydbops_clone_user'@'%'; Query OK, 0 rows affected (0.01 sec) Donor> -- recipient bin/mysql -uroot -S /tmp/mysql_Recipient.sock --prompt='Recipient>' Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 8.0.17 MySQL Community Server - GPL Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. Recipient>system cat docs/INFO_SRC commit: a5b2e523c881ab8c68fd0adb478a6232dd69e522 date: 2019-06-25 11:50:40 +0200 build-date: 2019-06-25 12:24:04 +0200 short: a5b2e52 branch: mysql-8.0.17-release MySQL source 8.0.17 Recipient> Recipient>select @@global.innodb_flush_method; +------------------------------+ | @@global.innodb_flush_method | +------------------------------+ | O_DIRECT | +------------------------------+ 1 row in set (0.01 sec) Recipient>INSTALL PLUGIN CLONE SONAME "mysql_clone.so"; Query OK, 0 rows affected (0.03 sec) Recipient>SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE PLUGIN_NAME LIKE 'clone'; +-------------+---------------+ | PLUGIN_NAME | PLUGIN_STATUS | +-------------+---------------+ | clone | ACTIVE | +-------------+---------------+ 1 row in set (0.00 sec) Recipient>create user 'mydbops_clone_user'@'%' identified by 'Mydbops@8017'; Query OK, 0 rows affected (0.01 sec) Recipient>GRANT CLONE_ADMIN ON *.* TO `mydbops_clone_user`@`%`; Query OK, 0 rows affected (0.00 sec) Recipient>GRANT ALL ON *.* TO `mydbops_clone_user`@`%`; Query OK, 0 rows affected (0.00 sec) Recipient>SET GLOBAL clone_valid_donor_list = 'hod03.no.oracle.com:3333'; Query OK, 0 rows affected (0.00 sec) Recipient>clone instance from mydbops_clone_user@'hod03.no.oracle.com':3333 identified by 'Mydbops@8017'; Recipient>Restarting mysqld... 2019-11-24T08:20:58.230194Z mysqld_safe Number of processes running now: 0 2019-11-24T08:20:58.234594Z mysqld_safe mysqld restarted Recipient>\s ERROR 2006 (HY000): MySQL server has gone away No connection. Trying to reconnect... Connection id: 7 Current database: *** NONE *** -------------- bin/mysql Ver 8.0.17 for linux-glibc2.12 on x86_64 (MySQL Community Server - GPL) Connection id: 7 Current database: Current user: root@localhost SSL: Not in use Current pager: more Using outfile: '' Using delimiter: ; Server version: 8.0.17 MySQL Community Server - GPL Protocol version: 10 Connection: Localhost via UNIX socket Server characterset: utf8mb4 Db characterset: utf8mb4 Client characterset: utf8mb4 Conn. characterset: utf8mb4 UNIX socket: /tmp/mysql_Recipient.sock Uptime: 10 sec Threads: 2 Questions: 17 Slow queries: 0 Opens: 132 Flush tables: 3 Open tables: 35 Queries per second avg: 1.700 -------------- Recipient>use test Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed Recipient>show tables; +----------------+ | Tables_in_test | +----------------+ | keyvalue | +----------------+ 1 row in set (0.00 sec) Recipient>system cat 97754_Recipient/log.err 2019-11-24T08:16:16.797628Z mysqld_safe Logging to '/export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/log.err'. 2019-11-24T08:16:16.828650Z mysqld_safe Starting mysqld daemon with databases from /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient 2019-11-24T08:16:17.202513Z 0 [Warning] [MY-010101] [Server] Insecure configuration for --secure-file-priv: Location is accessible to all OS users. Consider choosing a different directory. 2019-11-24T08:16:17.202556Z 0 [Note] [MY-010949] [Server] Basedir set to /export/umesh/server/binaries/GABuilds/mysql-8.0.17/. 2019-11-24T08:16:17.202572Z 0 [System] [MY-010116] [Server] /export/umesh/server/binaries/GABuilds/mysql-8.0.17/bin/mysqld (mysqld 8.0.17) starting as process 25648 2019-11-24T08:16:17.205115Z 0 [Note] [MY-010163] [Server] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=hod03-bin' to avoid this problem. 2019-11-24T08:16:17.209939Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO 2019-11-24T08:16:17.210251Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. 2019-11-24T08:16:17.212802Z 1 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available 2019-11-24T08:16:17.212834Z 1 [Note] [MY-012943] [InnoDB] Mutexes and rw_locks use GCC atomic builtins 2019-11-24T08:16:17.212851Z 1 [Note] [MY-012944] [InnoDB] Uses event mutexes 2019-11-24T08:16:17.212862Z 1 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier 2019-11-24T08:16:17.212886Z 1 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 2019-11-24T08:16:17.213192Z 1 [Note] [MY-013251] [InnoDB] Number of pools: 1 2019-11-24T08:16:17.213347Z 1 [Note] [MY-012951] [InnoDB] Using CPU crc32 instructions 2019-11-24T08:16:17.213980Z 1 [Note] [MY-012203] [InnoDB] Directories to scan './;./;./' 2019-11-24T08:16:17.214058Z 1 [Note] [MY-012204] [InnoDB] Scanning './' 2019-11-24T08:16:17.215052Z 1 [Note] [MY-012208] [InnoDB] Completed space ID check of 4 files. 2019-11-24T08:16:17.216451Z 1 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 128.000000M, instances = 1, chunk size =128.000000M 2019-11-24T08:16:17.225522Z 1 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool 2019-11-24T08:16:17.226999Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). 2019-11-24T08:16:17.309404Z 1 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 19353161, whereas checkpoint_lsn = 19353225 2019-11-24T08:16:17.311036Z 1 [Note] [MY-013083] [InnoDB] Log background threads are being started... 2019-11-24T08:16:17.311340Z 1 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... 2019-11-24T08:16:17.311355Z 1 [Note] [MY-012535] [InnoDB] Apply batch completed! 2019-11-24T08:16:17.311664Z 1 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. 2019-11-24T08:16:17.313813Z 1 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. 2019-11-24T08:16:17.319402Z 1 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. 2019-11-24T08:16:17.319429Z 1 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 1235 2019-11-24T08:16:17.361405Z 1 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables 2019-11-24T08:16:17.361499Z 1 [Note] [MY-012265] [InnoDB] Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... 2019-11-24T08:16:17.369502Z 1 [Note] [MY-012266] [InnoDB] File './ibtmp1' size is now 12 MB. 2019-11-24T08:16:17.369639Z 1 [Note] [MY-011825] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' 2019-11-24T08:16:17.402610Z 1 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. 2019-11-24T08:16:17.403092Z 1 [Note] [MY-012976] [InnoDB] 8.0.17 started; log sequence number 19353225 2019-11-24T08:16:17.418495Z 1 [Note] [MY-011089] [Server] Data dictionary restarting version '80017'. 2019-11-24T08:16:17.533049Z 1 [Note] [MY-012357] [InnoDB] Reading DD tablespace files 2019-11-24T08:16:17.534114Z 1 [Note] [MY-012356] [InnoDB] Validated 6/6 tablespaces 2019-11-24T08:16:17.534549Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/ib_buffer_pool 2019-11-24T08:16:17.536517Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 191124 9:16:17 2019-11-24T08:16:17.553183Z 1 [Note] [MY-010006] [Server] Using data dictionary with version '80017'. 2019-11-24T08:16:17.650260Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. 2019-11-24T08:16:17.669151Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin 2019-11-24T08:16:17.669327Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end 2019-11-24T08:16:17.675017Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start 2019-11-24T08:16:17.727212Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. 2019-11-24T08:16:17.727231Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. 2019-11-24T08:16:17.728375Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. 2019-11-24T08:16:17.728419Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. 2019-11-24T08:16:17.728432Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. 2019-11-24T08:16:17.728641Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '*'; port: 6666 2019-11-24T08:16:17.728695Z 0 [Note] [MY-010253] [Server] IPv6 is available. 2019-11-24T08:16:17.728722Z 0 [Note] [MY-010264] [Server] - '::' resolves to '::'; 2019-11-24T08:16:17.728761Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '::'. 2019-11-24T08:16:17.765173Z 0 [Note] [MY-011025] [Repl] Failed to start slave threads for channel ''. 2019-11-24T08:16:17.767446Z 4 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 4 2019-11-24T08:16:17.767980Z 0 [System] [MY-010931] [Server] /export/umesh/server/binaries/GABuilds/mysql-8.0.17/bin/mysqld: ready for connections. Version: '8.0.17' socket: '/tmp/mysql_Recipient.sock' port: 6666 MySQL Community Server - GPL. 2019-11-24T08:16:17.808688Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' 2019-11-24T08:16:17.809258Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' 2019-11-24T08:16:17.809333Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' 2019-11-24T08:16:17.818576Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33360' 2019-11-24T08:16:17.818607Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/tmp/mysql_x_Recipient.sock'' 2019-11-24T08:16:17.818624Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Socket: '/tmp/mysql_x_Recipient.sock' bind-address: '::' port: 33360 2019-11-24T08:20:50.652668Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Task Connect.' 2019-11-24T08:20:50.704856Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Master ACK Connect.' 2019-11-24T08:20:50.704915Z 7 [Note] [MY-013457] [InnoDB] Clone Apply Begin Master Version Check 2019-11-24T08:20:50.716346Z 7 [Note] [MY-013457] [InnoDB] Clone Apply Version End Master Task ID: 0 Passed, code: 0: 2019-11-24T08:20:50.716379Z 7 [Note] [MY-013457] [InnoDB] Clone Apply Begin Master Task 2019-11-24T08:20:50.717628Z 7 [Warning] [MY-013460] [InnoDB] Clone removing all user data for provisioning: Started 2019-11-24T08:20:50.717644Z 7 [Note] [MY-011977] [InnoDB] Clone Drop all user data 2019-11-24T08:20:50.873387Z 7 [Note] [MY-011977] [InnoDB] Clone: Fix Object count: 171 task: 0 2019-11-24T08:20:50.883633Z 7 [Note] [MY-011977] [InnoDB] Clone Drop User schemas 2019-11-24T08:20:50.883775Z 7 [Note] [MY-011977] [InnoDB] Clone: Fix Object count: 4 task: 0 2019-11-24T08:20:50.883840Z 7 [Note] [MY-011977] [InnoDB] Clone Drop User tablespaces 2019-11-24T08:20:50.884889Z 7 [Note] [MY-011977] [InnoDB] Clone: Fix Object count: 6 task: 0 2019-11-24T08:20:50.889691Z 7 [Note] [MY-011977] [InnoDB] Clone Drop: finished successfully 2019-11-24T08:20:50.889714Z 7 [Warning] [MY-013460] [InnoDB] Clone removing all user data for provisioning: Finished 2019-11-24T08:20:51.047682Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Command COM_INIT.' 2019-11-24T08:20:51.155393Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State Change : Number of tasks = 1 2019-11-24T08:20:51.155418Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State FILE COPY: 2019-11-24T08:20:51.156270Z 7 [Note] [MY-011978] [InnoDB] Clone estimated size: 425.41 MiB Available space: 4.75 TiB 2019-11-24T08:20:54.012671Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Total Data: 329 MiB @ 115 MiB/sec, Network: 329 MiB @ 115 MiB/sec.' 2019-11-24T08:20:54.112168Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State Change : Number of tasks = 1 2019-11-24T08:20:54.112195Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State PAGE COPY: 2019-11-24T08:20:54.112233Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Total Data: 329 MiB @ 111 MiB/sec, Network: 329 MiB @ 111 MiB/sec.' 2019-11-24T08:20:54.218777Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State Change : Number of tasks = 1 2019-11-24T08:20:54.218801Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State REDO COPY: 2019-11-24T08:20:54.219059Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Total Data: 329 MiB @ 107 MiB/sec, Network: 329 MiB @ 107 MiB/sec.' 2019-11-24T08:20:54.319029Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State Change : Number of tasks = 1 2019-11-24T08:20:54.319050Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State FLUSH DATA: 2019-11-24T08:20:54.319252Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State FLUSH REDO: 2019-11-24T08:20:54.378544Z 7 [Note] [MY-013458] [InnoDB] Clone Apply State DONE 2019-11-24T08:20:54.378584Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Command COM_EXECUTE.' 2019-11-24T08:20:54.378684Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Master ACK COM_EXIT.' 2019-11-24T08:20:54.379070Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Master ACK Disconnect : abort: false.' 2019-11-24T08:20:54.379237Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Task COM_EXIT.' 2019-11-24T08:20:54.379552Z 7 [Note] [MY-013272] [Clone] Plugin Clone reported: 'Client: Task Disconnect : abort: false.' 2019-11-24T08:20:54.379765Z 7 [Note] [MY-013457] [InnoDB] Clone Apply End Master Task ID: 0 Passed, code: 0: 2019-11-24T08:20:55.062383Z 0 [Note] [MY-010067] [Server] Giving 2 client threads a chance to die gracefully 2019-11-24T08:20:55.062421Z 0 [Note] [MY-010117] [Server] Shutting down slave threads 2019-11-24T08:20:55.062434Z 0 [Note] [MY-010054] [Server] Event Scheduler: Killing the scheduler thread, thread id 4 2019-11-24T08:20:55.062443Z 0 [Note] [MY-010050] [Server] Event Scheduler: Waiting for the scheduler thread to reply 2019-11-24T08:20:55.062535Z 0 [Note] [MY-010048] [Server] Event Scheduler: Stopped 2019-11-24T08:20:57.062767Z 0 [Note] [MY-010118] [Server] Forcefully disconnecting 1 remaining clients 2019-11-24T08:20:57.062797Z 0 [Warning] [MY-010909] [Server] /export/umesh/server/binaries/GABuilds/mysql-8.0.17/bin/mysqld: Forcing close of thread 7 user: 'root'. 2019-11-24T08:20:57.062900Z 0 [Note] [MY-010043] [Server] Event Scheduler: Purging the queue. 0 events 2019-11-24T08:20:57.064900Z 0 [Note] [MY-012330] [InnoDB] FTS optimize thread exiting. 2019-11-24T08:20:57.083965Z 0 [Note] [MY-010120] [Server] Binlog end 2019-11-24T08:20:57.084485Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'clone' 2019-11-24T08:20:57.084524Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx_cache_cleaner' 2019-11-24T08:20:57.084535Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx' 2019-11-24T08:20:57.084791Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ngram' 2019-11-24T08:20:57.084803Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'BLACKHOLE' 2019-11-24T08:20:57.084813Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ARCHIVE' 2019-11-24T08:20:57.084818Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'TempTable' 2019-11-24T08:20:57.084823Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'PERFORMANCE_SCHEMA' 2019-11-24T08:20:57.084863Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MRG_MYISAM' 2019-11-24T08:20:57.084869Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MyISAM' 2019-11-24T08:20:57.084882Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_SESSION_TEMP_TABLESPACES' 2019-11-24T08:20:57.084889Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CACHED_INDEXES' 2019-11-24T08:20:57.084899Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_VIRTUAL' 2019-11-24T08:20:57.084904Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_COLUMNS' 2019-11-24T08:20:57.084909Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES' 2019-11-24T08:20:57.084915Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_INDEXES' 2019-11-24T08:20:57.084920Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESTATS' 2019-11-24T08:20:57.084924Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLES' 2019-11-24T08:20:57.084929Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_TABLE' 2019-11-24T08:20:57.084935Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_CACHE' 2019-11-24T08:20:57.084940Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_CONFIG' 2019-11-24T08:20:57.084945Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_BEING_DELETED' 2019-11-24T08:20:57.084950Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DELETED' 2019-11-24T08:20:57.084956Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' 2019-11-24T08:20:57.084961Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_METRICS' 2019-11-24T08:20:57.084966Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' 2019-11-24T08:20:57.084971Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' 2019-11-24T08:20:57.084977Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' 2019-11-24T08:20:57.084982Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE' 2019-11-24T08:20:57.084987Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' 2019-11-24T08:20:57.084992Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX' 2019-11-24T08:20:57.084997Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM_RESET' 2019-11-24T08:20:57.085001Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM' 2019-11-24T08:20:57.085006Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_RESET' 2019-11-24T08:20:57.085012Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP' 2019-11-24T08:20:57.085017Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TRX' 2019-11-24T08:20:57.085022Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'InnoDB' 2019-11-24T08:20:57.085049Z 0 [Note] [MY-013072] [InnoDB] Starting shutdown... 2019-11-24T08:20:57.085110Z 0 [Note] [MY-011944] [InnoDB] Dumping buffer pool(s) to /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/ib_buffer_pool 2019-11-24T08:20:57.085441Z 0 [Note] [MY-011944] [InnoDB] Buffer pool(s) dump completed at 191124 9:20:57 2019-11-24T08:20:57.652667Z 0 [Note] [MY-013084] [InnoDB] Log background threads are being closed... 2019-11-24T08:20:58.167033Z 0 [Note] [MY-012980] [InnoDB] Shutdown completed; log sequence number 19755651 2019-11-24T08:20:58.167397Z 0 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" 2019-11-24T08:20:58.167424Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MEMORY' 2019-11-24T08:20:58.167446Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'CSV' 2019-11-24T08:20:58.167455Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha2_cache_cleaner' 2019-11-24T08:20:58.167463Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'caching_sha2_password' 2019-11-24T08:20:58.167473Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha256_password' 2019-11-24T08:20:58.167479Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysql_native_password' 2019-11-24T08:20:58.168418Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'binlog' 2019-11-24T08:20:58.171676Z 0 [System] [MY-010910] [Server] /export/umesh/server/binaries/GABuilds/mysql-8.0.17/bin/mysqld: Shutdown complete (mysqld 8.0.17) MySQL Community Server - GPL. 2019-11-24T08:20:58.230194Z mysqld_safe Number of processes running now: 0 2019-11-24T08:20:58.234594Z mysqld_safe mysqld restarted 2019-11-24T08:20:58.601588Z 0 [Warning] [MY-010101] [Server] Insecure configuration for --secure-file-priv: Location is accessible to all OS users. Consider choosing a different directory. 2019-11-24T08:20:59.460798Z 4 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 4 2019-11-24T08:20:58.601640Z 0 [Note] [MY-010949] [Server] Basedir set to /export/umesh/server/binaries/GABuilds/mysql-8.0.17/. 2019-11-24T08:20:58.601657Z 0 [System] [MY-010116] [Server] /export/umesh/server/binaries/GABuilds/mysql-8.0.17/bin/mysqld (mysqld 8.0.17) starting as process 26096 2019-11-24T08:20:58.604432Z 0 [Note] [MY-010163] [Server] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=hod03-bin' to avoid this problem. 2019-11-24T08:20:58.609023Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO 2019-11-24T08:20:58.609330Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. 2019-11-24T08:20:58.611834Z 1 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available 2019-11-24T08:20:58.611863Z 1 [Note] [MY-012943] [InnoDB] Mutexes and rw_locks use GCC atomic builtins 2019-11-24T08:20:58.611879Z 1 [Note] [MY-012944] [InnoDB] Uses event mutexes 2019-11-24T08:20:58.611890Z 1 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier 2019-11-24T08:20:58.611912Z 1 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 2019-11-24T08:20:58.612239Z 1 [Note] [MY-013251] [InnoDB] Number of pools: 1 2019-11-24T08:20:58.612431Z 1 [Note] [MY-012951] [InnoDB] Using CPU crc32 instructions 2019-11-24T08:20:58.613148Z 1 [Note] [MY-011976] [InnoDB] Clone Old File Roll Forward: Skipped cloned file ./ib_logfile0 state: 101 2019-11-24T08:20:58.613190Z 1 [Note] [MY-011976] [InnoDB] Clone Old File Roll Forward: Skipped cloned file ./ib_logfile1 state: 101 2019-11-24T08:20:58.613287Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/ib_buffer_pool state: 101 2019-11-24T08:20:58.613329Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/ib_buffer_pool state: 101 2019-11-24T08:20:58.613378Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file ibdata1 state: 101 2019-11-24T08:20:58.613412Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file ibdata1 state: 101 2019-11-24T08:20:58.613469Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file sys/sys_config.ibd state: 101 2019-11-24T08:20:58.613499Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file sys/sys_config.ibd state: 101 2019-11-24T08:20:58.613546Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file mysql.ibd state: 101 2019-11-24T08:20:58.613572Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file mysql.ibd state: 101 2019-11-24T08:20:58.613626Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file ./undo_002 state: 101 2019-11-24T08:20:58.613667Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file ./undo_002 state: 101 2019-11-24T08:20:58.613714Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file ./undo_001 state: 101 2019-11-24T08:20:58.613743Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file ./undo_001 state: 101 2019-11-24T08:20:58.613785Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file ./ib_logfile0 state: 101 2019-11-24T08:20:58.613821Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file ./ib_logfile0 state: 101 2019-11-24T08:20:58.613868Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Save data file ./ib_logfile1 state: 101 2019-11-24T08:20:58.613900Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Rename clone to data file ./ib_logfile1 state: 101 2019-11-24T08:20:58.614101Z 1 [Note] [MY-012203] [InnoDB] Directories to scan './;./;./' 2019-11-24T08:20:58.614181Z 1 [Note] [MY-012204] [InnoDB] Scanning './' 2019-11-24T08:20:58.653553Z 1 [Note] [MY-012208] [InnoDB] Completed space ID check of 10 files. 2019-11-24T08:20:58.654866Z 1 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 128.000000M, instances = 1, chunk size =128.000000M 2019-11-24T08:20:58.663613Z 1 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool 2019-11-24T08:20:58.665052Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). 2019-11-24T08:20:58.777591Z 1 [Note] [MY-012556] [InnoDB] Opening cloned database 2019-11-24T08:20:58.777612Z 1 [Note] [MY-012560] [InnoDB] The log sequence number 19352277 in the system tablespace does not match the log sequence number 300737632 in the ib_logfiles! 2019-11-24T08:20:58.777626Z 1 [Note] [MY-012551] [InnoDB] Database was not shutdown normally! 2019-11-24T08:20:58.777636Z 1 [Note] [MY-012552] [InnoDB] Starting crash recovery. 2019-11-24T08:20:58.777913Z 1 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 300737578, whereas checkpoint_lsn = 300737632 2019-11-24T08:20:58.777930Z 1 [Note] [MY-012550] [InnoDB] Doing recovery: scanned up to log sequence number 300737694 2019-11-24T08:20:58.780263Z 1 [Note] [MY-013083] [InnoDB] Log background threads are being started... 2019-11-24T08:20:58.780527Z 1 [Note] [MY-012532] [InnoDB] Applying a batch of 1 redo log records ... 2019-11-24T08:20:58.780813Z 1 [Note] [MY-012533] [InnoDB] 100% 2019-11-24T08:20:58.781432Z 1 [Note] [MY-012535] [InnoDB] Apply batch completed! 2019-11-24T08:20:58.882659Z 1 [Note] [MY-013084] [InnoDB] Log background threads are being closed... 2019-11-24T08:20:58.883176Z 1 [Note] [MY-013083] [InnoDB] Log background threads are being started... 2019-11-24T08:20:58.883450Z 1 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. 2019-11-24T08:20:58.883901Z 1 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. 2019-11-24T08:20:58.887343Z 1 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. 2019-11-24T08:20:58.887368Z 1 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 1605 2019-11-24T08:20:58.928357Z 1 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables 2019-11-24T08:20:58.928443Z 1 [Note] [MY-012265] [InnoDB] Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... 2019-11-24T08:20:58.938369Z 1 [Note] [MY-012266] [InnoDB] File './ibtmp1' size is now 12 MB. 2019-11-24T08:20:58.938506Z 1 [Note] [MY-011825] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' 2019-11-24T08:20:58.972264Z 1 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. 2019-11-24T08:20:58.973007Z 1 [Note] [MY-011976] [InnoDB] Clone Old File Roll Forward: Skipped cloned file ./ib_logfile0 state: 11 2019-11-24T08:20:58.973043Z 1 [Note] [MY-011976] [InnoDB] Clone Old File Roll Forward: Skipped cloned file ./ib_logfile1 state: 11 2019-11-24T08:20:58.973267Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/ib_buffer_pool state: 11 2019-11-24T08:20:58.973365Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file ibdata1 state: 11 2019-11-24T08:20:58.973523Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file sys/sys_config.ibd state: 11 2019-11-24T08:20:58.974067Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file mysql.ibd state: 11 2019-11-24T08:20:58.974162Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file ./undo_002 state: 11 2019-11-24T08:20:58.974246Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file ./undo_001 state: 11 2019-11-24T08:20:58.984373Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file ./ib_logfile0 state: 11 2019-11-24T08:20:58.994462Z 1 [Note] [MY-011976] [InnoDB] Clone File Roll Forward: Remove saved data file ./ib_logfile1 state: 11 2019-11-24T08:20:58.994608Z 1 [Note] [MY-012976] [InnoDB] 8.0.17 started; log sequence number 300737694 2019-11-24T08:20:59.006062Z 1 [Note] [MY-011089] [Server] Data dictionary restarting version '80017'. 2019-11-24T08:20:59.128144Z 1 [Note] [MY-012357] [InnoDB] Reading DD tablespace files 2019-11-24T08:20:59.130035Z 1 [Note] [MY-012356] [InnoDB] Validated 12/12 tablespaces 2019-11-24T08:20:59.130075Z 1 [Note] [MY-011977] [InnoDB] Clone Fixup: check and create schema directory 2019-11-24T08:20:59.130299Z 1 [Note] [MY-011977] [InnoDB] Clone: Fix Object count: 5 task: 0 2019-11-24T08:20:59.130405Z 1 [Note] [MY-011977] [InnoDB] Clone Fixup: create empty MyIsam and CSV tables 2019-11-24T08:20:59.249761Z 0 [Note] [MY-011977] [InnoDB] Clone: Fix Object count: 172 task: 0 2019-11-24T08:20:59.261751Z 1 [Note] [MY-011977] [InnoDB] Clone: Fix Object count: 0 task: 1 2019-11-24T08:20:59.261829Z 1 [Note] [MY-011977] [InnoDB] Clone Fixup: replication configuration tables 2019-11-24T08:20:59.269328Z 1 [Note] [MY-011977] [InnoDB] Clone Fixup: finished successfully 2019-11-24T08:20:59.270169Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /export/umesh/server/binaries/GABuilds/mysql-8.0.17/97754_Recipient/ib_buffer_pool 2019-11-24T08:20:59.271749Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 191124 9:20:59 2019-11-24T08:20:59.290872Z 1 [Note] [MY-010006] [Server] Using data dictionary with version '80017'. 2019-11-24T08:20:59.353452Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. 2019-11-24T08:20:59.373615Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin 2019-11-24T08:20:59.373900Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end 2019-11-24T08:20:59.379465Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start 2019-11-24T08:20:59.431812Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. 2019-11-24T08:20:59.431832Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. 2019-11-24T08:20:59.433002Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. 2019-11-24T08:20:59.433048Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. 2019-11-24T08:20:59.433070Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. 2019-11-24T08:20:59.433273Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '*'; port: 6666 2019-11-24T08:20:59.433333Z 0 [Note] [MY-010253] [Server] IPv6 is available. 2019-11-24T08:20:59.433368Z 0 [Note] [MY-010264] [Server] - '::' resolves to '::'; 2019-11-24T08:20:59.433409Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '::'. 2019-11-24T08:20:59.457666Z 0 [Note] [MY-011025] [Repl] Failed to start slave threads for channel ''. 2019-11-24T08:20:59.461569Z 0 [System] [MY-010931] [Server] /export/umesh/server/binaries/GABuilds/mysql-8.0.17/bin/mysqld: ready for connections. Version: '8.0.17' socket: '/tmp/mysql_Recipient.sock' port: 6666 MySQL Community Server - GPL. 2019-11-24T08:20:59.552131Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' 2019-11-24T08:20:59.552644Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' 2019-11-24T08:20:59.552711Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' 2019-11-24T08:20:59.553269Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33360' 2019-11-24T08:20:59.553306Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/tmp/mysql_x_Recipient.sock'' 2019-11-24T08:20:59.553321Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Socket: '/tmp/mysql_x_Recipient.sock' bind-address: '::' port: 33360