peterbecker opened a new issue #2530: Documentation issue: wrong file name in TLS instructions URL: https://github.com/apache/incubator-pulsar/issues/2530 #### Expected behavior Following the instructions for generating a server certificate at https://pulsar.incubator.apache.org/docs/latest/security/tls-transport/#Servercertificate-av2fql should provide me with a server certificate. #### Actual behavior The step labelled "… and sign it with the certificate authority." fails with: ``` proxy.csr.pem: No such file or directory ``` #### Steps to reproduce Follow the instructions on the page. #### System configuration **Pulsar version**: n/a #### Solution The step labelled "Generate the certificate request…" needs to be adjusted to use the "broker.csr.pem" file name as last argument, not "broker.cert.pem" - it's generating the CSR after all. It should read: ```bash openssl req -config openssl.cnf \ -key broker.key.pem -new -sha256 -out broker.csr.pem ````
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
