vote up 0 vote down star

I need to get the fully expanded hostname of the host that my Ruby script is running on. In Perl I've used Sys::Hostname::Long with good results. Google seems to suggest I should use Socket.hostname in ruby, but that's returning just the nodename, not the full hostname.

flag

3 Answers

vote up 0 vote down

Could be a tad simpler => hostname = Socket.gethostname

link|flag
Socket.gethostname doesn't necessarily return a FQDN. – dvorak Dec 4 at 0:41
vote up 0 vote down

Excellent, this was something I was looking for.

link|flag
vote up 1 vote down

This seems to work:

hostname = Socket.gethostbyname(Socket.gethostname).first
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.