记录一次奇葩的zookeeper报错
zookeeper报错:
Address already in use: bind
原先以为是2181端口被占用
使用 下面命令查询后发现并没有进程占用此端口
netstat -aon|findstr ':2181'
查了N多东西后才发现是hyper-v占用了一堆端口
查询命令:
netsh interface ipv4 show excludedportrange protocol=tcp
通过下面的命令修改保留的端口范围
netsh int ipv4 set dynamicport tcp start=20000 num=16383
完美