File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
docs/content/help/troubleshooting Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -35,4 +35,24 @@ Set a rate limit based on the API Key restrictions.
3535During 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+ )```
You can’t perform that action at this time.
0 commit comments