Below you will find pages that utilize the taxonomy term “SCC”
Dealing with a Lack of Entropy on your OpenShift Cluster
Introduction
The Linux Kernel supplies two sources of random numbers, /dev/random
and /dev/urandom
. Theses character devices can supply random numbers to any application running on your machine. The random numbers supplied by the kernel on these devices come from the Linux kernel’s random-number entropy pool. The random-number entropy pool contains “sufficiently random” numbers meaning they are good for use in things like secure communications. But what happens if the random-number entropy pool runs out of numbers? If you are reading from the /dev/random
device, your application will block waiting for new numbers to be generated. Alternatively the urandom device is non-blocking, and will create random numbers on the fly, re-using some of the entropy in the pool. This can lead to numbers that are less random than required for some use cases.