Skip to content

Commit

Permalink
Update grpc-config.md
Browse files Browse the repository at this point in the history
Fixed command arguments order to make it working. Putting argument after size was not in correct order and causing *Extra arguments given.* error.

Signed-off-by: Arpit Jaswani <[email protected]>
  • Loading branch information
arpit-jaswani authored and poiana committed Feb 4, 2025
1 parent 015dd05 commit 817be3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/developer-guide/grpc/grpc-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ In the meantime, use the following script to generate the certificates.
Run the following commands:

```bash
$ openssl genrsa -des3 -out ca.key 4096 -passout pass:1234
$ openssl genrsa -des3 -passout pass:1234 -out ca.key 4096
$ openssl req -new \
-x509 \
Expand All @@ -91,7 +91,7 @@ $ openssl req -new \
Run the following command:

```bash
$ openssl genrsa -des3 -out server.key 4096 -passout pass:1234
$ openssl genrsa -des3 -passout pass:1234 -out server.key 4096
$ openssl req -new \
-key server.key \
Expand Down

0 comments on commit 817be3b

Please sign in to comment.