This is because I have installed and uninstalled the ipa server multiple times after refining the cli options. What exactly do you want or need to know?
On 11/1/17 4:07 PM, Alexander Bokovoy wrote:
On ke, 01 marras 2017, Abraham Cabrera via FreeIPA-users wrote:
Apologies here is my script
[root@dns01 ~]# cat setup.ipa.sh #!/bin/sh set -x
HOSTNAME=dns01 DOMAIN_NAME=int.mrmcmuffinz.com HOST_FQDN="${HOSTNAME}.${DOMAIN_NAME}" REALM_NAME=INT.MRMCMUFFINZ.com
# Directory Manager password DM_PASSWORD="redacted" # Admin user kerberos password ADMIN_PASSWORD="redacted" IP_ADDRESS=$(hostname -I|tr -d '\n') DNS1=8.8.8.8 DNS2=8.8.4.4 REVERSE_ZONE_NAME="1.168.192.in-addr.arpa."
ipa-server-install --ds-password=${DM_PASSWORD} -admin-password=${ADMIN_PASSWORD} --ip-address=${IP_ADDRESS} \ --domain=${DOMAIN_NAME} --hostname=${HOST_FQDN} --realm=${REALM_NAME} \ --setup-dns --forwarder ${DNS1} --forwarder ${DNS2} --forward-policy=only --auto-reverse
But the logs you provided shown that you have somewhere already working IPA server and you tried to enroll some IPA client and that one failed.
This is what I got from your original email. It is very hard to infer any additional information from that.