Set up a Virtual Private Server

From Parallel Library Services
Revision as of 17:52, 14 November 2021 by Simon (talk | contribs)
Jump to navigation Jump to search

https://hetzner.com

Internet service providers such as hetzner.com offer ways to host servers online. Their virtual private servers are useful to run websites with particular processing and traffic settings.

On the page https://hetzner.com/cloud there is an overview of what options are available for a VPS, including location, CPU speed, and options to extend storage:

Hetzner cloud.png

Click "login" at the top right, choose "cloud" and then in the new page that opens, enter your username and email address as per your registration.

Hetzner login.png

Once you have created your account and logged in, you will be presented with your ‘Projects’ screen, which groups VPSs together into common uses or projects. Make a new project and name it.

Hetzner projects.png

A message will flash saying that the project has been created. Click on the newly created project to begin making choices for:

  1. location
  2. image, with choices for OS images and apps
  3. type
  4. volumes
  5. network
  6. firewalls
  7. additonal features
  8. ssh keys
  9. name of server

Hetzner server options.png

For an installation of a wiki, my choices were:

  1. location - Nuremberg
  2. image, with choices for OS images and apps - Debian 11
  3. type - standard, CX21
  4. volumes - no selection
  5. network - no selection
  6. firewalls - no selection
  7. additonal features - no selection
  8. ssh keys - added my public key (see below)*
  9. name of server - parallel-wiki

If public SSH keys are not added at setup, you will receive the root password via email. I chose to add my public SSH key by copying the file on my computer in the path ~/.ssh/id_rsa.pub.

Hetzner ssh.png

When you are ready, click "create and buy now", and the server will be initialised. Make a note of the IP address of the server, to finish the SSH configuration.

I edited my SSH configuration file on my computer, found at ~/.ssh/config. Your config should look something like this, with the IP address of the server in the "Hostname" field.

# parallel-wiki
Host parallel-wiki
Port 22
User root
Hostname X.X.X.X
Identityfile ~/.ssh/id_rsa

With this configuration, I can use SSH to access the server by typing one line:

ssh parallel-wiki

A good, detailed guide to bootstrapping a VPS with hetzner.com is on this page:

http://the-internet-101.com/how-to-setup-a-vps-with-hetzner