Softpanorama

May the source be with you, but remember the KISS principle ;-)
Home Switchboard Unix Administration Red Hat TCP/IP Networks Neoliberalism Toxic Managers
(slightly skeptical) Educational society promoting "Back to basics" movement against IT overcomplexity and  bastardization of classic Unix

hostname command in Red Hat Linux

News See Also Recommended Links Changing hostname Maximum hostname length
nslookup dig Sysadmin Horror Stories Humor Etc

Utility hostname displays the current host, domain or node name of the system. As such it is close to DNS commands such as nslookup, but historically the concept of hostname preceded the DNS and the name of the system  used in DNS does not necessary corresponds to the hostname.  Often hostname is "unqualified" name, although in RHEL default is fully qualified name.  It has several options. Among the most useful:

-i, --ip-address
Display the IP address(es) of the host.
-s, --short
Display the short host name. This is the host name cut at the first dot.

In all Linuxes hostname command is just one of a half dozen command that return various part of information about current hostname and current DNS name 

In linux hostname is a memory field stored in /proc filesystem. That means that you can emulate the actions of the hostname command by accessing this memory structure directly via /proc filesystem.  You can read and write (as root) to it

To read use the command:
cat /proc/sys/kernel/hostname
splab01

to write new hostname (will not survive reboot):

echo splab02 > /proc/sys/kernel/hostname

As hostname command changes only memory structure it is not suitable to making permanent changes. This is  distribution dependent part. We will discuss Red Hat only.

For permanent change of the hostname in Red Hat (but not SLES) you should modify the file /etc/sysconfig/network  (in SLES the file /etc/HOSTNAME) as well as file /etc/hosts.

Here is how file /etc/sysconfig/network looks on a typical Red Hat 5.6 box:

cat /etc/sysconfig/network
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=splab14
GATEWAY=10.10.1.1

This file is sourced by /etc/init.d/network script on reboot. You can make change permanent without reboot by restarting /etc/init.d/network script:

/etc/init.d/network restart
Shutting down interface eth0:                              [  OK  ]
Shutting down interface eth1:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:
Determining IP information for eth0... failed; no link present.  Check cable?
                                                           [FAILED]
Bringing up interface eth1:                                [  OK  ]

If the system does not have HOSTNAME entry in /etc/sysconfig/network the first matching entry in /etc/hosts will be used.

Syntax:

There are also additional utilities that allow getting DNS and NIS/YP information:

These names are used by many of the networking programs to identify the machine. The domain name is also used by .

hostname can perform two basic operations

  1. Get name: if called without any arguments, the program displays the current system name as returned by the gethostname(2) function.

    dnsdomainname will print the domain part of the FQDN (Fully Qualified Domain Name). The complete FQDN of the system is returned with hostname --fqdn.

    If  hostname -s is called  gethostbyname(3) call will be used. The difference in gethostname(2) and gethostbyname(3) is that gethostbyname(3) is network aware, so it consults /etc/nsswitch.conf and /etc/host.conf to decide whether to read information in /etc/sysconfig/network or /etc/hosts the hostname is also set when the network interface is brought up.

  2. Set name: When called with one argument or with the --file option, the commands set the host name, the NIS/YP domain name or the node name.

Notes:  

  1. Sometimes during the installation the anaconda sets the value HOSTNAME in /etc/sysconfig/network to localhost.localdomain.   That leads to difficult to troubleshoot errors, for example in Sun Grid Engine. Always verify if HOSTNAME field in /etc/sysconfig/network is set correctly
  2. Note that hostname doesn't change anything permanently. After reboot original names from /etc/sysconfig/network or if HOSTNAME is not defined in this file, /etc/hosts is used.
  3. You can't change the FQDN (as returned by hostname --fqdn) or the DNS domain name (as returned by dnsdomainname) with this command. The FQDN of the system is the name that the resolver(3) returns for the host name. Technically: The FQDN is the name gethostbyname(2) returns for the host name returned by gethostname(2). The DNS domain name is the part after the first dot. 

Options

-a, --alias

Display the alias name of the host (if used).
-d, --domain
Display the name of the DNS domain. Don't use the command domainname to get the DNS domain name because it will show the NIS domain name and not the DNS domain name. Use dnsdomainname instead.
-F, --file filename
Read the host name from the specified file. Comments (lines starting with a '#') are ignored.
-f, --fqdn, --long
Display the FQDN (Fully Qualified Domain Name). A FQDN consists of a short host name and the DNS domain name. Unless you are using bind or NIS for host lookups you can change the FQDN and the DNS domain name (which is part of the FQDN) in the /etc/hosts file.
-h, --help
Print a usage message and exit.
-i, --ip-address
Display the IP address(es) of the host.
-s, --short
Display the short host name. This is the host name cut at the first dot.
-V, --version
Print version information on standard output and exit successfully.
-v, --verbose
Be verbose and tell what's going on.
-y, --yp, --nis
Display the NIS domain name. If a parameter is given (or --file name ) then root can also set a new NIS domain.

Top Visited
Switchboard
Latest
Past week
Past month

NEWS CONTENTS

Old News ;-)

[Jan 09, 2012] Change Hostname in SUSE

12-Jan-2010

ckozler

How do you change the hostname in SLES11? I have normally used the /etc/hostname file and rebooted the server in other distros.

I only notice the way to change it is in yast2 -> network devices -> network settings -> Hostnames

I am looking for where it is stored because I want to write a script to update it (apart of a server deployment process).

Thank you for your time

I hate bumping but I'd really like to know since I can not find anything on google or anywhere else about this.

syampillai

Put it in /etc/hostname as well as in /etc/hosts


ckozler

Put it in /etc/hostname as well as in /etc/hosts
I have done that and tried restarting but my hostname does not change unless I change it in yast.

I tried putting it in /etc/hostname and /etc/hosts and then rebooting. Executed "hostname" and it still reported the old one.

Changing it via Yast allowed me to update it right away without having to even reboot, just logout and log back in.

hcvv

I normaly advice people to use YaST because there are a few places where it should be done and YaST knows them where I always forget one or more.

I rely on YaST now and do not know any more all the places where to go.

Does anybody know if YaST keeps a lof of what it does realy?


Henk van Velden

malcolmlewis

mmarif4u;2103002 Wrote:
> Maybe you could try SLES forum, as you can get better response from
> the tech and support team there.
>
> 'SUSE Linux Enterprise Server (SLES) - NOVELL FORUMS'
> (http://tinyurl.com/69jvat)

Tried it. They never seem to respond over there
Hi
Which SLE forum did you post in and when?

The three files to change are /etc/HOSTNAME (note case) and /etc/hosts
against the 127.0.0.2 address and also postfix/main.cf Its also the
fully qualified name (FQDN).

--
Cheers Malcolm

How to change the hostname of a Linux system MDLog-sysadmin

Permanent hostname change on RedHat based systems

RedHat based system use the file /etc/sysconfig/network to read the saved hostname at system boot. This is set using the init script /etc/rc.d/rc.sysinit

/etc/sysconfig/network
NETWORKING=yes
HOSTNAME="plain.domainname.com"
GATEWAY="192.168.0.1"
GATEWAYDEV="eth0"
FORWARD_IPV4="yes"

So in order to preserve your change on system reboot edit this file and enter the appropriate name using the HOSTNAME variable.

Use sysctl to change the hostname

Why would someone need a different method of doing the same thing as above? No idea, but here is anyway: use sysctl to change the variable kernel.hostname:
Use:

sysctl kernel.hostname

to read the current hostname, and

sysctl kernel.hostname=NEW_HOSTNAME

to change it.

Linux setting hostname and domain name of my server

Local hostname and domain name of your server defined in text configuration located in /etc directory.

If you are using Red Hat or Fedora Linux
Use redhat-config-network GUI tool. Type following command and click on DNS tab > Setup hostname and domain name:
# redhat-config-network
On other hand you can edit a text file. Find out and set up the value for HOSTNAME in the file /etc/sysconfig/network:
# vi /etc/sysconfig/network
Setup/replace HOSTNAME
HOSTNAME=web.nixcraft.com
Where, web is hostname and nixcraft.com is your DNS domain name

networking - Configuring the hostname on Red Hat Enterprise Linux - Server Fault

The box in your example will have hydrogen.lan as its hostname, not hydrogen.

The only way I know of to have hostname return the short hostname and to have hostname -f return the FQDN, is to use both the mentioned options.

So add HOSTNAME=mybox to /etc/sysconfig/network and add

10.10.10.10 mybox.example.com mybox
to /etc/hosts. I like having hostname and hostname -f return different things. By default, Anaconda sets it up like you have it set up now.

Recommended Links

Google matched content

Softpanorama Recommended

Top articles

Sites



Etc

Society

Groupthink : Two Party System as Polyarchy : Corruption of Regulators : Bureaucracies : Understanding Micromanagers and Control Freaks : Toxic Managers :   Harvard Mafia : Diplomatic Communication : Surviving a Bad Performance Review : Insufficient Retirement Funds as Immanent Problem of Neoliberal Regime : PseudoScience : Who Rules America : Neoliberalism  : The Iron Law of Oligarchy : Libertarian Philosophy

Quotes

War and Peace : Skeptical Finance : John Kenneth Galbraith :Talleyrand : Oscar Wilde : Otto Von Bismarck : Keynes : George Carlin : Skeptics : Propaganda  : SE quotes : Language Design and Programming Quotes : Random IT-related quotesSomerset Maugham : Marcus Aurelius : Kurt Vonnegut : Eric Hoffer : Winston Churchill : Napoleon Bonaparte : Ambrose BierceBernard Shaw : Mark Twain Quotes

Bulletin:

Vol 25, No.12 (December, 2013) Rational Fools vs. Efficient Crooks The efficient markets hypothesis : Political Skeptic Bulletin, 2013 : Unemployment Bulletin, 2010 :  Vol 23, No.10 (October, 2011) An observation about corporate security departments : Slightly Skeptical Euromaydan Chronicles, June 2014 : Greenspan legacy bulletin, 2008 : Vol 25, No.10 (October, 2013) Cryptolocker Trojan (Win32/Crilock.A) : Vol 25, No.08 (August, 2013) Cloud providers as intelligence collection hubs : Financial Humor Bulletin, 2010 : Inequality Bulletin, 2009 : Financial Humor Bulletin, 2008 : Copyleft Problems Bulletin, 2004 : Financial Humor Bulletin, 2011 : Energy Bulletin, 2010 : Malware Protection Bulletin, 2010 : Vol 26, No.1 (January, 2013) Object-Oriented Cult : Political Skeptic Bulletin, 2011 : Vol 23, No.11 (November, 2011) Softpanorama classification of sysadmin horror stories : Vol 25, No.05 (May, 2013) Corporate bullshit as a communication method  : Vol 25, No.06 (June, 2013) A Note on the Relationship of Brooks Law and Conway Law

History:

Fifty glorious years (1950-2000): the triumph of the US computer engineering : Donald Knuth : TAoCP and its Influence of Computer Science : Richard Stallman : Linus Torvalds  : Larry Wall  : John K. Ousterhout : CTSS : Multix OS Unix History : Unix shell history : VI editor : History of pipes concept : Solaris : MS DOSProgramming Languages History : PL/1 : Simula 67 : C : History of GCC developmentScripting Languages : Perl history   : OS History : Mail : DNS : SSH : CPU Instruction Sets : SPARC systems 1987-2006 : Norton Commander : Norton Utilities : Norton Ghost : Frontpage history : Malware Defense History : GNU Screen : OSS early history

Classic books:

The Peter Principle : Parkinson Law : 1984 : The Mythical Man-MonthHow to Solve It by George Polya : The Art of Computer Programming : The Elements of Programming Style : The Unix Hater’s Handbook : The Jargon file : The True Believer : Programming Pearls : The Good Soldier Svejk : The Power Elite

Most popular humor pages:

Manifest of the Softpanorama IT Slacker Society : Ten Commandments of the IT Slackers Society : Computer Humor Collection : BSD Logo Story : The Cuckoo's Egg : IT Slang : C++ Humor : ARE YOU A BBS ADDICT? : The Perl Purity Test : Object oriented programmers of all nations : Financial Humor : Financial Humor Bulletin, 2008 : Financial Humor Bulletin, 2010 : The Most Comprehensive Collection of Editor-related Humor : Programming Language Humor : Goldman Sachs related humor : Greenspan humor : C Humor : Scripting Humor : Real Programmers Humor : Web Humor : GPL-related Humor : OFM Humor : Politically Incorrect Humor : IDS Humor : "Linux Sucks" Humor : Russian Musical Humor : Best Russian Programmer Humor : Microsoft plans to buy Catholic Church : Richard Stallman Related Humor : Admin Humor : Perl-related Humor : Linus Torvalds Related humor : PseudoScience Related Humor : Networking Humor : Shell Humor : Financial Humor Bulletin, 2011 : Financial Humor Bulletin, 2012 : Financial Humor Bulletin, 2013 : Java Humor : Software Engineering Humor : Sun Solaris Related Humor : Education Humor : IBM Humor : Assembler-related Humor : VIM Humor : Computer Viruses Humor : Bright tomorrow is rescheduled to a day after tomorrow : Classic Computer Humor

The Last but not Least Technology is dominated by two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt. Ph.D


Copyright © 1996-2021 by Softpanorama Society. www.softpanorama.org was initially created as a service to the (now defunct) UN Sustainable Development Networking Programme (SDNP) without any remuneration. This document is an industrial compilation designed and created exclusively for educational use and is distributed under the Softpanorama Content License. Original materials copyright belong to respective owners. Quotes are made for educational purposes only in compliance with the fair use doctrine.

FAIR USE NOTICE This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner. We are making such material available to advance understanding of computer science, IT technology, economic, scientific, and social issues. We believe this constitutes a 'fair use' of any such copyrighted material as provided by section 107 of the US Copyright Law according to which such material can be distributed without profit exclusively for research and educational purposes.

This is a Spartan WHYFF (We Help You For Free) site written by people for whom English is not a native language. Grammar and spelling errors should be expected. The site contain some broken links as it develops like a living tree...

You can use PayPal to to buy a cup of coffee for authors of this site

Disclaimer:

The statements, views and opinions presented on this web page are those of the author (or referenced source) and are not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society. We do not warrant the correctness of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be tracked by Google please disable Javascript for this site. This site is perfectly usable without Javascript.

Last modified: March 12, 2019