Skip to content

Commit 9da84a5

Browse files
[Doc-a-thon] Updating create-client-certificate.md
Adding commands for other Linux distros to make it Linux agnostic
1 parent f6ea046 commit 9da84a5

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

articles/confidential-ledger/create-client-certificate.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: confidential-ledger
55
author: msmbaldwin
66
ms.service: confidential-ledger
77
ms.topic: overview
8-
ms.date: 11/14/2022
8+
ms.date: 0411/2023
99
ms.author: mbaldwin
1010

1111
---
@@ -20,7 +20,24 @@ You will need a certificate in PEM format. You can create more than one certific
2020
We recommend using OpenSSL to generate certificates. If you have git installed, you can run OpenSSL in the git shell. Otherwise, you can install OpenSSL for your OS.
2121

2222
- **Windows**: Install [chocolatey for Windows](https://chocolatey.org/install), open a PowerShell terminal windows in admin mode, and run `choco install openssl`. Alternatively, you can install OpenSSL for Windows directly from [here](http://gnuwin32.sourceforge.net/packages/openssl.htm).
23-
- **Linux**: Run `sudo apt-get install openssl`
23+
- **Linux**:
24+
- Ubuntu:
25+
26+
```bash
27+
sudo apt-get install openssl
28+
```
29+
30+
- RHEL/CentOS:
31+
32+
```bash
33+
sudo yum install openssl -y
34+
```
35+
36+
- SUSE:
37+
38+
```bash
39+
sudo zypper install openssl
40+
```
2441

2542
You can then generate a certificate by running `openssl` in a Bash or PowerShell terminal window:
2643

0 commit comments

Comments
 (0)