Skip to content

Commit 2cc2b0d

Browse files
authored
Add files via upload
0 parents  commit 2cc2b0d

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

Config Steps.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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

0 commit comments

Comments
 (0)