Hello All,
I am trying to create a private ipfs network to replicate files between two sites - remote1 and remote2
I was able to get the webui working by importing the version 22.0 webui by doing
ipfs dag import ipfs-webui@v2.22.0.car on one site, which then made it available when i browser to
http://:5001/webui for both sites.
Once in the webui, I set up a custom pin service for remote1 pointing to remote2, and for remote2 pointing to remote 1.
On remote1, I did the following
user@ipfs:~/ipfs-tutorial$ ipfs add -w sample1GB.bin
added Qmc594YY9cxnoiS2GhoJ4ktaZnQmcdq4KphWZGC1rickn3 sample1GB.bin
added QmUXNWCxxKCK45weQDh6kCQWGVLBbaZJfokewETBgG1iun
user@ipfs:~/ipfs-tutorial$ ipfs files cp /ipfs/QmUXNWCxxKCK45weQDh6kCQWGVLBbaZJfokewETBgG1iun /testrepo
With this, on remote1 webui, under files, I can see the sample1GB.bin file.
I went into the webui for remote1 and for the folder testrepo and the file sample1GB.bin, i chose the “…” menu, then “Set pinning” and selected “Local node” and “remote2”
I saw in the network traffic under status, that an upload occured. I however, do not see the file in the webui for remote2.
What am I doing wrong? From remote1, it appears as though the files are pinned
user@ipfs:~/ipfs-tutorial$ ipfs pin remote ls --service=remote2
QmUXNWCxxKCK45weQDh6kCQWGVLBbaZJfokewETBgG1iun pinned testrepo
Qmc594YY9cxnoiS2GhoJ4ktaZnQmcdq4KphWZGC1rickn3 pinned sample1GB.bin
I am unsure of how to proceed. Any help is appreciated.