Nautilus system admin's team is planning to deploy a front end application for their backup utility on Nautilus Backup Server, so that they can manage the backups of different websites from a graphical user interface. They have shared requirements to set up the same; please accomplish the tasks as per detail given below:
a. Install Apache Server on Nautilus Backup Server and configure it to use 8087 port (do not bind it to 127.0.0.1 only, keep it default i.e let Apache listen on server's IP, hostname, localhost, 127.0.0.1 etc).
d. There is a sample index file /home/index.html on Jump Host, copy that file to Apache's document root.
ssh clint@stbkp01
sudo yum install -y httpd
sudo yum install -y epel-release
sudo yum install -y nginx
sudo vi /etc/httpd/conf/httpd.conf
Listen 6000
#Go to ServerName and uncomment by removing # and write 172.16.238.16:6000
ServerName 172.16.238.16:6000
sudo systemctl enable httpd
sudo systemctl restart httpd
sudo vi /etc/nginx/nginx.conf
sudo systemctl restart nginx
scp /home/index.html clint@stbkp01:/tmp
sudo cp /tmp/index.html /var/www/html
curl http://172.16.238.16:8095