RedHat Enterprise Linux 6 - Editar nome do host

15

Atualmente, estou tentando editar meu nome de host em uma máquina virtual RedHat Enterprise Linux 6, mas tenho alguns problemas.

Eu tentei usar a função hostname assim:

hostname -v bravo.cmweb.com

E funciona, eu chamo a função e o nome do host foi editado com sucesso.

Então, eu reinicio a máquina e então, oups, o nome do host é novamente localhost.localdomain .

Agora, quero perguntar: como posso editar permanentemente o nome do host no Linux?

    
por Frederick Marcoux 19.07.2012 / 19:26

3 respostas

24

Você precisa fazer um pouco mais do que usar hostname . O link a seguir abaixo deve resolver seu problema. Altere seu nome de host sem reinicializar no RedHat Linux

Make sure you are logged in as root and move to /etc/sysconfig and open the network file in vi.

cd /etc/sysconfig
vi network

Look for the HOSTNAME line and replace it with the new hostname you want to use. In this example I want to replace localhost with redhat9.

HOSTNAME=redhat9

When you are done, save your changes and exit vi. Next we will edit the /etc/hosts file and set the new hostname.

vi /etc/hosts

In hosts, edit the line that has the old hostname and replace it with your new one.

192.168.1.110     redhat9

Save your changes and exit vi. The changes to /etc/hosts and /etc/sysconfig/network are necessary to make your changes persistent (in the event of an unscheduled reboot).

Now we use the hostname program to change the hostname that is currently set.

hostname redhat9

And run it again without any parameters to see if the hostname changed.

hostname

Finally we will restart the network to apply the changes we made to /etc/hosts and /etc/sysconfig/network.

service network restart
    
por 19.07.2012 / 19:36
1

Siga este como alterar o nome do host no servidor RHEL 6. A reinicialização é necessária para as duas opções.

Você pode seguir a primeira opção OU a segunda.

  1. Modifique /etc/sysconfig/network

    vi /etc/sysconfig/network
    
    NETWORKING=yes
    HOSTNAME=MyNewHostname.localdomain
    
    • Salve e reinicie seu servidor.
  2. Digite o seguinte comando para entrar no modo GUI.

    [root@localhost ~]# system-config-network
    
    • Vá para "Configuração de DNS".
    • Modifique seu nome de host preferido e clique em OK.
    • Clique em "Salvar & Saia ”.
    • Salve e reinicie seu servidor.
por 30.07.2012 / 14:07
0

O nome do host em um sistema Red Hat é configurado no arquivo /etc/sysconfig/network .

Edite o arquivo e adicione ou edite uma linha como esta:

HOSTNAME="bravo.cmweb.com"
    
por 19.07.2012 / 20:50