<< PREVIOUSNEXT >>

 

 

UBUNTU SERVER 14.X ,16.X AND 18.X

  1. Log in to the Ubuntu Host that has Apache Server installed

  2. If the Apache Server is running, stop it using the below commands:

    1. service apache2 stop

       

       

      OR

    2. <Apache_Directory>/apache2 -k stop

       

       

  3. Verify that all the httpd processes are stopped using the below command:

    1. ps -ef | grep -i apache2

       

       

  4. If the httpd processes are still running, kill them using:

    1. kill -9 <apache2-pid>

       

       

  5. Start the Apache Server with VSP-2.2.0 protection using the below command:

    1. /opt/virsec/vsp_memory/vsp-memory <Apache_Directory>/apache2 -k start

       

       

       

      OR

  6. Start the Apache Server with VSP-2.2.0 protection as a Service

    1. cd /usr/sbin/

       

       

    2. vi apachectl

       

       

    3. Append the below to the HTTPD argument:

      /opt/virsec/vsp_memory/vsp-memory

       

       

      1. Before Change:

         

        HTTPD=${APACHE_HTTPD:-/usr/sbin/apache2}

         

      2. After Change:

         

        HTTPD="/opt/virsec/vsp_memory/vsp-memory ${APACHE_HTTPD:-/usr/sbin/apache2}"

         

    4. Save the file

    5. Execute the below commands to start the service:

      1. systemctl start apache2

         

         

 

<< PREVIOUSNEXT >>