0 votes
443 views
in General by

Please log in or register to answer this question.

1 Answer

0 votes
by (2.0m points)

To set the hostname on a Contabo VPS (or any Linux-based VPS), follow these steps:

  1. Connect to Your VPS: Log in to your VPS using SSH. You can do this with a command like:

ssh username@your_server_ip

  1. Check the Current Hostname: You can view the current hostname by running:

hostname

  1. Set the New Hostname:
    • To change the hostname temporarily (until the next reboot), use:

sudo hostname new-hostname

    • To set the hostname permanently, you need to modify some configuration files:

a. For Debian-based systems (like Ubuntu):

      • Edit the /etc/hostname file:

sudo nano /etc/hostname

Replace the old hostname with your new one and save the file.

      • Edit the /etc/hosts file:

sudo nano /etc/hosts

Replace the old hostname with your new one in the line that starts with 127.0.1.1.

b. For Red Hat-based systems (like CentOS, Fedora):

      • Use the hostnamectl command:

sudo hostnamectl set-hostname new

asked Jul 28, 2024 in General by (2.0m points)
closed Jul 28, 2024 by
How Can I Change My Contabo Servers Name?

Related questions

0 votes
1 answer 416 views
0 votes
1 answer 469 views
asked Mar 31, 2025 in General by kevin (2.0m points)
0 votes
1 answer 391 views
0 votes
0 answers 261 views
0 votes
1 answer 438 views
0 votes
0 answers 299 views
0 votes
1 answer 286 views
asked Oct 18, 2025 in General by yona
0 votes
1 answer 325 views
0 votes
1 answer 488 views
0 votes
1 answer 474 views
Welcome to Nestict Research Q&A, where you can ask questions and receive answers from other members of the community.

Before you ask, search the website to make sure your question has not been answered. If you are ready to ask, provide a title about your question and a detailed description of your problem.

...