Installing Server
Install the httpd daemon and restart
sudo yum install httpd -ysudo systemctl start httpd.serviceCheck Status
sudo systemctl status httpd.servicesudo systemctl enable httpd.serviceConfigure Swappiness and Installing NTP
Configure VM Swappiness
sudo vi /etc/sysctl.confAdd this line:
vm.swappiness=0Reboot the machine to make the changes effective
Install the ntp package
sudo yum install ntp -yStart the service and verify its status.
sudo systemctl start ntpd.service
sudo systemctl status ntpd.serviceEnsure that the service starts automatically on reboot.
sudo systemctl enable ntpd.serviceLast updated