zookeeper 3.5.0 修改管理控制台 jetty 的监听端口是通过参数-Dzookeeper.admin.serverPort=8088来实现的
而不是-Djetty.port=8088,源代码为
org.apache.zookeeper.server.admin.JettyAdminServer
中的64-67行
public JettyAdminServer() throws AdminServerException {
this(Integer.getInteger("zookeeper.admin.serverPort", DEFAULT_PORT),
System.getProperty("zookeeper.admin.commandURL", DEFAULT_COMMAND_URL));
}
常量public static final int DEFAULT_PORT = 8080;
版本3.4.6的源码好像不同,没仔细阅读
时间: 2024-11-08 22:55:28