rsync error out of memory in flist_expand sender

wanren

Verified User
Joined
Mar 1, 2010
Messages
29
ERROR: out of memory in flist_expand [sender]
rsync error: error allocating core memory buffers (code 22) at util.c(117) [sender=3.0.6]
rsync: writefd_unbuffered failed to write 78 bytes to socket [generator]: Broken pipe (32)

When I try to rsync backup files to a subfolder, I got above errors.
It's a production server, anyone has a hint?
Thanks!
 
Change max_file_uploads in your php.ini to change max_file_uploads option.

Put bellow line in php.inin
max_file_uploads 20
 
Change max_file_uploads in your php.ini to change max_file_uploads option.

Put bellow line in php.inin
max_file_uploads 20
Thanks very much for your help.
But the line"max_file_uploads 20" has been there.
Do you mean I need to change the value 20 to higher like 2000?
 
ERROR: out of memory in flist_expand
So Try the following setup in php ini, it will fix.
Code:
memory_limit = 320M
You could set up more than 320M, But I think 320M is enough :cool:
 
Here a part of instruction to help you:


1. Open php.ini file.
2. Edit the memory_limit parameter in the php.ini file (usually in a section called Resource Limits)
memory_limit = 320M ; Maximum amount of memory a script may consume (320MB)
If there is no section already for this, place the above line at the end of the file.
3. Restart Apache.

check this Increase PHP memory limit
 
Back
Top