Rob's web

Servers

Een server is een computer die, of een programma dat diensten verleent aan clients. In de eerste betekenis wordt met server de fysieke computer aangeduid waarop een programma draait dat deze diensten verleent.

In de praktijk komen er verschillende combinaties van hardware en serverprogramma's voor:

Andere termen die gebruikt worden voor serverprogramma's zijn daemon (UNIX/Linux) en service (Windows).

Building a server with linux

When you start building an server you has to know:

Work through the list in the order they are for optimum server building. Check that everytyhing works before going to the next item.

Hardware

For a small-busines or private server you can recycle a 64 bit desktop system. Graphic video is not needed after install, so you can use a simple plugin board or the onboard one.

I have a CentOS 7 system running with 2048 MB RAM and three disks.

User root

There are two way to run as root:

  1. Login as root
  2. As normal user use $ sudo ....

I login as root. De rootcursor is #. sudo users are not set after the install.

Tip

Before adding a deamon run:

# yum -y update

This ensures that the OS is up to date.

Links