The Symantec Protection Engine (SPE) RestAPI service is not available and the entry following is found in the SPE_REST_API.log:
[main] ERROR org.springframework.boot.SpringApplication:818 - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jasyptStringEncryptor' defined in spe.authentication.config.SPEJasyptEncryptorConfig: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.jasypt.encryption.StringEncryptor]: Factory method 'getPasswordEncryptor' threw exception; nested exception is org.jasypt.exceptions.EncryptionInitializationException: org.jasypt.exceptions.EncryptionInitializationException: java.security.NoSuchAlgorithmException: SHA1PRNG SecureRandom not availableSPE 9.0 or newer installed on RHEL 8.6 or newer with FIPS enabled.
The installed version of Java is attempting to use SHA1PRNG which is not supported by FIPS
Install a version of JDK that supports FIPS.
sudo /etc/init.d/symcscan stop;sudo /etc/init.d/symcrestapiservice stop
sudo yum remove <CURRENT_JAVA_VERSION>
sudo rpm --import https://yum.corretto.aws/corretto.key;sudo curl -L -o /etc/yum.repos.d/corretto.repo https://yum.corretto.aws/corretto.repo;sudo yum install java-17-amazon-corretto-devel -y
sudo /etc/init.d/symcrestapiservice start;sudo /etc/init.d/symcscan start
CRE-21508