Laravel : lack of memory or swap, or not having swap configured


This could be happening because the VPS runs out of memory and has no Swap space enabled.
  1. free -m
  2. total used free shared buffers cached
  3. Mem: 2048 357 1690 0 0 237
  4. -/+ buffers/cache: 119 1928
  5. Swap: 0 0 0
To enable the swap you can use for example:
  1. /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024
  2. /sbin/mkswap /var/swap.1
  3. /sbin/swapon /var/swap.1