Skip to content

Commit 47594c0

Browse files
authored
Merge pull request #318 from marklogic/feature/cloud-docs-fix
Added section on PDC connection info
2 parents 8f60f07 + 6957ad9 commit 47594c0

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

docs/common-options.md

+30
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,36 @@ or more forests for the database you wish to access, then you can set `--connect
171171
will often improve performance as Flux will be able to both connect to multiple hosts, thereby utilizing the app server
172172
threads available on each host, and also write directly to a forest on the host that it connects to.
173173

174+
### Connecting to Progress Data Cloud
175+
176+
To connect to Progress Data Cloud (PDC), you must set at least the following options:
177+
178+
{% tabs log %}
179+
{% tab log Unix %}
180+
```
181+
--host your-pdc-host-name \
182+
--port 443 \
183+
--auth-type cloud \
184+
--cloud-api-key your-key-goes-here
185+
```
186+
{% endtab %}
187+
{% tab log Windows %}
188+
```
189+
--host your-pdc-host-name ^
190+
--port 443 ^
191+
--auth-type cloud ^
192+
--cloud-api-key your-key-goes-here
193+
```
194+
{% endtab %}
195+
{% endtabs %}
196+
197+
You will most likely need to configure the `--base-path` option with the name of a path that proxies to a REST API
198+
app server in your PDC instance - e.g. `--base-path /ml/dev/ml/app-services`.
199+
Please check your PDC portal page for more information.
200+
201+
By default, Flux will use your JVM's default keystore and truststore for establishing an SSL connection to PDC. See
202+
the following sections for options on how to configure the SSL connection.
203+
174204
### Configuring one-way SSL
175205

176206
Flux supports both one-way and two-way SSL connections to MarkLogic (the term "SSL" is used as a synonym for "TLS" in

0 commit comments

Comments
 (0)