2020-08-18 17:35:39 -07:00
|
|
|
BINARY = weed
|
|
|
|
|
|
|
|
SOURCE_DIR = .
|
|
|
|
|
2021-11-09 12:34:50 -08:00
|
|
|
all: install
|
2020-08-18 17:35:39 -07:00
|
|
|
|
|
|
|
.PHONY : clean debug_mount
|
|
|
|
|
2021-11-09 12:34:50 -08:00
|
|
|
install:
|
|
|
|
go install
|
|
|
|
|
2020-08-18 17:35:39 -07:00
|
|
|
clean:
|
|
|
|
go clean $(SOURCE_DIR)
|
|
|
|
rm -f $(BINARY)
|
|
|
|
|
2020-09-12 04:05:42 -07:00
|
|
|
debug_shell:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./weed -- shell
|
2020-09-12 04:05:42 -07:00
|
|
|
|
2020-08-18 17:35:39 -07:00
|
|
|
debug_mount:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +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 12:07:43 -07:00
|
|
|
|
|
|
|
debug_server:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +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 04:05:42 -07:00
|
|
|
|
|
|
|
debug_volume:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +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 12:53:56 -07:00
|
|
|
|
|
|
|
debug_webdav:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./weed -- -v=4 webdav
|
2020-12-08 22:27:04 -08:00
|
|
|
|
|
|
|
debug_s3:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./weed -- -v=4 s3
|
2021-02-28 16:22:27 -08:00
|
|
|
|
|
|
|
debug_filer_copy:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
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 01:21:42 -07:00
|
|
|
|
2021-09-04 13:46:49 -07:00
|
|
|
debug_filer_remote_sync_dir:
|
2021-08-08 01:21:42 -07:00
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +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-12 18:10:59 -07:00
|
|
|
|
2021-09-04 13:46:49 -07:00
|
|
|
debug_filer_remote_sync_buckets:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
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-09-04 13:46:49 -07:00
|
|
|
|
2021-08-12 18:10:59 -07:00
|
|
|
debug_master_follower:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./weed -- -v=4 master.follower
|
2022-08-07 00:55:49 -07:00
|
|
|
|
|
|
|
debug_filer_sync:
|
|
|
|
go build -gcflags="all=-N -l"
|
2022-12-01 22:09:14 +00:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./weed -- -v=4 filer.sync -a 192.168.2.7:8888 -b 192.168.2.7:8889 -isActivePassive -b.debug
|