I just ran storagenode info until I got an output that had no special characters and put it into the webui. Which was a bit tedious for 12 nodes, but did work.
I did a fresh install of Windows 11 and it came with Powershell 5.1. Powershell 5.1 or earlier defaults to UTF-16. You can output UTF-8 in two ways. Either set this default:
Or alternatively replace > with | out-file foo.txt -encoding utf8
But in that case you still get the byte order mark, which in that case is 0xEF 0xBB 0xBF (which is 0xFF 0xFE encoded in UTF-8). The command still fails. @clement made a change to remove this here https://review.dev.storj.io/c/storj/storj/+/8252
Powershell 7 can be installed manually and defaults to UTF-8 without BOM so there this is no longer necessary and it “just works”.
I am trying to add nodes to my MND, I have successfully added the windows nodes that I have.
I have other nodes on RPi’s using DOCKER. when I trying to run storagenode info --config dir /mnt/storj/storagenode I get bash: storagenode: command not found.
I don’t know where to run this command from with this setup, does anyone know?
Isn’t the step by step manual in the very first post?
It’s a tech preview, not a finished product. It’s unreasonable to expect polished end user documentation. And no, you don’t have to read 99 replies, unless you want to. You also don’t have to run the tech preview software.
You pointed me to another topic. I see different instructions there from those in this topic.
Anyway, I’m trying to say that after 1.5 years of development, I thought that it’s a finish product and should be a proper guide in Docs for any newbie that wants to try it, because it’s a useful tool. And you cand find about it reading the forum, not in the Docs. The forum should be optional for any SNO.
And yes, I read the entire topic to figure out where to run those commands, for different OS-es and node installs, and if there are recent updates, or problems that I might encounter.
And still… I have questions ananswered.
Is the multinode folder mount to app/config an empty dir?
PS: Is there an easy way to convert a regular docker command to docker-compose? Trying to figure out how to make my storagenode use docker-compose but having some troubles. Could you share yours?