1) Set WLS Environment
C:\Oracle\Middleware\wlserver_10.3\server\bin>setWLSEnv.cmd
2) Go to the lib directory and covert WLS Root Certificate to .pem format
C:\Oracle\Middleware\wlserver_10.3\server\lib>java utils.der2pem CertGenCA.der
C:\Oracle\Middleware\wlserver_10.3\server\lib>dir CertGen*
Volume in drive C is Windows8_OS
Volume Serial Number is 8C04-A406
Directory of C:\Oracle\Middleware\wlserver_10.3\server\lib
01/03/2015 09:29 PM 540 CertGenCA.der
01/19/2015 07:47 PM 786 CertGenCA.pem
01/03/2015 09:29 PM 388 CertGenCAKey.der
3) Go to D:\Apache2.2\conf\httpd.conf and add the following entries
1
2
3
4
5
6
7
8
9
10
11
12
13
14
LoadModule weblogic_module modules/mod_wl128_22.so
<
Location
/console>
SetHandler weblogic-handler
SecureProxy ON
TrustedCAFile C:/Oracle/Middleware/wlserver_10.3/server/lib/CertGenCA.pem
RequireSSLHostMatch false
WebLogicHost localhost
WebLogicPort 7002
WLLogFile D:/temp/wlproxy.log
WLTempDir D:/temp
Debug ALL
</
Location
>
Note: The Admin/Managed Server should be up and running on the ip& port mentioned in the location directive.
Volume in drive C is Windows8_OS
Volume Serial Number is 8C04-A406
01/19/2015 07:47 PM 786 CertGenCA.pem
01/03/2015 09:29 PM 388 CertGenCAKey.der
3) Go to D:\Apache2.2\conf\httpd.conf and add the following entries
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| LoadModule weblogic_module modules/mod_wl128_22.so < Location /console> SetHandler weblogic-handler SecureProxy ON TrustedCAFile C:/Oracle/Middleware/wlserver_10.3/server/lib/CertGenCA.pem RequireSSLHostMatch false WebLogicHost localhost WebLogicPort 7002 WLLogFile D:/temp/wlproxy.log WLTempDir D:/temp Debug ALL </ Location > |
No comments:
Post a Comment