I installed chef-client on a Linux node, and it seems to have successfully connected to my chef server. However, when I do: chef node list
, it appears as "localhost".
Why doesn't chef pick up the proper name of the node? If I ask for more details, I see:
$ chef node show localhost
node Name: localhost
Environment: _default
FQDN: localhost
IP: 192.168.1.5
Run List:
Roles:
Recipes:
Platform: ubuntu 11.10
It has a proper domain name set up. For example, if I do: hostname
, it returns "mynodename", not "localhost".
How is chef determining the name of the node? And why does it have the proper name showing in FQDN?
EDIT: In response to cjc below, here's some of the output from ohai | grep host
:
(Note: this node is running on EC2)
"fqdn": "localhost",
"hostname": "mynodename",
"public_hostname": "ec2-...-.amazonaws.com",
"local_hostname": "ip-...ec2.internal",
"hostname": "ip-...ec2.internal",
Also, hostname -s is giving the expected output:
$ hostname -s
mynodename
The reason seems to be that ohai is running
hostname --fqdn
, which does give "localhost".The root cause of the problem seems to be that I set the hostname as "mynodename" instead of "mynodename.example.com". If I do:
Then it does the right thing when I do:
hostname --fqdn
I have the same problem. It does seem to be the ohai thing. But it is a bit deeper. The best test is to see whether hostname --fqdn returns something reasonable.
It comes down to the hosts file. Setting hostname with sudo hostname my.fqdn won't work. Strictly speaking this should not be necessary because system names are distinct from domain names. But systems that do reverse lookup easily get confused. bottom line, in your etc/hosts file your fqdn should be the first entry after the ip address if that is what you want returned, e.g.
127.0.0.1 myserver.mydomain.com myserver localhost # works, return fqdn
127.0.0.1 localhost myserver.mydomain.com myserver # this will return localhost
127.0.0.1 myserver myserver.mydomain.com localhost # this will return myserver
If you look in the default etc/hosts file you will see that ubuntu uses 127.0.1.1 as well as 127.0.0.1. that is because of situations like this. Having the host name on a separate ip address (which is still loopback valid) ensures a clean mapping between the system name and the domain name.
On Amazon AMI instances based on RHEL 5 and 6. In that case, look at:
I suspect the is configured as such with:
In that case, make the correction with:
On Debian-type Linux instances (such as Ubuntu), you would look at the following file for the hostname:
And make the change there.
chef-client uses ohai when setting up the node. What do you get when you run
ohai |grep host
?Glancing through the ohai source in lib/ohai/plugins, for the linux provider, I see that it basically runs "hostname -s", so that's a bit mysterious, given your results.
Could the hostname have been set after chef-client ran?
For me it seems to be a problem on /etc/hosts. My /etc/hosts file looks like
removing localhost in the /etc/hosts file resolves my problem. I don't need the localhost anyway.