-
Having a problem with FIPS on an ipareplica. I created 2 EC2 instances from the same AMI. Both have FIPS enabled. I ran the cluster playbook with one of them as the ipaserver and the other as an ipareplica. The server installed just fine, but the replica fails at the step: "ipareplica : Install - Replica preparation"
On both the EC2 instances, "crypto.fips_enabled" is set to 1, and the same in /boot/grub2/grub.cfg. They are both RHEL 8. I am running it by: ansible-playbook -u myuser -b --private-key ~/.ssh/mykey -i inventory/hosts.cluster playbooks/install-cluster.yml Inventory file
Playbook
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
According to the error message "FIPS is not enabled on the master server" it seems that FIPS is not enabled on the server. Is this a fresh deployment or was there a non FIPS deployment before on the server? |
Beta Was this translation helpful? Give feedback.
Yeah we discovered the problem was that since our domain was the same, we had a DNS SRV record that was pulling the old host name. We set some things such as "ipaserver_hostname", "ipareplica_hostname", "ipaclient_hostname" in our vars file, as well as put our host names in /etc/hosts on the boxes to get around this for now. That seemed to work for us.