tuteng edited a comment on issue #7287: URL: https://github.com/apache/pulsar/issues/7287#issuecomment-650465701
Hello, I have encountered the same problem and solved it through the following configuration 1. check whether the certificate is correct ``` openssl x509 -in admin.cert.pem -noout -text openssl x509 -in broker.cert.pem -noout -text ``` Make sure that these two certificates do not use the same common name, otherwise, errors may occur 2. Add configuration `useTls=true` to `conf/functions_worker.yml` file in standalone environment. This is an example of functions_worker.yml in a standalone environment. https://github.com/streamnative/pulsar-beat-output/blob/master/tlsConfig/functions_worker.yml @97arushisharma ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
