File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ Steps :
2
+
3
+ 1. yum update -y (optional)
4
+ 2. yum install httpd
5
+ 3. systemctl start httpd -y
6
+ 4. copy mod_wl_24.so to /etc/httpd/modules
7
+ 5. cd /etc/ld.so.conf.d
8
+ echo /u02/softwares/WLSPlugin14/lib > wlsplugin.conf
9
+ ldconfig
10
+ reboot
11
+ 6. Disable SELinux vi /etc/selinux/config
12
+ reboot
13
+ 7. wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
14
+ yum install perl -y
15
+ ./config (openssl 1.1)
16
+ make
17
+ make install
18
+
19
+ ln -s /usr/local/lib64/libssl.so.1.1 /usr/lib64/libssl.so.1.1
20
+ ln -s /usr/local/lib64/libssl.so.1.1 /usr/lib/libssl.so.1.1
21
+
22
+ ln -s /usr/local/lib64/libcrypto.so.1.1 /usr/lib64/libcrypto.so.1.1
23
+ ln -s /usr/local/lib64/libcrypto.so.1.1 /usr/lib/libcrypto.so.1.1
24
+
25
+ 8. apachectl start
26
+
27
+
28
+
29
+
30
+ <Location /console>
31
+ SetHandler weblogic-handler
32
+ WebLogicHost oracle-vm.weblogic.com
33
+ WebLogicPort 7001
34
+ </Location>
35
+
36
+
37
+ <Location /SampleWebApp>
38
+ SetHandler weblogic-handler
39
+ WebLogicCluster oracle-vm.weblogic.com:7003,oracle-vm.weblogic.com:7005
40
+ </Location>
41
+
42
+
43
+
44
+
45
+
46
+ http://oracle-vm.weblogic.com/SampleWebApp?__WebLogicBridgeConfig
You can’t perform that action at this time.
0 commit comments