Why is mysqldump telling me I don't have enough space even though I have more than enough?

Viewed 25

I have two VMs, machine A which has a database I want a copy of and another, bigger machine B, I want to write the dump file to. Machine B has 30000 GB disk space and 64GB of RAM but when I run this simple dump command on Machine B I get receive errno 28 on write (indicating I do not have enough space). The file is initially written OK on machine B and I get the error after about 10 minutes.

mysqldump --host=<machine A> --port=3306 --user=<user> --password=<password> --databases <my_database> --hex-blob --master-data=1 --no-autocommit --default-character-set=utf8mb4 --single-transaction --quick > dumpfile.sql

Thank you in advance.

0 Answers
Related