Disable the Default HTTP Daemon

If your Oracle Communications Session Delivery Manager server is running a default HTTP daemon (HTTPD) process, disable that process from restarting.

  1. Login to the server as the root user.
  2. To discover if the HTTPD is installed or running:
    service httpd status

    The following message appears if the HTTPD is not installed. Continue to the next sections.

    httpd: unrecognized service 

    The following message appears if the HTTPD is installed but not running. Continue to the next sections.

    httpd is stopped

    A message similar to the following appears if the HTTPD is installed and running:

    httpd (pid 5644) is running...
  3. If the HTTPD is running, stop the HTTPD:
    service httpd stop
  4. Disable the HTTPD from restarting when the system reboots:
    chkconfig httpd off
  5. Verify that the HTTPD is not running:
    service httpd status

    Note:

    If your are using Oracle Linux 7 or later, use the following command:
    systemctl status httpd