You are viewing a single comment's thread from:
RE: Steemit Witness Setup 2018, No Docker, No Remote Nodes, So you actually know what you are doing
Please perform the following:
netstat -apn | grep 8090
It could be that:
- Node is not synced yet.
- Node is not started.
It's crucial to start node first, ./steemd
detach from screen, CTRL +A +D
, and then connect with wallet.
If output of bellow is not showing steemd is listening on port 8090, one of above is the reason.
netstat -apn | grep 8090
If the node is up and running, please paste screen output that's generated on node screen, once you try to connect.
I don't get any output 🤔
Output of:
ps aux | grep steemd
This is output:
root 17416 0.0 0.0 4504 596 pts/0 Ss+ Feb12 0:00 sh -c /usr/local/bin/steemd
root 17459 15.6 42.9 67971308 28209376 pts/0 Sl+ Feb12 1276:49 /usr/local/bin/steemd
root 24903 0.0 0.0 57343492 33892 pts/7 Sl+ 10:31 0:00 build/programs/steemd/./steemd --resync-blockchain
root 25350 146 4.9 66665072 3237996 pts/9 Rl+ 11:32 53:30 build/programs/steemd/./steemd --resync-blockchain
root 25480 0.0 0.0 29944 2840 ? Ss 11:48 0:00 SCREEN ./steemd
root 25481 148 3.6 66731420 2404464 pts/11 Rsl+ 11:48 30:36 ./steemd
root 25638 0.0 0.0 16976 988 pts/0 S+ 12:08 0:00 grep --color=auto steemd
Huh, you seem to have 6 steemd processes running. It should be only one. Also, the processes that are run as steemd --resync-blockchain are most likely still in resync.
You should make sure only single steemd is running.
(Not sure how you managed to start the process 6 times. It should be only one screen that runs steemd, and you should detach with CTRL +A +D, and Attach when you need it with screen -r -d pid).
(If PS Aux shows steemd process is running, you should not start another one).