So, I did the tide in the Orion Context Broker server instance and whenever I try to run contextBroker with the following command:
contextBroker -rush localhost:1234 -https -key privkey.pem -cert cert.csr
I get the following error:
E@18 :16:11 loadFile[1101]: error opening 'privkey.pem': No such file or directory X@18 :16:11 main[1258]: Error loading private server key from 'privkey.pem'
I generated my private key with the following command, I do not know if this is correct:
openssl genrsa -des3 -out privkey.pem 2048
And I generated my certificate with the following command:
openssl req -new -key privkey.pem -out cert.csr
Am I doing something wrong?
jiyin source share