Renomeia o nome do host RedHat7 sem reiniciar

1

Como eu renomeio o nome do host RedHat7 sem uma reinicialização? Eu também estou tentando automatizar essa tarefa.

    
por tset 29.09.2016 / 00:03

2 respostas

4
[root@stephan ~]# echo stephan2 > /etc/hostname # this is the file that your system reads on boot, to determine the hostname
[root@stephan ~]# sed -i s/stephan/stephan2/g /etc/hosts # many networking headaches will ensue if this isn't updated
[root@stephan ~]# hostname -F /etc/hostname # reread the hostname file to update the systems hostname.

Seu prompt continuará a exibir o nome do host antigo até você efetuar logout dele e voltar, ou executar uma nova sessão do shell.

[root@stephan ~]# logout
[stephan@stephan ~]$ sudo su -
Last login: Wed Sep 28 18:06:35 EDT 2016 on pts/0
[root@stephan2 ~]#
    
por 29.09.2016 / 00:07
2

Use o seguinte comando para alterar o nome do host no RHEL7:

hostnamectl set-hostname name

Para ver os nomes de host atuais:

hostnamectl status

Consulte o Guia de Rede do Red Hat Enterprise Linux para mais detalhes.

    
por 29.09.2016 / 00:36

Tags