Skip to content

Commit

Permalink
Addded examples for Import-OciServerCertificate and Remove-OciServerC…
Browse files Browse the repository at this point in the history
…ertificate to tutorial
  • Loading branch information
ffeldhaus committed Feb 13, 2017
1 parent 985ab2d commit 720623a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions OnCommand-Insight-Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ Connect-OciServer -Name $ServerName -Credential $Credential

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

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.

```powershell
Import-OciServerCertificate
```

You can also remove the certificate from the Trusted Root Certification Authorities with
```powershell
Remove-OciServerCertificate
```

```powershell
Connect-OciServer -Name $ServerName -Credential $Credential -Insecure
```
Expand Down

0 comments on commit 720623a

Please sign in to comment.