Hello
I have a QNAP where I want to activate a node, I have followed the procedure explained in these links
I have created the identity from a PC, as indicated, it has been created correctly,
The command
(sls BEGIN “$env:AppData\Storj\Identity\storagenode\ca.cert”).count
(sls BEGIN “$env:AppData\Storj\Identity\storagenode\identity.cert”).count
return 2 and 3
I have copied it to a folder in the QNAP
I have opened the ports on the router
I have uninstalled the Storj Storage node file 1.1.4 in qnap from github
After launching the application, everything is fine until the last step that tells me the following, however I confirm that the path and the identity files are correct
As I can not continue, I tried to pay this support article forum 15079
apply
docker run --rm -e SETUP=“true”
–mount type=bind,source="/share/storj01/identity/storagenode",destination=/app/identity
–mount type=bind,source="/share/storj01/storage",destination=/app/config
–name storagenode storjlabs/storagenode:latest
(I hide my data, logically)
in Qnap containers I get a container but when i do this step i get an error
docker run -d --restart unless-stopped --stop-timeout 300
-p 28967:28967/tcp
-p 28967:28967/udp
-p 14002:14002
-e WALLET=“0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX”
-e EMAIL="xxx@xxxx.com"
-e ADDRESS=“xxx.xxx.xxx:28967”
-e STORAGE=“81TB”
–mount type=bind,source="/share/storj01/identity/storagenode",destination=/app/identity
–mount type=bind,source="/share/storj01/storage",destination=/app/config
–name storagenode storjlabs/storagenode:latest
This is the error:
docker: Error response from daemon: Conflict. The container name “/storagenode” is already in use by container “4c91b4f449ef758d61fc219393bae1b91faef32fe06faa508787f205cbc5fee2”. You have to remove (or rename) that container to be able to reuse that name.
As indicated, I remove the container and reapply
docker run -d --restart unless-stopped --stop-timeout 300
Etc
Etc
The container is recreated although errors like this appear in the logs
2022-05-06T15:22:11.562Z INFO Invalid configuration file value for key {“Process”: “storagenode-updater”, “Key”: “log.development”}
2022-05-06T15:22:11.562Z INFO Invalid configuration file value for key {“Process”: “storagenode-updater”, “Key”: “log.output”}
2022-05-06T15:22:11.562Z INFO Invalid configuration file value for key {“Process”: “storagenode-updater”, “Key”: “log.stack”}
Error: Error starting master database on storagenode: group:
— stat config/storage/blobs: no such file or directory
— stat config/storage/temp: no such file or directory
— stat config/storage/garbage: no such file or directory
— stat config/storage/trash: no such file or directory
2022-05-06 15:22:18,162 INFO exited: storagenode (exit status 1; not expected)
2022-05-06 15:22:19,163 INFO gave up: storagenode entered FATAL state, too many start retries too quickly
What can you do?
Thank you!!!