File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,16 @@ ORACLE_SID=${ORACLE_SID:-XE}
77
88. oraenv
99
10+ export WALLET_BASE_PATH=$ORACLE_BASE /oradata/dbconfig/$ORACLE_SID /wallets
1011export BUNDLE_FILE=/etc/pki/tls/cert.pem
11- export WALLET_PATH=$ORACLE_BASE /admin/ $ORACLE_SID /tls_wallet
12+ export WALLET_PATH=$WALLET_BASE_PATH /tls_wallet
1213export WALLET_PWD=$ORACLE_PWD
1314export WALLET_PWD_CONFIRM=$WALLET_PWD
1415
16+ if [ ! -d $WALLET_BASE_PATH ]; then
17+ mkdir -p $WALLET_BASE_PATH
18+ fi
19+
1520sh -c " $( curl -fsSL https://gist.githubusercontent.com/fuzziebrain/202f902d8fc6d8de586da5097a501047/raw/78dba192f4c15f59d14ac17491734897fc440e40/createBaseWallet.sh) "
1621
1722echo " Setup APEX Wallet"
@@ -32,4 +37,4 @@ sqlplus / as sysdba << EOF
3237 commit;
3338 end;
3439 /
35- EOF
40+ EOF
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ APEX_REST_PUBLIC_USER_PWD=Oracle18_3
99ORDS_PUBLIC_USER_PWD=Oracle18_4
1010INSTALL_FILE_APEX=apex_19.1.zip
1111INSTALL_FILE_ORDS=ords-19.1.0.092.1545.zip
12- INSTALL_FILE_JAVA=jdk-8u201 -linux-x64.tar.gz
12+ INSTALL_FILE_JAVA=jdk-8u211 -linux-x64.tar.gz
1313DOCKER_ORDS_PORT=50080
1414DOCKER_EM_PORT=55500
1515DOCKER_DB_PORT=51521
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ APEX_REST_PUBLIC_USER_PWD=Oracle19_3
99ORDS_PUBLIC_USER_PWD=Oracle19_4
1010INSTALL_FILE_APEX=apex_19.1.zip
1111INSTALL_FILE_ORDS=ords-19.1.0.092.1545.zip
12- INSTALL_FILE_JAVA=jdk-8u201 -linux-x64.tar.gz
12+ INSTALL_FILE_JAVA=jdk-8u211 -linux-x64.tar.gz
1313DOCKER_ORDS_PORT=50080
1414DOCKER_EM_PORT=55500
1515DOCKER_DB_PORT=51521
You can’t perform that action at this time.
0 commit comments