Have DxC installed on a working SUSE machine, but we have to configure it to work through https, the problem is that when we run the nginx installation it gives us the following error:
./services.sh line 11
Internal error , assertion failed: FATAL FIPS SELFTEST Failure
Issue was the openssl package, we had installed version 1.1 and it should have been 1.0,
So the screenshot provided shows in part this error
./services.sh line 11
Internal error , assertion failed: FATAL FIPS SELFTEST Failure
So I went to services.sh and line 11 is running nginx
start(){
./nginx <--here
sleep 1
count=$(ps -ef | grep nginx | grep -v grep |grep -v bash | wc -l)
if [ $count -gt 2 ]
then
echo "Nginx started"
ps -ef | grep nginx | grep -v grep |grep -v bash
fi
}
And it is running a FIPS pre-check and the install fails since your system appears not to be FIPS enabled/compliant. Is your system FIPS enabled?
Some references that may help