Hello community,
I am trying to set up a new node (storagenode16T) on my server, but I keep getting the following error in the logs:
rpc: tls peer certificate verification: tlsopts: peer ID did not match requested ID
Here is the exact procedure I followed:
- I created the identity with:
identity create storagenode
- This generated the 4 files:
ca.cert,ca.key,identity.cert, andidentity.key. - Then I executed the setup command as root, pointing to the exact location of the credentials (same way I did with my first node, which is still working fine):
sudo docker run --rm -e SETUP=“true” \
–user $(id -u):$(id -g) \
–mount type=bind,source=/home/giga/.local/share/storj/identity/storagenode16T,destination=/app/identity \
–mount type=bind,source=/media/giga/DATA16,destination=/app/config \
–name storagenode16T storjlabs/storagenode:latest
 * After this ran successfully, I saw that the new disk automatically created the folders and files required for the node to function.
3. Then I started the container with:
sudo docker run -d --restart unless-stopped --stop-timeout 300 \
-p 28968:28967/tcp \
-p 28968:28967/udp \
-p 192.168.50.10:14004:14002 \
-e WALLET=“0xd976e1bCCF45782ACE63611f738D0880587C2617” \
-e EMAIL="mailteracom@gmail.com" \
-e ADDRESS=“storjtnxxx.ddns.net:28968” \
-e STORAGE=“15.5TB” \
–user $(id -u):$(id -g) \
–mount type=bind,source=/home/giga/.local/share/storj/identity/storagenode16T,destination=/app/identity \
–mount type=bind,source=/media/giga/DATA16,destination=/app/config \
–name storagenode16T storjlabs/storagenode:latest
 * Running sudo docker ps shows the container is up and running, but when I check the logs with:
sudo docker logs storagenode16T --tail 50 -f
- I get the certificate error mentioned above.
Additional details:
- Router port 28968 is open and forwarded correctly.
- I created a new account in No-IP and it is working.
- My first node (
storagenode2) is still running fine on the same server.
I am not sure what is wrong with my second node. According to Copilot, it looks like a credential/identity issue, but I am not an expert and would appreciate guidance from the community.
Thanks in advance for your help!




