Bitcoin Forum
May 27, 2024, 04:21:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 »
561  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 11:19:52 PM
Try the most recent commit (012a8830), if you can. It bans peers that send invalid shares (for an hour), so it should help.

Sorry when you say "try the most recent commit" what exactly do you mean by that?

Update the software or something else?

Something else on github

Can you be any more vague than that? Smiley
562  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 11:03:39 PM
Try the most recent commit (012a8830), if you can. It bans peers that send invalid shares (for an hour), so it should help.

So should I block port 9333 for now until the issue is fixed?

563  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 10:55:03 PM
Try the most recent commit (012a8830), if you can. It bans peers that send invalid shares (for an hour), so it should help.

Sorry when you say "try the most recent commit" what exactly do you mean by that?

Update the software or something else?
564  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 10:39:59 PM
There is currently a problem and a fix is being worked on. For now, refusing incoming connections (--max-conns 0) is a temporary solution. Expect more news in the next half hour.

Just as I suspected. I had my P2Pool running yesterday evening for the first time and didn't have port port 9333 open on my firewall so there was no incoming connections and it ran fine until I opened port 9333. Looking forward to the perm fix. Smiley

565  Alternate cryptocurrencies / Pools (Altcoins) / Re: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux on: January 19, 2014, 08:51:18 PM
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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.

Do you have bitcoind running, or in the case if you are using KDE or GNOME have bitcoin-qt running? The first line at the top says it can't connect to bitcoin. I would confirm that your that the rpcuser and rpcpassword in your bictoin.conf match your the one you are using in your p2pool startup. Also you need to make sure you have downloaded the entire blockchain before starting P2Pool.

For me it took 10 hours or so to download the blockchain.

I am using openSUSE (linux)

I will give it another go. Btw, this PC I already have the full blockchain downloaded. Because I keep my bitcoin wallet on this PC.

This happen to me twice today I did a couple of things but think it might be related to the incoming peers the reason why I say this is because once I had my pool going last night I didn't open port 9333 on my firewall. A couple of hours or so before the first crash I opened the port and started seeing incoming peers, maybe it's just seer luck that I enabled port 9333 and it crashed soon after.

After restarting my pool it worked for a while, but the error I got the second time was invalid share data which forced me to restart my opensuse box. 
566  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 06:55:25 PM
May be its time to do sudo apt-get update and sudo apt-get upgrade for your Ubuntu?

I have newest Xubuntu version, man. Fully updated.

Have you restarted your Ubuntu to see if bitcoind and the P2Pool server startup again?

I just restarted p2pool. It's running fine so far on http://lenny.dnsd.me:9332/static/
Will see how it goes.

You know it's funny what you experienced just happened to me 2 minutes ago. I am using openSUSE, I restarted my pool and everything is normal again, it looks like there might be a bug in P2Pool. I wish there was a system that could stop the server and restart it when it errors out like this.

My status if anyone cares can be found at http://p2pool.smoothrunnings.ca:9332/

567  Alternate cryptocurrencies / Pools (Altcoins) / Re: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux on: January 19, 2014, 05:40:08 PM
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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 > --- <exception caught here> ---
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 <lambda>
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.

Do you have bitcoind running, or in the case if you are using KDE or GNOME have bitcoin-qt running? The first line at the top says it can't connect to bitcoin. I would confirm that your that the rpcuser and rpcpassword in your bictoin.conf match your the one you are using in your p2pool startup. Also you need to make sure you have downloaded the entire blockchain before starting P2Pool.

For me it took 10 hours or so to download the blockchain.

I am using openSUSE (linux)
568  Alternate cryptocurrencies / Pools (Altcoins) / Re: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux on: January 19, 2014, 01:35:06 PM
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.

569  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 01:18:43 PM
Have you restarted your Ubuntu to see if bitcoind and the P2Pool server startup again?

570  Alternate cryptocurrencies / Pools (Altcoins) / Re: A Complete Guide to P2Pool - Merged Mining (BTC/NMC/DVC/IXC/I0C) plus LTC, Linux on: January 19, 2014, 12:59:00 PM
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?
571  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 04:27:59 AM
I'm running a node for testing right now in a 2.6 Ghz Core i7 16GB RAM PCI-e SSD...and Ubuntu Server 12.04

My question is, I'm getting periodic spikes in both the getblocktemploate latency (upwards of 30s for a spike) and DOAs reported up from 4% to almost 30% then it calms down and I get a share.  I have 17 shares 1 orphan 117% Efficiency.  I've got about 1.4TH/s on the node. When this happens the p2pool app pegs CPU and then slowly calms down. I've tuned bitcoind for max block size etc. from the tuning guide as well. I have 6 out and 8 in p2pool connections.

I've also noticed my bitcoind has 98 connections and some of them have huge Recv-Q and Send-Q numbers... I'm on a 50 down 5 up cable modem so the connection shouldn't be the problem.  I'm thinking those "dead" connections to bitcoind aren't doing me any good.

My payouts are going up for each share found, but the Spikes in DOA don't seem right.  Any ideas what could be happening?

How long have you been running for?

I haven't been running for very long, a about 6 hours. But my DOA is 3% at 276GH/s my I have only have 2 shares but efficiency is 129%. I have been hitting 30s a couple of times but it doesn't seem to affect me much. I am using a Xi3 Z3RO Pro computer (4GB Ram, 120GB mSATA, dual core 1.65GHz AMD) running openSUSE not Ubuntu. The only other thing I have differently on my network is my CISCO firewall, managed switch, and P2Pool server have Jumbo Frames enabled. I use jumbo frames on other pieces of hardware in my network, such as my SAN and ESXi server so I figured I would give a try on the Z3RO Pro.

572  Bitcoin / Hardware / Re: Avalon ASIC users thread on: January 19, 2014, 04:26:10 AM
I don't think it's worth your time to bother with the scamcoins: remember you need to maintain a working full node for them, and IIRC the ones with merged mining are all buggy and a pain to keep running (besides namecoin, anyway).
That being said, if you guys want to setup a bounty on something, I will of course consider it.

Unrelated note: I still don't have an Avalon myself to work with, so if anyone is planning to get rid of theirs, please let me know...


I want to end up with (a) shell script(s) that can start with a fully standard newly installed & updated Ubuntu 12.04 (Precise Pangolin) that has bytecoind built & installed,

1.  do apt-get install <list of necessary stuff for eloipool>
2.  git an eloipool distribution
3.  perform any necessary localizations and have bytecoin mine to that eloipool installation.

I am aware of the eloipool installation thread, but I still have some learning curve and have not been successful getting it to work.  I don't know whether I am an hour or a month away from reconciling the working system that I have, and the differences between it and the forum thread's procedure.

I can provide access to a VirtualBox installation of Ubuntu with bytecoind if that will be helpful.
I have a 2nd VM with a working eloipool + bytecoin, but this was the result of unzipping a file sent by a forum member, and I want to have a process that goes to official sources.

What sort of bounty would interest you in this?


What's the difference between eloipool  and P2Pool?

P2Pool doesn't work well with ASICs.


Explain what you mean exactly?

I mean that I only got about 10% of the return on mining as I would have with a standard pool.  I lost valuable time trying it.  I installed eloipool and things worked great.



You how long did you mine with P2Pool for?

About 48 hours.


Yeah you can't run for 48 hours with P2Pool, you need to be vigilant and let it run for a month. Only then will you see  the profitability.

 
573  Bitcoin / Hardware / Re: Avalon ASIC users thread on: January 19, 2014, 04:06:30 AM
I don't think it's worth your time to bother with the scamcoins: remember you need to maintain a working full node for them, and IIRC the ones with merged mining are all buggy and a pain to keep running (besides namecoin, anyway).
That being said, if you guys want to setup a bounty on something, I will of course consider it.

Unrelated note: I still don't have an Avalon myself to work with, so if anyone is planning to get rid of theirs, please let me know...


I want to end up with (a) shell script(s) that can start with a fully standard newly installed & updated Ubuntu 12.04 (Precise Pangolin) that has bytecoind built & installed,

1.  do apt-get install <list of necessary stuff for eloipool>
2.  git an eloipool distribution
3.  perform any necessary localizations and have bytecoin mine to that eloipool installation.

I am aware of the eloipool installation thread, but I still have some learning curve and have not been successful getting it to work.  I don't know whether I am an hour or a month away from reconciling the working system that I have, and the differences between it and the forum thread's procedure.

I can provide access to a VirtualBox installation of Ubuntu with bytecoind if that will be helpful.
I have a 2nd VM with a working eloipool + bytecoin, but this was the result of unzipping a file sent by a forum member, and I want to have a process that goes to official sources.

What sort of bounty would interest you in this?


What's the difference between eloipool  and P2Pool?

P2Pool doesn't work well with ASICs.


Explain what you mean exactly?

I mean that I only got about 10% of the return on mining as I would have with a standard pool.  I lost valuable time trying it.  I installed eloipool and things worked great.



You how long did you mine with P2Pool for?
574  Bitcoin / Hardware / Re: Avalon ASIC users thread on: January 19, 2014, 02:21:07 AM
I don't think it's worth your time to bother with the scamcoins: remember you need to maintain a working full node for them, and IIRC the ones with merged mining are all buggy and a pain to keep running (besides namecoin, anyway).
That being said, if you guys want to setup a bounty on something, I will of course consider it.

Unrelated note: I still don't have an Avalon myself to work with, so if anyone is planning to get rid of theirs, please let me know...


I want to end up with (a) shell script(s) that can start with a fully standard newly installed & updated Ubuntu 12.04 (Precise Pangolin) that has bytecoind built & installed,

1.  do apt-get install <list of necessary stuff for eloipool>
2.  git an eloipool distribution
3.  perform any necessary localizations and have bytecoin mine to that eloipool installation.

I am aware of the eloipool installation thread, but I still have some learning curve and have not been successful getting it to work.  I don't know whether I am an hour or a month away from reconciling the working system that I have, and the differences between it and the forum thread's procedure.

I can provide access to a VirtualBox installation of Ubuntu with bytecoind if that will be helpful.
I have a 2nd VM with a working eloipool + bytecoin, but this was the result of unzipping a file sent by a forum member, and I want to have a process that goes to official sources.

What sort of bounty would interest you in this?


What's the difference between eloipool  and P2Pool?

P2Pool doesn't work well with ASICs.


Explain what you mean exactly?
575  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 01:57:51 AM
is there a users page add-on for p2pool other than the front-end add-on?

Thanks,
576  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 01:51:55 AM
I've never seen anyone say good things about QoS.  In fact, I've seen lots of people say turn it off, it hoses things, and I've seen it here in this thread.

I really don't care about what people say but about what is doable. I've configured QoS on my Linux server, it works, end of story. If people use QoS on their Linux server and it doesn't work for them I can provide tips.

That might be the difference.  The average person isn't going to use QoS on a Linux server.  The average person is going to have a cheap router that touts QoS, but the reality is it doesn't work well.

Who doesn't use the bandwidth for anything else?

You misunderstood. QoS allows bandwidth for other traffic but for it to work you must have some headroom, if you need all of your available bandwidth for other traffics you can't use p2pool, if you only need what's above 256-512kbps in both directions then you can fit p2pool and bitcoind in with various levels of efficiency.

I know what QoS is.  I have theoretical 768k up.  If I need p2pool and bitcoin to use 2/3's of that, I'm in trouble.

Quote
You don't have to ask here, the information is already public. Go to p2pool.info and you'll have data for a theoretical 100% efficient p2pool node.

I don't care what theoretical is.  I want to know what people are really getting! Smiley

Quote
Given that you mentioned a cube I suppose you have an ASICMiner cube. Unless they have a different miner implementation than the blades you are probably out of luck on p2pool. IIRC the blade miner could only do getwork and poorly: it didn't work well on several pools including p2pool because of their implementation. If this didn't change you are probably better off letting the beast mine on whatever pools you could find that worked fine with it.

If I was to attempt it I'd run it through a stratum proxy, as I'm doing now.  But as I've implied a few times, there's no way I'm pointing 38gh/s at 1m share difficulty.

M

I would have to say if you have a good switch and aren't using a mickey mouse home one you should be good to go. Home managed switches have very low forwarding rates thus they can't move higher volumes of traffic over them compared to the enterprise class managed switches. So if you a good switch and are using good cabling, I would certainly enable jumbo frames before messing with the QOS. My firewall, Dell PowerConnect 6224 and my openSUSE (p2pool server) have jumbo frames enabled.
577  Bitcoin / Hardware / Re: Avalon ASIC users thread on: January 19, 2014, 12:32:37 AM
I don't think it's worth your time to bother with the scamcoins: remember you need to maintain a working full node for them, and IIRC the ones with merged mining are all buggy and a pain to keep running (besides namecoin, anyway).
That being said, if you guys want to setup a bounty on something, I will of course consider it.

Unrelated note: I still don't have an Avalon myself to work with, so if anyone is planning to get rid of theirs, please let me know...


I want to end up with (a) shell script(s) that can start with a fully standard newly installed & updated Ubuntu 12.04 (Precise Pangolin) that has bytecoind built & installed,

1.  do apt-get install <list of necessary stuff for eloipool>
2.  git an eloipool distribution
3.  perform any necessary localizations and have bytecoin mine to that eloipool installation.

I am aware of the eloipool installation thread, but I still have some learning curve and have not been successful getting it to work.  I don't know whether I am an hour or a month away from reconciling the working system that I have, and the differences between it and the forum thread's procedure.

I can provide access to a VirtualBox installation of Ubuntu with bytecoind if that will be helpful.
I have a 2nd VM with a working eloipool + bytecoin, but this was the result of unzipping a file sent by a forum member, and I want to have a process that goes to official sources.

What sort of bounty would interest you in this?


What's the difference between eloipool  and P2Pool?
578  Bitcoin / Hardware / Re: Avalon ASIC users thread on: January 19, 2014, 12:31:17 AM
Do the Gen1 Avalon's support jumbo frames, has anyone tried?

Thanks,
579  Bitcoin / Hardware / Re: Avalon ASIC users thread on: January 19, 2014, 12:30:00 AM
That looks like a Gen2 board which if I understand it correctly will need a different controller to get them running at 200GH/s, but I could be wrong.

580  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: January 19, 2014, 12:01:23 AM
How do I get the p2pool pages for /users/ /local_stats/ etc looking pleasing instead of lines of word wrapped text?

Also I have the latest version installed and /graphs/ doesn't work telling me "no such resource" is this normal?

Thanks


https://github.com/hardcpp/P2PoolExtendedFrontEnd

Sorry when it says put these files in your web-static folder, does it just mean the files or do I need to download the folders too? (just wondering so I am not doing something tiwce)

$ cd p2pool
$ mv web-static web-static.orig
$ unzip P2PoolExtendedFrontEnd.zip
$ mv P2PoolExtendedFrontEnd web-static

from browser hit you 9332 port, you should see improved UI.

-alan

To edit some of the links on the page that's all in the index I suppose?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!