Skip to content

Commit 720623a

Browse files
committed
Addded examples for Import-OciServerCertificate and Remove-OciServerCertificate to tutorial
1 parent 985ab2d commit 720623a

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

OnCommand-Insight-Tutorial.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,17 @@ Connect-OciServer -Name $ServerName -Credential $Credential
4040

4141
If the login fails, it is often due to an untrusted certificate of the OCI Server. You can ignore the certificate check with the `-insecure` option
4242

43+
Additionally, you can now import the OCI Server certificate into the Trusted Root Certification Authorities. This allows connections to be trusted via PowerShell and Browsers such as Internet Explorer.
44+
45+
```powershell
46+
Import-OciServerCertificate
47+
```
48+
49+
You can also remove the certificate from the Trusted Root Certification Authorities with
50+
```powershell
51+
Remove-OciServerCertificate
52+
```
53+
4354
```powershell
4455
Connect-OciServer -Name $ServerName -Credential $Credential -Insecure
4556
```

0 commit comments

Comments
 (0)