Exporting Percona Database Rumi, March 11, 2020March 11, 2020 Exporting percona database is however a bit tricky way to make funcitonal. The usual- mysqldump -u root -p [database] > database.sql will stuck and shoot you many error. All you need is the add an extended parameters to execute the dump, and here it is: mysqldump -u root -p [database] lock-for-backup > database.sql And that should do the trick! Src: https://www.percona.com/doc/percona-server/5.7/flexibility/extended_mysqldump.html MySQL MySQLDumpPerconaPercona XtraDB