Kafka启动命令使用示例
kafka-server-start config/server.properties
config/server.properties
是Kafka服务器的配置文件。config/server.properties
是Kafka服务器的配置文件。kafka-server-start config/server-1.properties & kafka-server-start config/server-2.properties & kafka-server-start config/server-3.properties
config/server-1.properties
, config/server-2.properties
, config/server-3.properties
是三个Kafka服务器的配置文件。kafka-server-start --zookeeper localhost:2181 config/server.properties
localhost:2181
是ZooKeeper的地址。kafka-server-start --jmx-port 9999 config/server.properties
9999
是JMX的端口号。kafka-server-start --ssl-keystore-location /path/to/keystore.jks --ssl-keystore-password secret --ssl-key-password secret config/server.properties
/path/to/keystore.jks
是SSL密钥库的路径。secret
启动多个Kafka服务器
rrreeeconfig/server-1.properties
, config/server-2.properties
, config/server-3.properties
是三个Kafka服务器的配置文件。localhost:2181
是ZooKeeper的地址。
使用JMX启动Kafka服务器
9999
是JMX的端口号。/path/to/keystore.jks
是SSL密钥库的路径。secret
是SSL密钥库的密码。
以上是Kafka启动命令的示例和注意事项的详细内容。更多信息请关注PHP中文网其他相关文章!