When using encryption (cfglib @Secured items, dblib-disk disk encryption), the application uses SecureRandom to get random data (for key generation, etc.). In case of a virtual machine and Linux, the system entropy can be low which may result in extremely poor performance.app
To avoid this, we need to enable rngd daemon (and install it first, it’s in rng-tools package).dom
First try to start it:this
/etc/init.d/rngd start
If it complains about entropy source (Starting rngd: can't open entropy source(tpm or intel/amd rng)
), modify /etc/sysconfig/rngd
to contain the following:code
EXTRAOPTIONS="-r /dev/urandom"
Then, start and enable rngd:orm
/etc/init.d/rngd start chkconfig rngd on
First try to start it:rem
systemctl start rngd
If it complains about entropy source (can't open entropy source(tpm or intel/amd rng)
in output of systemctl status rngd
, do the following:get
cp /usr/lib/systemd/system/rngd.service /etc/systemd/system
Then edit /etc/systemd/system/rngd.service ExecStart line to this:generator
ExecStart=/sbin/rngd -f -r /dev/urandom
Then, start and enable rngd:it
systemctl start rngd systemctl enable rngd