I have a database whose size is roughly 3.1 Gb according to PhpMyAdmin. I would like to dump and compress it with gzip.
This is a very similar answer to what I'm trying to do: https://serverfault.com/a/804273/326635
Here is my command:
mysqldump -u myuser -p mydb | gzip -9 -c > db.gz
It works, I got the gz file. But it is over 3 Gb so the compression doesn't seem to be working. What do I wrong, how can I get a smaller file with gzip?