1

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

我尝试浏览独立安装文档,但无法通过它获得任何东西。我的目标是运行 Pulsar 的 Python 客户端。

如何更改 Pulsar 的端口配置?

4

2 回答 2

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
...
于 2019-04-18T06:14:32.160 回答
1

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

于 2019-04-18T16:40:56.033 回答