MySQLdump 在 gzip 中结果为空?
当我定期输出 MySQL 转储时,它输出一个 30MB 的文件。当我使用 gzip 时,0KB。
这是我的代码:
$command = "<path to>mysqldump --opt -h $dbhost -u$dbuser -p$dbpass $dbname | gzip> test.sql.gz";
system($command);
Result: test.sql.gz 0 KB
---------------------------
$command = "<path to>mysqldump --opt -h $dbhost -u$dbuser -p$dbpass $dbname > test.sql";
system($command);
Result: test.sql 30 MB
When I output my MySQL Dump Regularly, it outputs a 30MB File. When I use gzip, 0KB.
Here is my code:
$command = "<path to>mysqldump --opt -h $dbhost -u$dbuser -p$dbpass $dbname | gzip> test.sql.gz";
system($command);
Result: test.sql.gz 0 KB
---------------------------
$command = "<path to>mysqldump --opt -h $dbhost -u$dbuser -p$dbpass $dbname > test.sql";
system($command);
Result: test.sql 30 MB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否需要指定 gzip 的完整路径,而不仅仅是 gzip ?我不确定 PHP 中的默认路径是什么,但它通常不会涵盖您想要的所有内容。
Do you need to specify a full path to gzip, instead of just gzip? I'm not sure what your default path will be from within PHP, but it often doesn't cover everything you'd want.