n00b982
n00b982

Reputation: 433

filezilla, error while writing failure

I'm transferring a very large (35GB) file through SFTP and FileZilla.

Now the transfer is 59.7% done, but I keep getting this error, and it hasn't changed that number for hours.

Error:     File transfer failed after transferring 1,048,576 bytes in 10 seconds
Status:    Starting upload of C:\Files\static.sql.gz
Status:    Retrieving directory listing...
Command:   ls
Status:    Listing directory /var/www/vhosts/site/httpdocs
Command:   reput "C:\Files\static.sql.gz" "static.sql.gz"
Status:    reput: restarting at file position 20450758656
Status:    local:C:\Files\static.sql.gz => remote:/var/www/vhosts/site/httpdocs/static.sql.gz
Error:     error while writing: failure

Why do I keep getting this error?

Upvotes: 42

Views: 79035

Answers (7)

linux.cnf
linux.cnf

Reputation: 807

filezilla, error while writing: failure issue occurred when server storage is full. Login in Linux server and Kindly run below two commands to find out which files are consuming max storage in /var/log recursively..

for MB Size:

sudo du -csh $(sudo find /var/log -type f) |grep M|sort -nr

For GB size:

sudo du -csh $(sudo find /var/log -type f) |grep G|sort -nr

Upvotes: 1

Francisco R
Francisco R

Reputation: 4048

In our case it was because the file exceeded the user's quota. We use Virtualmin and the virtual server had a default quota of just 1GB. Increasing that value in Virtualmin solved the problem.

Upvotes: 1

Sarthak Mishra
Sarthak Mishra

Reputation: 51

This happened when I tried to replace the file which was already open or running in the background. Once closed, I was able to overwrite the file.

Upvotes: 0

Sachin Vishwakarma
Sachin Vishwakarma

Reputation: 874

Recently faced this issue, Turned out to be the disk space issue. Removed some old logs, specially mysqld.log file which was in GBs. It worked after that.

Upvotes: 2

Adam
Adam

Reputation: 3795

Credit to cdhowie: The remote volume was out of space.

Upvotes: 80

lephix
lephix

Reputation: 1174

I encountered the same situation. Go to your server, run "df" command to see if there is a problem of hard disk space.

Upvotes: 16

Related Questions