Hi All,
I have a problem while restoring my full backup using innobackupex, below are the steps which i am doing.
-
innobackupex --user=root --password=test123 /data/backup/innobackupex/Full/
-
innobackupex --apply-log --redo-only /data/backup/innobackupex/Full/2014-07-03_14-39-24/
-
/etc/init.d/mysql stop
removing files from mysql data dir…
- rm -rf /data/mysql/data/*
restoring backup to datadir (/data/mysql/data)
-
innobackupex --copy-back /data/backup/innobackupex/Full/2014-07-03_14-39-24/
-
chown -R mysql:mysql /data/mysql/data/
-
/etc/init.d/mysql start
Upto this everything is perfect. I didn’t get any error. successfully started mysql…
but no data available on my database…The error is below while checking the tables…
mysql> select * from db.User1;
ERROR 1146 (42S02): Table ‘db.User1’ doesn’t exist
Can anyone help me here…?
Thanks in advance…