Debian Admin

Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips

  • RSS Subscribe

    subscribe to the Debian Admin RSS feed
  • Sponsors



  • Categories

  • Sponsors

  • Support DebianAdmin

    Amount $:
    Website(Optional):


  • Meta

  • Archives

Change hostname or Server name of a Linux Machine

Posted by Admin on September 17th, 2006

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Checking your Linux host name

First, see if your host name is set correclty using the following commands:

#uname -n
#hostname -a
#hostname -s
#hostname -d
#hostname -f
#hostname

If the above commands return correctly with no errors then all may be well; however, you may want to read on to verify that all settings are correct.

Normally we will set the hostname of a system during the installation process.

Change the hostname on a running Linux system

On any Linux system you can change its hostname with the command ‘hostname‘.

#hostname

without any parameter it will output the current hostname of the system.

#hostname --fqd

it will output the fully qualified domain name (or FQDN) of the system.

#hostname NEW_NAME

will set the hostname of the system to NEW_NAME. This is active right away and will remain like that until the system will be rebooted (because at system boot it will set this from some particular file configurations - see bellow how to set this permanently). You will most probably need to exit the current shell in order to see the change in your shell prompt.

Permanent hostname change on Debian based Linux systems

Debian based systems use the file /etc/hostname to read the hostname of the system at boot time and set it up using the init script /etc/init.d/hostname.sh

#cat /etc/hostname

debianadmin

So on a Debian based system we can edit the file /etc/hostname and change the name of the system and then run

/etc/init.d/hostname.sh startto make the change active. The hostname saved in this file (/etc/hostname) will be preserved on system reboot (and will be set using the same script we used hostname.sh).

If you want more details check hostname man page

Use sysctl to change the hostname

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.

If you want more details check sysctl man page

You can use the same process for all debian based distributions and other linux machines

also.

  • Share/Bookmark

19 Responses to “Change hostname or Server name of a Linux Machine”

  1. debian-admin Says:

    Shouldn’t that be:
    hostname --fqdn ?

    (or hostname -f).

  2. Ricky Says:

    Thanks… very useful information.

  3. jam Says:

    hostname -fqd didn’t work…
    I think it should jsut be hostname -f ?

    I may be wrong though..
    But thanks :D

    JAM

  4. cmos Says:

    I think that should be hostname --fqdn

  5. platypusjh Says:

    Nope. It’s “hostname --fqdn” or “hostname -f”

    Sorry, couldn’t resist since everyone else was nitpicking. :)

    Thanks for the excellent article. Worked like a charm!

  6. Sean Says:

    My question is should you put the whole FQDN in the hostname file for a permanent change, or just the hostname itself?

  7. Raymond Day Says:

    You have to edit the /etc/host file too. Not just /etc/hostname.

    -Raymond Day

  8. Jamie Says:

    Just what I needed :)
    Thanks for this great post!

  9. Flavus Says:

    Thanks, that what i was looking for.

  10. Sam Says:

    also need to change /etc/mailname to the new name.

  11. WANA Says:

    The mailname serves a different purpose from that of hostname but in many
    cases their values are the same. For /etc/mailname, dpkg-reconfigure exim4-config should do it.

  12. lone Says:

    Thanks, that is what I am looking for. good note for
    /etc/hostname & /etc/hosts

  13. Derek S Says:

    By the fully qualified domain name, does that mean like somehting.com or whatever you want the local hostname to be?

  14. Mike Says:

    thanks for the info.. i edit my network file, hosts file and nw when i run the hostname or hostname -f everything points to new name.. but when i telnet my server it shows the old name… wht would be the problem ?

  15. artm Says:

    to summarize:


    #!/bin/sh
    sed s:$(hostname):$1:g /etc/hosts.new
    mv /etc/hosts.new /etc/hosts
    hostaname $1
    hostname > /etc/hostname
    dpkg-reconfigure exim4-config

    This is a useful script to have on a virtual machine template so you can rename new VMs easily.

  16. artm Says:

    hmm… the last command is interactive for no reason. the following is a better script:


    #!/bin/sh

    if [ -z "$1" ] ; then
    exit 1
    fi

    newname=$1
    oldname=$(hostname)

    for file in /etc/hostname,/etc/hosts,/etc/mailname,/etc/exim4/update-exim4.conf.conf ; do
    sed s:${oldname}:${newname}:g ${file}.new && mv ${file}.new ${file}
    done

    hostaname ${newname}

  17. artm Says:

    oops, the filenames should be space separated or /etc/{hostname,hosts,mailname,exim4/update-exim4.conf.conf}. And “bin” shoudn’t be Bin.

  18. Tec4ua Says:

    hi,

    thanks for nice and useful info

  19. Vivek Says:

    Hi,
    Can two machines in the same network have same hostname with different IPs. If so, how ping is resolved.

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>