linux - IPA Server setup failing on CentOS 6.6 -


when try install/configure ipa server on centos 6.6, see following error message

[root@machine1 ~]# ipa-server-install --setup-dns

"must root set server"

installation went fine out issue when try configure using above command see "must root set server"

if open ipa-server-install script, written in python , find following snippet in script, if root uid isn't 0 print "must root set server"

if os.getegid() != 0:            sys.exit("must root set server") 

make sure root , root uid 0

[root@ipa ~]# whoami root [root@ipa ~]# id root uid=0(root) gid=0(root) groups=0(root)