P2Pool Can't start my Dash pool

gizmoboss

New member
Hi guys!
Installed OS: Ubuntu 17.10 server
Packages installed: python-zope.interface python-twisted python-twisted-web python-dev
gcc g++
Then i run: python run_p2pool.py i have an error like this

2017-12-18 11:57:57.688618 Testing dashd RPC connection to 'h**p://127.0.0.1:9998/' with username 'gizmo'...
Error while checking dash connection:
Traceback (most recent call last):
Failure: twisted.internet.error.ConnectionRefusedError: Connection was refused by other side: 111: Connection refused.

Please help me with my first setup what p2pool-dash
 
First try to change rpcpassword.
If your rpcpassword has special chrater(s), remove it and restart dashd, then test p2pool.

and dash.conf should have at least following config.
Code:
rpcuser=dashrpc#change
rpcpassword=veryvey-long-complicatedpassword=#change
rpcallowip=127.0.0.1
rpcbind=127.0.0.1
server=1
daemon=1
 
First try to change rpcpassword.
If your rpcpassword has special chrater(s), remove it and restart dashd, then test p2pool.

and dash.conf should have at least following config.
Code:
rpcuser=dashrpc#change
rpcpassword=veryvey-long-complicatedpassword=#change
rpcallowip=127.0.0.1
rpcbind=127.0.0.1
server=1
daemon=1
Thanks

But now i have a another error:

Code:
Error getting work from dashd:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 651, in _runCallbacks
    current.result = callback(current.result, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1355, in gotResult
    _inlineCallbacks(r, g, deferred)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1297, in _inlineCallbacks
    result = result.throwExceptionIntoGenerator(g)
  File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
    return g.throw(self.type, self.value, self.tb)
--- <exception caught here> ---
  File "/home/gizmo/git/p2pool-dash/p2pool/util/deferral.py", line 41, in f
    result = yield func(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1297, in _inlineCallbacks
    result = result.throwExceptionIntoGenerator(g)
  File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
    return g.throw(self.type, self.value, self.tb)
  File "/home/gizmo/git/p2pool-dash/p2pool/dash/helper.py", line 30, in getwork
    work = yield go()
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1297, in _inlineCallbacks
    result = result.throwExceptionIntoGenerator(g)
  File "/usr/lib/python2.7/dist-packages/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
    return g.throw(self.type, self.value, self.tb)
  File "/home/gizmo/git/p2pool-dash/p2pool/util/jsonrpc.py", line 141, in _http_do
    raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
p2pool.util.jsonrpc.NarrowError: -10 Dash Core is downloading blocks...
 
Back
Top