aboutsummaryrefslogtreecommitdiff
path: root/weed/command/shell.go
diff options
context:
space:
mode:
authorshibinbin <shibinbin@megvii.com>2019-10-25 17:39:29 +0800
committershibinbin <shibinbin@megvii.com>2019-10-25 17:39:29 +0800
commitfe1f469978eae6ab57d3b2b93ab82a57468302c4 (patch)
tree547fb167010b2b2dd26c93802e7ec9b75bf84b6e /weed/command/shell.go
parent3464f21b5cc701dfd6acd9d652ad643c459f1efa (diff)
downloadseaweedfs-fe1f469978eae6ab57d3b2b93ab82a57468302c4.tar.xz
seaweedfs-fe1f469978eae6ab57d3b2b93ab82a57468302c4.zip
fix : change default filer.port to 8888
Diffstat (limited to 'weed/command/shell.go')
-rw-r--r--weed/command/shell.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/shell.go b/weed/command/shell.go
index 7a328d8c1..eae68c3be 100644
--- a/weed/command/shell.go
+++ b/weed/command/shell.go
@@ -15,7 +15,7 @@ func init() {
cmdShell.Run = runShell // break init cycle
shellOptions.Masters = cmdShell.Flag.String("master", "localhost:9333", "comma-separated master servers")
filerHost := cmdShell.Flag.String("filer.host", "localhost", "comma-separated filer server host")
- flierPort := cmdShell.Flag.Int64("filer.port", 9333, "comma-separated filer server port")
+ flierPort := cmdShell.Flag.Int64("filer.port", 8888, "comma-separated filer server port")
directory := cmdShell.Flag.String("filer.dir", "/", "comma-separated filer server directory")
shellOptions.FilerHost = *filerHost
shellOptions.FilerPort = *flierPort