Ativar o console da web


A partir do Red Hat Enterprise Linux 7, o console da web é instalado por padrão em todas as variantes de instalação, exceto em uma instalação mínima. Use o seguinte comando para instalar o console da web:

[root@host ~]# dnf install cockpit

Depois, ative e inicie o serviço cockpit.socket, que executa um servidor web. Essa etapa é necessária se você precisar se conectar ao sistema por meio da interface web.

[root@host ~]# systemctl enable --now cockpit.socket
Created symlink /etc/systemd/system/sockets.target.wants/cockpit.socket -> /usr/lib/systemd/system/cockpit.socket.

Se estiver usando um perfil de firewall personalizado, você deve adicionar o serviço cockpit a firewalld para abrir a porta 9090 no firewall:

[root@host ~]# firewall-cmd --add-service=cockpit --permanent
success
[root@host ~]# firewall-cmd --reload
success

Referências