hostname
on the client is dns01.srv.acentauri.net.uk
, however when I run
puppet agent -t
Info: Creating a new SSL key for dns01
Info: Caching certificate for ca
Info: Caching certificate_request for dns01
Exiting; no certificate found and waitforcert is disabled
it creates certificate for host dns01
, appearently I am using autosign
on puppet master for this domain srv.acentauri.net.uk
Any idea why puppet does not create the SSL key for FQDN?
Check the FQDN of your host:
Check also for a valid entry in your
/etc/hosts
file:Additionally, set the
HOSTNAME
entry in/etc/sysconfig/network
to the FQDN.Remove the invalid cryptographic content under
/var/lib/puppet/ssl
in the client machine:and reissue the request, this time waiting for the answer:
The client machine probably has an entry for
dns01
in/etc/hosts
. Have a look at whathostname -f
andhostname -i
return and clean up any discrepancies.