How to fix 'Connection to steemd.steemit.com timed out'
First of all this is not an issue, this is excepted behaviour. Yesterday (1/6/18) the Steemit Inc decommissioned obsolete steemd.steemit.com RPC node as they communicated few times before.
The new public API node api.steemit.com uses http/jsonrpc instead of RPC protocol and most popular libraries like steem-js, steem-python, radiator or dsteem are compatible out of the box.
How to fix it?
If your application reports connection timeout errors, similar to below,
WARNING:urllib3.connectionpool:Retrying (Retry(total=15, connect=None, read=None, redirect=0, status=None)) after connection broken by 'ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0x7f0dde1439b0>, 'Connection to steemd.steemit.com timed out. (connect timeout=60)')': /
it means your application endpoint is still set to disabled node. The fix is very easy and all what you need to do is replace the old node steemd.steemit.com by the new one api.steemit.com.
For tools built on top of steem-python you can use steempy and set new default node,
$ steempy set nodes https://api.steemit.com
or change it directly in the code,
nodes = [
'https://api.steemit.com',
]
s = Steemd(nodes)
It's always good to define a few API servers and if you're looking for the list of available public API nodes please check my tool https://geo.steem.pl, or run curl geo.steem.pl in your terminal ;-)
If you think I can be a good witness, please vote for me.
- go to https://steemit.com/~witnesses
- scroll to the bottom of the page
- enter my name jamzed next to the @ symbol and click the VOTE button
Thank you!
Leave How to fix 'Connection to steemd.steemit.com timed out' to:
Read more #witness-category posts
Best Posts From Patryk Kuźmicz
We have not curated any of jamzed's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.
More Posts From Patryk Kuźmicz
- The other reason why you should vote for the right witnesses ;-)
- Witness update 8/27/19 (HF21)
- jamzed witness update 9/30/18
- Do I really need 64GB of RAM for my witness nodes?
- Ugly Bash script does the job
- My random thoughts as a witness...
- jamzed witness update 1/28/18
- What is behind the Steem bandwidth issues...
- 🇵🇱 Dlaczego czasami dostajesz błąd "Bandwidth limit exceeded"?
- How to fix 'Connection to steemd.steemit.com timed out'