3

I have a redhat (EL5) server that I need to change the hostname on. I'm trying to put it back into a known state to help with server provisioning activities.

As part of changing the hostname, I'm updating /etc/sysconfig/network and /etc/hosts. I also have an explicit call to hostname. My desired state is that the server thinks its hostname is "localhost". And a call to "hostname" returns "localhost".

The problem I'm having is that when I reboot, the hostname is reverted to "localhost.companyname.com" which is not what I want. How do I ensure that the hostname is set up as just "localhost" when I reboot?

My /etc/sysconfig/network file contains:

NETWORKING=yes
HOSTNAME=localhost
GATEWAY=123.123.123.123 #I do have a proper IP address here

My /etc/hosts file contains:

127.0.0.1       localhost.localdomain   localhost
172.21.1.1      localhost.companyname.com     localhost
drAlberT
  • 10,871
  • 7
  • 38
  • 52
  • Can't say that naming your server localhost is the wisest course of action. –  May 07 '10 at 20:26

3 Answers3

10
  1. Change the ^HOSTNAME line in /etc/sysconfig/network
  2. Change the hostname (FQDN and alias) in /etc/hosts
  3. Run /bin/hostname new_hostname for the hostname change to take effect immediately.
  4. Run /sbin/service syslog restart for syslog to log using the new hostname.

A reboot is not required to change the system hostname, of course you should reboot in order to verify your issue is solved :)

More information at http://kbase.redhat.com/faq/docs/DOC-8646

NOTE:
Your error is in the second line of /etc/hosts! just remove it.

drAlberT
  • 10,871
  • 7
  • 38
  • 52
  • And some apps pull the host name at startup and not again. Rebooting is a good way to restart everything at once. – McJeff May 07 '10 at 20:41
  • 1
    service --full-restart will accomplish that without a reboot, although at that point you might as well. – Rodger May 07 '10 at 21:50
1

If you have set a static IP make sure that IP is set in /etc/hosts along with your desired hostname.

After setting the desired hostname in /etc/sysconfig/network, it would not save or persist after reboot until the IP I had set for the machine in /etc/sysconfig/network-scripts/ifcfg-eth0 or /etc/sysconfig/network-scripts/ifcfg-eno1 on CentOS 7 and my desired hostname were on the same line in /etc/hosts.

Just as this answer suggests: https://serverfault.com/questions/348863/setting-new-hostname-on-centos-it-changes-back-after-restart

Edit: I read the proper way to set the hostname in Centos7 / RedHat 7

hostnamectl set-hostname myhost.mydomain.com
im3r3k
  • 141
  • 5
0

Something else to consider, some VPS providers use virtualization technologies that take control of the networking and hostname, so you will need to use their control panel in order to change the hostname.

deltaray
  • 1,435
  • 9
  • 14