Would like to change hostname and domain name for my Linux server. Where can I set the local hostname and domain name of my serv
- KnowledgeBase /
- Nom de Domaine /
- would like to change hostname and domain name for my Linux server. Where can I set the local hostname and domain name of my serv
would like to change hostname and domain name for my Linux server. Where can I set the local hostname and domain name of my server?
You can use hostname/hostnamectl command to show or set the system’s host name and dnsdomainname command to show the system’s DNS domain name. But the changes are temporary if you use these commands. Local hostname and the domain name of your server defined in text configuration file located in /etc directory.
How to use hostnamectl command
If you are using systemd based distro such as RHEL/CentOS 7.x, Fedora latest, Ubuntu Linux 16.04 LTS, Debian 9.x+, Arch Linux and more, use hostnamectl command. To see current hostname, run:
$ hostnamectl
To change hostname to foo, run:
$ hostnamectl set-hostname 'foo'
$ hostnamectl
A note about GUI tools
If you are using Red Hat or Fedora Linux (older version) use redhat-config-network GUI tool. Type following command and click on DNS tab > Setup hostname and domain name:
# redhat-config-network
On other hand you can edit a text file. Find out and set up the value for HOSTNAME in the file /etc/sysconfig/network:
# vi /etc/sysconfig/network
Setup/replace HOSTNAME
HOSTNAME=web.nixcraft.com
Where, web is hostname and nixcraft.com is your DNS domain name.
If you are using Debian Linux
You need to edit /etc/hostname file and put hostname.domain.com in this file:
# vi /etc/hostname
Set or replace hostname:
web.nixcraft.com
Debian, Suse and other Linux distro support GUI tool called network-admin. Type following command and click on DNS tab > Setup hostname and domain name:
$ network-admin
Please note that you must have properly configured DNS server to work FQDN based hostname. See how to configure Linux as a dns client.
Open ticket
Submit a support ticket