Re: [Maria-discuss] restore problem with xtrabackup

2016-12-21 Thread l vic
Found the problem: didn't shutdown mysqld before i attempted restore On Mon, Dec 19, 2016 at 7:02 PM, Stephane VAROQUI wrote: > Hi Vic, > > May be that is the type of life in a cluster, how did you restart you node > after restoring backup: did you tell the system it’s a new cluster ? > > /svar

Re: [Maria-discuss] restore problem with xtrabackup

2016-12-19 Thread Stephane VAROQUI
Hi Vic, May be that is the type of life in a cluster, how did you restart you node after restoring backup: did you tell the system it’s a new cluster ? /svar Stéphane Varoqui, Senior Consultant Phone: +33 695-926-401, skype: svaroqui http://www.mariadb.com > Le 19

[Maria-discuss] restore problem with xtrabackup

2016-12-19 Thread l vic
i have installed mariadb 1.10.13 cluster with user "root", password "pass" I have created test database "galeratest": CREATE DATABASE galeratest;USE galeratest;CREATE TABLE test_table ( id INT PRIMARY KEY AUTO_INCREMENT, msg TEXT ) ENGINE=InnoDB;INSERT INTO test_table (msg)