如何更改 Pulsar 运行 所在的端口?
How do I change the port on which Pulsar is running?
我想 运行 pulsar 和 apache airflow。问题是端口号 8080 上的两个 运行。我不想更改 Airflow 的配置,但为了使 pulsar 运行,我必须为其分配另一个端口。我正在使用 Python 库,它在 8080 上 运行s 气流。
我尝试查看独立安装文档,但无法通过它获得任何信息。我的目标是 运行 Pulsar 的 Python 客户端。
如何更改 Pulsar 的端口配置?
您需要更改 conf/broker.conf
中的 webservicePort
配置
这是 github link: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
...
对于单机,您可以编辑 conf/standalone.conf
配置文件并设置 webServicePort=8081
我想 运行 pulsar 和 apache airflow。问题是端口号 8080 上的两个 运行。我不想更改 Airflow 的配置,但为了使 pulsar 运行,我必须为其分配另一个端口。我正在使用 Python 库,它在 8080 上 运行s 气流。
我尝试查看独立安装文档,但无法通过它获得任何信息。我的目标是 运行 Pulsar 的 Python 客户端。
如何更改 Pulsar 的端口配置?
您需要更改 conf/broker.conf
webservicePort
配置
这是 github link: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
...
对于单机,您可以编辑 conf/standalone.conf
配置文件并设置 webServicePort=8081