Hello Sagar,
As a result of the implementation of Apache SSL configuration, on RHEL, there is an additional configuraiton procedure that you must follow.
However as a pre-requisite please make sure that the following packages are installed on the target host. Note: This is REQUIRED before proceeding with the configuration procedure.
httpd:core Apache httpd setup
mod_ssl:Apache httpd SSL module
Once the packages are installed properly, all appropriate depndencies for the configuation procudure will be resloved. If you need assistance on installing these pre-requisite packages please reference the RHEL documention at either URL respectively:
Now that your pre-requisite packages are installed please perform the following for a successful Apache SSL setup for Mobiliser:
Configuration Procedure:
There are 3 configuration directives that can be migrated from the ssl.conf file, that is packaged with Mobiliser, to the ssl.conf file that is on the operating system. By copying the proper directives to the RHEL ssl.conf file you can solve your issue.
1. Locate the RHEL ssl.conf file at the following location
/etc/httpd/conf.d/ssl.conf
2. The default directives in the RHEL ssl.conf file are as follows
SSLCertificateFile /etc/pki/tls/certs/localhost.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
3. Change the directives in step 2 to the following
SSLCertificateFile /opt/sybase/httpd/certs/server.crt
SSLCertificateKeyFile /opt/sybase/httpd/keys/server.key
In addition to changing the directives described in the first 3 steps, a configuration directive needs to be added to the RHEL ssl.conf file. This will need to be added into the <VirtualHost> directive; it will be easier if you add the configuration towards the bottom of the directive to keep track of changes easier:
4. Add the following statement in the <VirtualHost> directive
Include /opt/sybase/httpd/conf/mobiliser_httpd_locations.conf
Example:
<VirtualHost_default_:443>
...(Configuration)
Include /opt/sybase/httpd/conf/mobiliser_httpd_locations.conf
</VirtualHost>
Please let me know if this resolves your issue.
Regards,
Marcus Walker