etolabo / kumofs

kumofs is a scalable and highly available distributed key-value store.
http://kumofs.sourceforge.net/
Other
301 stars 16 forks source link

kumo server and manager are binding to too many IPs #8

Closed lukenowak closed 5 years ago

lukenowak commented 13 years ago

I am calling kumo_server with options:

kumo-server -l 127.0.0.1:44553 -s kumodb.tch -m localhost:1

But this process is binded to all ips on port 44553:

lsof -Pni | grep LISTEN | grep 44553 kumo-serv 16161 luke 3u IPv4 666101115 0t0 TCP *:44553 (LISTEN)

The same with kumo-manager:

kumo-manager -a -l 127.0.0.1:44552

Process is binded to all ips:

lsof -Pni | grep LISTEN | grep 44552 kumo-mana 20603 luke 3u IPv4 666234318 0t0 TCP *:44552 (LISTEN)

So I cannot run multiple server or managers listenting on same port but different ips on same box.