bind ip address when starting filer

fix https://github.com/chrislusf/seaweedfs/issues/290
This commit is contained in:
Chris Lu
2016-05-25 08:22:31 -07:00
parent 8e67c4f597
commit 45a12505f2
2 changed files with 4 additions and 2 deletions

View File

@@ -165,7 +165,7 @@ func runServer(cmd *Command, args []string) bool {
if *isStartingFiler {
go func() {
r := http.NewServeMux()
_, nfs_err := weed_server.NewFilerServer(r, *filerOptions.port, *filerOptions.master, *filerOptions.dir, *filerOptions.collection,
_, nfs_err := weed_server.NewFilerServer(r, *serverBindIp, *filerOptions.port, *filerOptions.master, *filerOptions.dir, *filerOptions.collection,
*filerOptions.defaultReplicaPlacement,
*filerOptions.redirectOnRead, *filerOptions.disableDirListing,
*filerOptions.secretKey,