Skip to content

Commit 7f66f35

Browse files
authored
Merge pull request #149 from oracle-samples/148-troubleshooting-adb-behind-vpn
Add troubleshooting for ADB on VPN
2 parents 90c874a + fc49a3c commit 7f66f35

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/content/help/troubleshooting/_index.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,24 @@ Set a rate limit based on the API Key restrictions.
3535
During the Evaluation in the **Testbed**, a database error occurs: `DPY-4011: the database or network closed the connection`
3636

3737
**_Solution_**:
38-
Increase the memory of the vector_memory_size. If this is an Oracle Autonomous Database, scale up the CPU.
38+
Increase the memory of the vector_memory_size. If this is an Oracle Autonomous Database, scale up the CPU.
39+
40+
## Autonomous Database behind VPN
41+
42+
**_Problem_**:
43+
Connection to an Autonomous database while inside a VPN fails.
44+
45+
**_Solution_**:
46+
Update the database connection string to include a `https_proxy` and `https_proxy_port`.
47+
48+
For example:
49+
50+
```text
51+
myadb_high = (
52+
description=(
53+
address=
54+
(protocol=tcps)(port=1522)
55+
(https_proxy=<proxy_host>)(https_proxy_port=<proxy_port>) # <-- Add
56+
(host=<adb_host>)
57+
)(connect_data=(service_name=s<service_name>))(security=(ssl_server_dn_match=yes))
58+
)```

0 commit comments

Comments
 (0)