I'm going nuts trying to get this p2pool working.
I set up a clean install of Ubuntu 14.4 and updated.
Bitcoin client seems to be working ok. I think I have the latest version now.
I installed p2pool with the following command: git clone
https://github.com/p2pool/p2pool.gitInstalled python: sudo apt-get install python-twisted python-argparse # should work on Ubuntu
I ran apt-get update and apt-get upgrade again to be sure I had latest.
I ran make and got some errors but continued on since someone said I did not actually need to run make.
When I try to run p2pool, I get the following when running: python run_p2pool.py
This is just the tail end of my output.
2015-11-15 12:15:02.776585 > File "/home/ttravis/p2pool/p2pool/bitcoin/worker_interface.py", line 129, in get_work
2015-11-15 12:15:02.776709 > x, handler = self._inner.get_work(*args)
2015-11-15 12:15:02.776833 > File "/home/ttravis/p2pool/p2pool/work.py", line 245, in get_work
2015-11-15 12:15:02.776957 > raise jsonrpc.Error_for_code(-12345)(u'p2pool is downloading shares')
2015-11-15 12:15:02.777080 > p2pool.util.jsonrpc.NarrowError: -12345 p2pool is downloading shares
2015-11-15 12:15:02.778476 > Unhandled Error
2015-11-15 12:15:02.778645 > Traceback (most recent call last):
2015-11-15 12:15:02.778774 > File "/home/ttravis/p2pool/p2pool/main.py", line 666, in run
2015-11-15 12:15:02.778900 > reactor.run()
2015-11-15 12:15:02.779084 > File "/usr/lib/python2.7/dist-packages/twisted/internet/base.py", line 1192, in run
2015-11-15 12:15:02.779215 > self.mainLoop()
2015-11-15 12:15:02.779341 > File "/usr/lib/python2.7/dist-packages/twisted/internet/base.py", line 1201, in mainLoop
2015-11-15 12:15:02.779468 > self.runUntilCurrent()
2015-11-15 12:15:02.779592 > File "/usr/lib/python2.7/dist-packages/twisted/internet/base.py", line 824, in runUntilCurrent
2015-11-15 12:15:02.779720 > call.func(*call.args, **call.kw)
2015-11-15 12:15:02.779844 > ---
---
2015-11-15 12:15:02.779968 > File "/home/ttravis/p2pool/p2pool/bitcoin/stratum.py", line 38, in _send_work
2015-11-15 12:15:02.780095 > x, got_response = self.wb.get_work(*self.wb.preprocess_request('' if self.username is None else self.username))
2015-11-15 12:15:02.780221 > File "/home/ttravis/p2pool/p2pool/bitcoin/worker_interface.py", line 129, in get_work
2015-11-15 12:15:02.780347 > x, handler = self._inner.get_work(*args)
2015-11-15 12:15:02.780471 > File "/home/ttravis/p2pool/p2pool/work.py", line 245, in get_work
2015-11-15 12:15:02.780596 > raise jsonrpc.Error_for_code(-12345)(u'p2pool is downloading shares')
2015-11-15 12:15:02.780736 > p2pool.util.jsonrpc.NarrowError: -12345 p2pool is downloading shares
^C2015-11-15 12:15:05.010901 Lost peer 59.167.237.19:9333 - Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.011322 Lost peer 62.213.58.41:9333 - Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.012076 Lost peer 104.221.188.17:9333 - Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.012430 Lost peer 72.14.191.28:9333 - Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.013003 Lost peer 108.162.140.254:9333 - Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.013239 > in download_shares:
2015-11-15 12:15:05.013313 > Traceback (most recent call last):
2015-11-15 12:15:05.013378 > Failure: twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.013559 Requesting parent share a1ccf4d5 from 146.0.32.101:9340
2015-11-15 12:15:05.014878 Lost peer 146.0.32.101:9340 - Connection to the other side was lost in a non-clean fashion: Connection lost.
2015-11-15 12:15:05.015161 > in download_shares:
2015-11-15 12:15:05.015237 > Traceback (most recent call last):
2015-11-15 12:15:05.015319 > Failure: twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.
ttravis@Bitcoin:~/p2pool$
Any advise would be appreciated.
Thanks in advance,
Tom Travis