After creating a .key- and a .csr-file by following the steps of this tutorial (Step: Prepare SSL Certificate) it's not possible to do sudo sed -i -e '$a\' appbead.com.pem
. I get the error "file or folder not found". So I created the file and tried it again, but nothing happens - meaning, no data was written into the .pem-file I manually created.
Asked
Active
Viewed 1,379 times
-1
1 Answers
0
The file appbead.com.pem
does not exist in current directory. That's it. Most probably a previous step, that should create it, did not.

Oliv
- 10,221
- 3
- 55
- 76
-
Ah, now I got it. I have to simply save the .csr-file to .pem and the command `sudo sed -i -e '$a\' appbead.com.pem` adds the _new line_, mentioned in the tutorial. – John Doof Jan 25 '16 at 12:50