SAP
1 min read
24

How to generate CSR with a new KEY on the command line

April 21, 2022
0

1. Use the below command in the application server openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr 2. Updated below details as required 3. After updating you will get the CSR file and Key file 4. Enter the command: cat server.csr 5. Next, cat server.key

Continue Reading