You seem to have run out of memory. Many VPS servers are configured without a swap, so when you run out of memory, it will kill things in a seemingly random way.
The easiest way to fix this is to get more memory for your VPS, which will probably cost more money. The next best way (besides running fewer files and optimizing memory for the whole run) would be to add a swap partition or swap file.
For a 1GB swap file (with root privileges):
dd if=/dev/zero of=/swapfile bs=1M count=1024 mkswap /swapfile swapon /swapfile
Be sure to add it to / etc / fstab as:
/swapfile none swap defaults 0 0
This will return it after reboot.
source share