-1

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.

jww
  • 97,681
  • 90
  • 411
  • 885
John Doof
  • 1
  • 1

1 Answers1

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