Skip to content

Commit 16afd1f

Browse files
Clare Zheng (Shanghai Wicresoft Co Ltd)Clare Zheng (Shanghai Wicresoft Co Ltd)
authored andcommitted
Update format
1 parent 2f2059b commit 16afd1f

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

articles/data-factory/connector-oracle.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,24 +128,21 @@ To enable encryption on Oracle connection, you have two options:
128128
2. In the service, configure the Oracle connection string with `EncryptionMethod=1` and the corresponding `TrustStore` value. For example, `Host=<host>;Port=<port>;Sid=<sid>;User Id=<username>;Password=<password>;EncryptionMethod=1;TrustStore= data:// -----BEGIN CERTIFICATE-----<certificate content>-----END CERTIFICATE-----`
129129

130130
>[!Note]
131-
>- The value of trust store field should be prefixed with `data://`.
131+
>- The value of the `TrustStore` field should be prefixed with `data://`.
132132
>- When specifying content for multiple certificates, specify the content of each certificate between `-----BEGIN CERTIFICATE-----` and `-----END CERTIFICATE-----`. The number of dashes (`-----`) should be the same before and after both `BEGIN CERTIFICATE` and `END CERTIFICATE`. For example:<br>
133-
>```
134-
>-----BEGIN CERTIFICATE-----<certificate content 1>-----END CERTIFICATE-----`
135-
>-----BEGIN CERTIFICATE-----<certificate content 2>-----END CERTIFICATE-----`
136-
>-----BEGIN CERTIFICATE-----<certificate content 3>-----END CERTIFICATE-----`
137-
>```
133+
>`-----BEGIN CERTIFICATE-----<certificate content 1>-----END CERTIFICATE-----`<br>
134+
>`-----BEGIN CERTIFICATE-----<certificate content 2>-----END CERTIFICATE-----`<br>
135+
>`-----BEGIN CERTIFICATE-----<certificate content 3>-----END CERTIFICATE-----`
138136
> - The `TrustStore` field supports content up to 8192 characters in length.
139137

140-
- **Method 3**:
141-
138+
- **Method 3**:
142139
1. Create the `truststore` file with strong ciphers like AES256.
143-
140+
144141
```
145142
openssl pkcs12 -in [Full Path to the DER/PEM Certificate including the name of the DER/PEM Certificate] -out [Path and name of TrustStore] -passout pass:[Keystore PWD] -keypbe AES-256-CBC -certpbe AES-256-CBC -nokeys -export
146143
```
147144
2. Place the `truststore` file on the self-hosted integration runtime machine. For example, place the file at `C:\MyTrustStoreFile`.
148-
145+
149146
3. In the service, configure the Oracle connection string with `EncryptionMethod=1` and the corresponding `TrustStore`/`TrustStorePassword` value. For example, `Host=<host>;Port=<port>;Sid=<sid>;User Id=<username>;Password=<password>;EncryptionMethod=1;TrustStore=C:\\MyTrustStoreFile;TrustStorePassword=<trust_store_password>`.
150147

151148

articles/data-factory/connector-troubleshoot-oracle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ This article provides suggestions to troubleshoot common problems with the Oracl
5353

5454
## Error code: UserErrorFailedToConnectOdbcSource
5555

56-
**Message**: `"Cannot load trust store", or "SSL Handshake Failure reason [error:OA000086:SSL routines::certificate verify failed]"`
56+
- **Message**: `"Cannot load trust store", or "SSL Handshake Failure reason [error:OA000086:SSL routines::certificate verify failed]"`
5757

58-
**Cause**: The `truststore` is not appropriate for OpenSSL 3.0, as the `truststore` file is generated using weak ciphers like RC4, MD5 and SHA1.
58+
- **Cause**: The `truststore` is not appropriate for OpenSSL 3.0, as the `truststore` file is generated using weak ciphers like RC4, MD5 and SHA1.
5959

60-
**Recommendation**: You need to re-create the `truststore` using the strong ciphers like AES256. Refer to this [section](connector-oracle.md#linked-service-properties) for details about setting up TLS connection using `truststore`.
60+
- **Recommendation**: You need to re-create the `truststore` using the strong ciphers like AES256. Refer to this [section](connector-oracle.md#linked-service-properties) for details about setting up the TLS connection using `truststore`.
6161

6262
## Related content
6363

0 commit comments

Comments
 (0)