#!/bin/bash
# stoping already running server
killall -9 httpd >/dev/null 2>&1

echo "Starting HTTPD"
/bin/nice -n 19 /usr/sbin/httpd

