Browse Source

use ip.bind to listen for grpc calls

help to avoid https://github.com/chrislusf/seaweedfs/issues/952
pull/991/head
Chris Lu 6 years ago
parent
commit
4c392ca762
  1. 2
      weed/command/server.go

2
weed/command/server.go

@ -217,7 +217,7 @@ func runServer(cmd *Command, args []string) bool {
// starting grpc server
grpcPort := *masterPort + 10000
grpcL, err := util.NewListener(*serverIp+":"+strconv.Itoa(grpcPort), 0)
grpcL, err := util.NewListener(*serverBindIp+":"+strconv.Itoa(grpcPort), 0)
if err != nil {
glog.Fatalf("master failed to listen on grpc port %d: %v", grpcPort, err)
}

Loading…
Cancel
Save