lhotari commented on pull request #11681: URL: https://github.com/apache/pulsar/pull/11681#issuecomment-900151810
without making any changes, disabling non-TLS service ports works for Pulsar Stanadlone when Function Worker is disabled and when `loadManagerClassName=org.apache.pulsar.broker.loadbalance.impl.ModularLoadManagerImpl` setting is used. I verified by appending these lines to conf/standalone.conf ``` brokerServicePort= brokerServicePortTls=6651 webServicePort= webServicePortTls=8443 brokerClientTlsEnabled=true tlsEnabled=true tlsAllowInsecureConnection=true tlsCertificateFilePath=pulsar-broker/src/test/resources/authentication/tls-http/broker.cert.pem tlsKeyFilePath=pulsar-broker/src/test/resources/authentication/tls-http/broker.key-pk8.pem tlsTrustCertsFilePath=pulsar-broker/src/test/resources/authentication/tls-http/ca.cert.pem loadManagerClassName=org.apache.pulsar.broker.loadbalance.impl.ModularLoadManagerImpl ``` and starting with `./bin/pulsar standalone --no-functions-worker --no-stream-storage` @sijie This is the reason why this fix contains some changes to Functions worker configuration. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
