2020-08-19 00:35:39 +00:00
|
|
|
BINARY = weed
|
|
|
|
|
|
|
|
SOURCE_DIR = .
|
|
|
|
|
2021-11-09 20:34:50 +00:00
|
|
|
all: install
|
2020-08-19 00:35:39 +00:00
|
|
|
|
|
|
|
.PHONY : clean debug_mount
|
|
|
|
|
2021-11-09 20:34:50 +00:00
|
|
|
install:
|
|
|
|
go install
|
|
|
|
|
2020-08-19 00:35:39 +00:00
|
|
|
clean:
|
|
|
|
go clean $(SOURCE_DIR)
|
|
|
|
rm -f $(BINARY)
|
|
|
|
|
2020-09-12 11:05:42 +00:00
|
|
|
debug_shell:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- shell
|
|
|
|
|
2020-08-19 00:35:39 +00:00
|
|
|
debug_mount:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-01-13 09:33:13 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 mount -dir=~/tmp/mm -cacheCapacityMB=0 -filer.path=/ -umask=000
|
2020-08-19 19:07:43 +00:00
|
|
|
|
|
|
|
debug_server:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-01-13 09:33:13 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- server -dir=~/tmp/99 -filer -volume.port=8343 -s3 -volume.max=0 -master.volumeSizeLimitMB=1024 -volume.preStopSeconds=1
|
2020-09-12 11:05:42 +00:00
|
|
|
|
|
|
|
debug_volume:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-01-13 09:33:13 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- volume -dir=~/tmp/100 -port 8564 -max=30 -preStopSeconds=2
|
2020-10-16 19:53:56 +00:00
|
|
|
|
|
|
|
debug_webdav:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 webdav
|
2020-12-09 06:27:04 +00:00
|
|
|
|
|
|
|
debug_s3:
|
|
|
|
go build -gcflags="all=-N -l"
|
2020-12-19 09:27:09 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 s3
|
2021-03-01 00:22:27 +00:00
|
|
|
|
|
|
|
debug_filer_copy:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 filer.backup -filer=localhost:8888 -filerProxy -timeAgo=10h
|
2021-08-08 08:21:42 +00:00
|
|
|
|
2021-09-04 20:46:49 +00:00
|
|
|
debug_filer_remote_sync_dir:
|
2021-08-08 08:21:42 +00:00
|
|
|
go build -gcflags="all=-N -l"
|
2021-08-16 06:07:58 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 filer.remote.sync -filer="localhost:8888" -dir=/buckets/b2 -timeAgo=1h
|
2021-08-13 01:10:59 +00:00
|
|
|
|
2021-09-04 20:46:49 +00:00
|
|
|
debug_filer_remote_sync_buckets:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 filer.remote.sync -filer="localhost:8888" -createBucketAt=cloud1 -timeAgo=1h
|
|
|
|
|
2021-08-13 01:10:59 +00:00
|
|
|
debug_master_follower:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 master.follower
|