diff --git a/README.md b/README.md index 95981f724c3298eee329ca2511002308a2bc9c84..a588564179e0e01e4675e2094d3006f2f867bb92 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ $ docker logs -ft evidence-collector ### ClamAV (re)start failed/timed out -Try re-running `make provision` one more time. If this doesn't help, comment out the last task in `/ansible/clamav/tasks/install-clamav.yml` & try restarting ClamAV manually. +ClamAV restart can time-out due to slow disk read/write speeds (if using HDD) and lack of memory. To resolve this, provide the machine with more RAM. Current implementation has it set to `1024` MB (which should suffice for the majoirty of host machine configurations). If you're using SSD, you can lower it to `512` MB. ### Vagrant issue: diff --git a/environments/full-setup/Vagrantfile b/environments/full-setup/Vagrantfile index 2d669df4964899974cb62e83f69b2fffa44b60dd..2b311d4158b39a74ff057a0b6c99714bd93d5e31 100644 --- a/environments/full-setup/Vagrantfile +++ b/environments/full-setup/Vagrantfile @@ -13,14 +13,14 @@ servers=[ :hostname => "agent1", :ip => "192.168.33.11", :box => "centos/8", - :ram => 512, + :ram => 1024, :cpu => 1 }, { :hostname => "agent2", :ip => "192.168.33.12", :box => "centos/8", - :ram => 512, + :ram => 1024, :cpu => 1 }, { diff --git a/environments/no-collector/Vagrantfile b/environments/no-collector/Vagrantfile index 504035aabfe1c57acbeec320767cb44ba0dbed03..33cc1da1d2bdd13f193f816be337471107f60b19 100644 --- a/environments/no-collector/Vagrantfile +++ b/environments/no-collector/Vagrantfile @@ -13,14 +13,14 @@ servers=[ :hostname => "agent1", :ip => "192.168.33.11", :box => "centos/8", - :ram => 512, + :ram => 1024, :cpu => 1 }, { :hostname => "agent2", :ip => "192.168.33.12", :box => "centos/8", - :ram => 512, + :ram => 1024, :cpu => 1 } ]