Pages:
Author

Topic: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux - page 11. (Read 198674 times)

sr. member
Activity: 280
Merit: 250
Thank I got it to work now. Just a quick question, so if I use my own p2pool to mine, this is the same as sole mining isn't it?
sr. member
Activity: 280
Merit: 250
I couldn't connect the miner to the pool. Why is that?

can you connect to your static page on port 9332? If not you need to open port 9332 on your linux firewall, or whatever port you are using for whatever crypto coin you are mining. After than you should be able to connect to your miner with your gear.

There has also been an update to p2pool so you will need to run git pull from within the p2pool folder.



Yes I can go to the http://127.0.0.1:9332 in my web browser, also I have opened port 9332-9333 tcp/udp in my firewall.

But when I tried to connect using bfgminer or cgminer, they can't connect.

Should I close 9333 if there is no need for it?
hero member
Activity: 616
Merit: 500
I couldn't connect the miner to the pool. Why is that?

can you connect to your static page on port 9332? If not you need to open port 9332 on your linux firewall, or whatever port you are using for whatever crypto coin you are mining. After than you should be able to connect to your miner with your gear.

There has also been an update to p2pool so you will need to run git pull from within the p2pool folder.

legendary
Activity: 2912
Merit: 1060
So I am confused a little.

If port 9332 work from inside my network but port 9333 doesn't shouldn't I be forwarding port 9332 from my firewall?

I have looked through the sites on google and a lot them say forward 9333.

Forward 9333 for PEER which is good.
You normally wouldn't forward 9332 which would let others mine on your node AND see what you are mining and earning.

If PEER is a good thing (opening port 9333) why then does it affect my efficiency? I have watched it go from 124~129% to 117%!! Also my DOA is on the rise.



During a block change, bitcoind takes max cpu, the extra connections could slow you down if your cpu is slow. I'm not sure if it's required so just keep everything closed.
sr. member
Activity: 280
Merit: 250
I couldn't connect the miner to the pool. Why is that?
hero member
Activity: 616
Merit: 500
sr. member
Activity: 280
Merit: 250
hero member
Activity: 616
Merit: 500
sr. member
Activity: 280
Merit: 250
Anyone managed to get this to work in Ubuntu Saucy? I keep getting error message when running run_p2pool.py  Cry

What's the error message?
And have you confirmed that Python is installed?

Code:
2014-01-19 16:58:56.281970 > Error while checking Bitcoin connection:
2014-01-19 16:58:56.282202 > Traceback (most recent call last):
2014-01-19 16:58:56.282338 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:58:56.282471 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:58:56.282597 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:58:56.282724 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:58:56.282847 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:56.282975 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:56.283097 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:56.283225 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:56.283345 > --- ---
2014-01-19 16:58:56.283459 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:58:56.283576 >     result = yield func(*args, **kwargs)
2014-01-19 16:58:56.283691 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:56.283816 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:56.283935 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:56.284060 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:56.284216 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:58:56.284370 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:58:56.284493 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:56.284616 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:56.284732 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:56.284856 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:56.284970 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:58:56.285088 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:58:56.285204 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:58:56.285329 >     result = g.send(result)
2014-01-19 16:58:56.285445 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:58:56.285564 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:58:56.285686 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:58:57.487657 > Error while checking Bitcoin connection:
2014-01-19 16:58:57.488483 > Traceback (most recent call last):
2014-01-19 16:58:57.489064 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:58:57.489627 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:58:57.490181 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:58:57.490743 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:58:57.491298 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:57.491860 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:57.492456 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:57.493023 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:57.493572 > --- ---
2014-01-19 16:58:57.494149 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:58:57.494691 >     result = yield func(*args, **kwargs)
2014-01-19 16:58:57.495237 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:57.496614 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:57.497179 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:57.497633 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:57.498111 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:58:57.500469 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:58:57.500633 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:57.500790 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:57.500940 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:57.501099 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:57.501248 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:58:57.501432 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:58:57.501584 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:58:57.501737 >     result = g.send(result)
2014-01-19 16:58:57.501883 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:58:57.502035 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:58:57.502186 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:58:58.713360 > Error while checking Bitcoin connection:
2014-01-19 16:58:58.713614 > Traceback (most recent call last):
2014-01-19 16:58:58.713753 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:58:58.713888 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:58:58.714009 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:58:58.714136 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:58:58.714252 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:58.714375 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:58.714495 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:58.714622 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:58.714740 > --- ---
2014-01-19 16:58:58.714857 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:58:58.714974 >     result = yield func(*args, **kwargs)
2014-01-19 16:58:58.715090 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:58.715387 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:58.715520 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:58.715649 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:58.715766 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:58:58.715884 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:58:58.716001 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:58.716125 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:58.716246 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:58.716418 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:58.716541 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:58:58.716662 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:58:58.716899 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:58:58.717063 >     result = g.send(result)
2014-01-19 16:58:58.717179 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:58:58.717300 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:58:58.717430 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:58:59.918144 > Error while checking Bitcoin connection:
2014-01-19 16:58:59.918434 > Traceback (most recent call last):
2014-01-19 16:58:59.924397 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:58:59.924619 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:58:59.924802 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:58:59.924971 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:58:59.925097 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:59.925226 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:59.925349 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:59.925540 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:59.925661 > --- ---
2014-01-19 16:58:59.925778 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:58:59.925896 >     result = yield func(*args, **kwargs)
2014-01-19 16:58:59.926015 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:59.926142 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:59.926264 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:59.926390 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:59.926507 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:58:59.926627 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:58:59.926743 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:58:59.926866 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:58:59.926983 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:58:59.927107 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:58:59.927224 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:58:59.927345 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:58:59.927463 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:58:59.927587 >     result = g.send(result)
2014-01-19 16:58:59.927702 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:58:59.927821 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:58:59.927944 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:59:01.126810 > Error while checking Bitcoin connection:
2014-01-19 16:59:01.127036 > Traceback (most recent call last):
2014-01-19 16:59:01.127172 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:59:01.127305 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:59:01.127430 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:59:01.127558 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:59:01.127679 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:01.127806 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:01.127964 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:01.128093 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:01.128211 > --- ---
2014-01-19 16:59:01.128355 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:59:01.128481 >     result = yield func(*args, **kwargs)
2014-01-19 16:59:01.128598 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:01.128723 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:01.128840 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:01.128970 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:01.129087 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:59:01.129207 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:59:01.129323 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:01.129447 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:01.129565 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:01.129687 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:01.129802 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:59:01.129921 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:59:01.130038 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:59:01.130163 >     result = g.send(result)
2014-01-19 16:59:01.130278 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:59:01.130397 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:59:01.130517 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:59:02.330161 > Error while checking Bitcoin connection:
2014-01-19 16:59:02.330386 > Traceback (most recent call last):
2014-01-19 16:59:02.330520 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:59:02.330655 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:59:02.330779 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:59:02.330905 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:59:02.331025 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:02.331153 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:02.331274 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:02.331400 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:02.331517 > --- ---
2014-01-19 16:59:02.331633 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:59:02.331750 >     result = yield func(*args, **kwargs)
2014-01-19 16:59:02.331870 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:02.331998 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:02.332156 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:02.332283 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:02.332435 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:59:02.332557 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:59:02.332674 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:02.332797 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:02.332918 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:02.333045 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:02.333162 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:59:02.333283 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:59:02.333401 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:59:02.333527 >     result = g.send(result)
2014-01-19 16:59:02.333642 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:59:02.333762 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:59:02.333884 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:59:03.532443 > Error while checking Bitcoin connection:
2014-01-19 16:59:03.533217 > Traceback (most recent call last):
2014-01-19 16:59:03.533803 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:59:03.534365 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:59:03.534921 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:59:03.535488 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:59:03.536039 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:03.536798 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:03.537509 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:03.538072 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:03.538622 > --- ---
2014-01-19 16:59:03.539182 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:59:03.539732 >     result = yield func(*args, **kwargs)
2014-01-19 16:59:03.540284 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:03.540982 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:03.541539 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:03.542100 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:03.542472 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:59:03.544547 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:59:03.544738 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:03.544887 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:03.545053 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:03.545192 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:03.545315 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:59:03.545442 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:59:03.545562 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:59:03.545693 >     result = g.send(result)
2014-01-19 16:59:03.545811 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:59:03.545936 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:59:03.546061 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:59:04.743469 > Error while checking Bitcoin connection:
2014-01-19 16:59:04.743652 > Traceback (most recent call last):
2014-01-19 16:59:04.743737 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:59:04.743817 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:59:04.743890 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:59:04.743966 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:59:04.744037 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:04.744112 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:04.744185 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:04.744260 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:04.744392 > --- ---
2014-01-19 16:59:04.744518 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:59:04.744636 >     result = yield func(*args, **kwargs)
2014-01-19 16:59:04.744757 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:04.744887 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:04.745004 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:04.745133 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:04.745250 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:59:04.745370 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:59:04.745490 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:04.745614 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:04.745735 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:04.745859 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:04.745975 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:59:04.746094 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:59:04.746214 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:59:04.746339 >     result = g.send(result)
2014-01-19 16:59:04.746456 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:59:04.746612 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:59:04.746742 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials
2014-01-19 16:59:05.947931 > Error while checking Bitcoin connection:
2014-01-19 16:59:05.948763 > Traceback (most recent call last):
2014-01-19 16:59:05.949332 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 575, in _runCallbacks
2014-01-19 16:59:05.949905 >     current.result = callback(current.result, *args, **kw)
2014-01-19 16:59:05.950461 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1126, in gotResult
2014-01-19 16:59:05.951020 >     _inlineCallbacks(r, g, deferred)
2014-01-19 16:59:05.951570 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:05.952124 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:05.952772 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:05.953332 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:05.953899 > --- ---
2014-01-19 16:59:05.954448 >   File "/home/dragonkid/p2pool/p2pool/util/deferral.py", line 41, in f
2014-01-19 16:59:05.955044 >     result = yield func(*args, **kwargs)
2014-01-19 16:59:05.955794 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:05.956414 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:05.956969 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:05.957528 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:05.957898 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/helper.py", line 13, in check
2014-01-19 16:59:05.958265 >     if not (yield net.PARENT.RPC_CHECK(bitcoind)):
2014-01-19 16:59:05.960450 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1068, in _inlineCallbacks
2014-01-19 16:59:05.960628 >     result = result.throwExceptionIntoGenerator(g)
2014-01-19 16:59:05.960775 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/python/failure.py", line 389, in throwExceptionIntoGenerator
2014-01-19 16:59:05.960930 >     return g.throw(self.type, self.value, self.tb)
2014-01-19 16:59:05.961077 >   File "/home/dragonkid/p2pool/p2pool/bitcoin/networks.py", line 16, in
2014-01-19 16:59:05.961243 >     'bitcoinaddress' in (yield bitcoind.rpc_help()) and
2014-01-19 16:59:05.961392 >   File "/usr/local/lib/python2.7/dist-packages/Twisted-13.1.0-py2.7-linux-x86_64.egg/twisted/internet/defer.py", line 1070, in _inlineCallbacks
2014-01-19 16:59:05.961543 >     result = g.send(result)
2014-01-19 16:59:05.961686 >   File "/home/dragonkid/p2pool/p2pool/util/jsonrpc.py", line 133, in _http_do
2014-01-19 16:59:05.961836 >     raise Error_for_code(resp['error']['code'])(resp['error']['message'], resp['error'].get('data', None))
2014-01-19 16:59:05.961992 > p2pool.util.jsonrpc.NarrowError: -1 Bad worker credentials

Yes, I do have python installed, I am using Linux.
hero member
Activity: 616
Merit: 500
So I am confused a little.

If port 9332 work from inside my network but port 9333 doesn't shouldn't I be forwarding port 9332 from my firewall?

I have looked through the sites on google and a lot them say forward 9333.

Forward 9333 for PEER which is good.
You normally wouldn't forward 9332 which would let others mine on your node AND see what you are mining and earning.

If PEER is a good thing (opening port 9333) why then does it affect my efficiency? I have watched it go from 124~129% to 117%!! Also my DOA is on the rise.

hero member
Activity: 616
Merit: 500
Anyone managed to get this to work in Ubuntu Saucy? I keep getting error message when running run_p2pool.py  Cry

What's the error message?
And have you confirmed that Python is installed?
legendary
Activity: 2912
Merit: 1060
So I am confused a little.

If port 9332 work from inside my network but port 9333 doesn't shouldn't I be forwarding port 9332 from my firewall?

I have looked through the sites on google and a lot them say forward 9333.

Forward 9333 for PEER which is good.
You normally wouldn't forward 9332 which would let others mine on your node AND see what you are mining and earning.
sr. member
Activity: 280
Merit: 250
Anyone managed to get this to work in Ubuntu Saucy? I keep getting error message when running run_p2pool.py  Cry
hero member
Activity: 616
Merit: 500
So I am confused a little.

If port 9332 work from inside my network but port 9333 doesn't shouldn't I be forwarding port 9332 from my firewall?

I have looked through the sites on google and a lot them say forward 9333.
hero member
Activity: 616
Merit: 500
Has anyone setup p2pool on openSuSE? It doesn't use the sudo aptitude or add-apt because it has zypper (sp?), so I am not sure how to take what's written here and do it on OpenSuSE. Unfortunately the Xi3 doesn't like Ubuntu or vice versa. Sad

hero member
Activity: 686
Merit: 500
WANTED: Active dev to fix & re-write p2pool in C
No, just replace "http" with "stratum+tcp". Done
hero member
Activity: 616
Merit: 500
Is there anything different that I would need to do to use stratum+tcp instead of http:// on P2Pool?

Thanks,


No I'm not even sure http is supported.

funny. Smiley
legendary
Activity: 2912
Merit: 1060
Is there anything different that I would need to do to use stratum+tcp instead of http:// on P2Pool?

Thanks,


No I'm not even sure http is supported.
hero member
Activity: 616
Merit: 500
Is there anything different that I would need to do to use stratum+tcp instead of http:// on P2Pool?

Thanks,
hero member
Activity: 616
Merit: 500
Will this run on Suse 12.3?

I have a nice Xi3 Z3RO machine with 4GB of RAM and 128GB mSATA drive; the machine uses about 4watts of power and fits in the palm of your hand, I would like to if its possible to use it as a pool server but for bitcoin.

Unsure what Xi3 is? go to www.xi3.com

Thanks
Pages:
Jump to: