1) Set WLS Environment C:OracleMiddlewarewlserver_10.3serverbin>setWLSEnv.cmd 2) Go to the lib directory and covert WLS Root Certificate to .pem format C:OracleMiddlewarewlserver_10.3serverlib>java utils.der2pem CertGenCA.der C:OracleMiddlewarewlserver_10.3serverlib>dir CertGen* Volume in drive C is Windows8_OS Volume Serial Number is 8C04-A406 Directory of C:OracleMiddlewarewlserver_10.3serverlib
Continue readingTag: apache
Apache Administration FAQ’s
How to disable Case Sensitivity in Apache? Apache is case sensitive. When you application is hosted in case-insensitive webserver(like IIS) and moved to case-sensitive webserver (like Apache) you may get some problems related to non availability of URLS(HTTP 404 error).
Continue readingConfigure Apache Webserver with Weblogic Server
Step 1) Make sure the Apache server runs on port 8080.( This is because sometimes IIS, or some antivirus s/w runs on that port).This can be done by modifying the httpd.conf present at D:Program FilesApache GroupApache2conf Modify the Listen port
Continue readingConfigure Apache WebServer with Jboss cluster.
1:- Create a cluster of Jboss server instances. a:- Copy the folder ’all’ under the server directory i.e. the location JBOSS_HOME b:- Rename it as Noode1 and Node2 which would be acting as the two Jboss instances within the cluster.
Continue readingConfiguring two way SSL between Client and Weblogic server with Apache proxying the request.
Configure Apache for SSL Create the certificates using openssl (present in apache_homebin) using the below steps: openssl genrsa -des3 -out server.key 1024 openssl req -config ..confopenssl.cnf -new -key server.key -out localhost openssl x509 -req -days 730 -in localhost -signkey server.key
Continue reading