Hello.
I have set up a node on my Odroid C2 with a 1 To HDD
I declare the node with this command
docker run -d --restart unless-stopped -p 28967:28967 \
-p 14002:14002 \
-e WALLET="0x*********09b4" \
-e EMAIL="****.*****@gmail.com" \
-e ADDRESS="xxx.xxx.xxx.xxx:28967" \
-e BANDWIDTH="18TB" \
-e STORAGE="920MB" \
--mount type=bind,source="/home/jeedom/.local/share/storj/identity/storagenode",destination=/app/identity \
--mount type=bind,source="/media/StorJ_1To",destination=/app/config \
--name storagenode storjlabs/storagenode:beta
Ports 28967 and 14002 are forwarded on my network provider set top box.
Identity is correct :
root@odroidc2:~# ls -l /home/jeedom/.local/share/storj/identity/storagenode
total 24
-rw-r–r-- 1 jeedom jeedom 546 Mar 1 17:56 ca.1582221999.cert
-rw-r–r-- 1 jeedom jeedom 1076 Mar 1 17:56 ca.cert
-rw------- 1 jeedom jeedom 241 Mar 1 17:56 ca.key
-rw-r–r-- 1 jeedom jeedom 1084 Mar 1 17:56 identity.1582221999.cert
-rw-r–r-- 1 jeedom jeedom 1614 Mar 1 17:56 identity.cert
-rw------- 1 jeedom jeedom 241 Mar 1 17:56 identity.key
And storage is mounted :
root@odroidc2:~# ls -l /media/StorJ_1To
total 44
-rw------- 1 root root 7096 Mar 1 18:33 config.yaml
d--------- 2 root root 4096 Jan 1 1970 lost+found
-rw------- 1 root root 32768 Mar 1 18:42 revocations.db
drwx------ 6 root root 4096 Mar 1 18:42 storage
-rw------- 1 root root 1202 Mar 1 18:42 trust-cache.json
But my node is alway restarted :
root@odroidc2:~# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a11b511d31c3 storjlabs/storagenode:beta “/entrypoint” 10 minutes ago Restarting (1) 47 seconds ago storagenode
And I can’t access Dashboard on internal or external IP on port 14002
What do I need to check or modify ?
Thanks.