如何更改运行Pulsar的端口?

时间:2019-04-18 05:48:57

标签: python python-3.x apache-pulsar

我想与apache气流一起运行pulsar。问题是两者都在端口号8080上运行。我不想更改Airflow的配置,但是为了使脉冲发生器运行,我必须为其分配另一个端口。我正在使用一个Python库,该库在8080上运行气流。

我尝试浏览独立安装文档,但无法获取任何内容。我的目标是运行Pulsar的Python客户端。

如何更改Pulsar的端口配置?

2 个答案:

答案 0 :(得分:2)

您需要在webservicePort中更改conf/broker.conf的配置

这是github链接:https://github.com/apache/pulsar/blob/master/conf/broker.conf

...
# Port to use to server HTTP request
webServicePort=8080

# Port to use to server HTTPS request - By default TLS is disabled
webServicePortTls=

# Hostname or IP address the service binds on, default is 0.0.0.0.
bindAddress=0.0.0.0
...

答案 1 :(得分:1)

对于独立版本,您可以编辑conf/standalone.conf配置文件并设置webServicePort=8081