Created a new OpenSSL key and I don't know where my CSR file is?

7,174

Search for the file in your system with:

sudo find / -name "[server name].csr"
Share:
7,174

Related videos on Youtube

Kane Mitchell
Author by

Kane Mitchell

Updated on September 18, 2022

Comments

  • Kane Mitchell
    Kane Mitchell over 1 year

    Still learning a lot about Ubuntu and server management.

    I need to generate a new SSL certificate and I have followed a tutorial on how to create the CSR file.

    I ran the following command:

    openssl req -new -newkey rsa:2048 -nodes -keyout [serverName].key -out [serverName].csr
    

    I then filled out the information needed. I believe I have created the .CSR file but I don't know where.

    I need this obviously to get the SSL certificate so where should I find it to download it to?

    THANK YOU.

  • SPQR
    SPQR over 6 years
    Created an account just to upvote this, thanks!