You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/3.0/content/userguide/database/connect-db.md
+31-2Lines changed: 31 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,9 +90,38 @@ domainInfo:
90
90
javax.net.ssl.trustStorePassword : <atp wallet password when generating the wallet from Oracle Cloud Console>
91
91
oracle.net.tns_admin: <optional: absolute path of the unzipped wallet root directory (outside of the archive), if the wallet.zip is not included in the archive>
92
92
```
93
-
The database wallet can be included in the archive file under `atpwallet` zipentry structure
93
+
The database wallet can be included in the archive file as a named entry (example uses `rcu` as that name) under the
94
+
`dbWallets` archive structure, either as a zip file:
94
95
95
-
`atpwallet/Walletxyz.zip`
96
+
`wlsdeploy/dbWallets/rcu/Walletxyz.zip`
97
+
98
+
or as the unzipped contents:
99
+
100
+
- `wlsdeploy/dbWallets/rcu/cwallet.sso`
101
+
- `wlsdeploy/dbWallets/rcu/ewallet.p12`
102
+
- `wlsdeploy/dbWallets/rcu/ewallet.pem`
103
+
- `wlsdeploy/dbWallets/rcu/keystore.jks`
104
+
- `wlsdeploy/dbWallets/rcu/ojdbc.properties`
105
+
- `wlsdeploy/dbWallets/rcu/sqlnet.ora`
106
+
- `wlsdeploy/dbWallets/rcu/tnsnames.ora`
107
+
- `wlsdeploy/dbWallets/rcu/truststore.jks`
108
+
109
+
At runtime, WDT will extract the files (if they are in a zip file) to `$DOMAIN_HOME/wlsdeploy/dbWallets/rcu/` so that they can be
110
+
referenced directly from the model using the normal relative path. For example:
111
+
112
+
```yaml
113
+
domainInfo:
114
+
RCUDbInfo:
115
+
databaseType : 'ATP'
116
+
rcu_prefix : DEV
117
+
rcu_admin_password: <database admin password is required only when you specify -run_rcu flag>
0 commit comments