I have taken a backup of mysql instance like this innobackupex \ –user=$ MYUSER \ –password=$ MYPASS \ –no-timestamp \ –parallel=$ DUMP_THREADS \ –stream=xbstream \ –slave-info \ –extra-lsndir=$ LSN_DIR \ –tmpdir=$ TMP_DIR \ –no-lock \ –safe-slave-backup I am trying to restore this backup like this. zcat backup_file.xbs.gz 2>/dev/null | xbstream -x -C /var/lib/mysql/ I amRead more