Hi all,
regarding to my fist post here, there was a typo in the bitcoin.conf (I´ve missed to change the persist-setting from True to False).
In the meantime i´ve installed on a other server, and it seams to be working, but on the start i still get a few errors.
See attached log.
C:\Users\Administrator>"C:\Users\Administrator\Desktop\CALL P2Pool.lnk"
E:\p2pool>run_p2pool.py --net bitcoin --give-author 0.0 --no-bugreport --disable -upnp --disable-advertise --outgoing-conns 0 --bitcoind-config-path E:\Bitcoin-Data\bitcoin.conf
2014-07-26 10:51:25.123000 p2pool (version unknown 7032706f6f6c)
2014-07-26 10:51:25.139000
2014-07-26 10:51:25.139000 Testing bitcoind RPC connection to '
http://127.0.0.1:17444/' with username 'Solo'...
2014-07-26 10:51:25.607000 ...success!
2014-07-26 10:51:25.607000 Current block hash: 1de6aa4457ae2dbdb2ef1bfb16019d0350ccf9358fad4132
2014-07-26 10:51:25.607000 Current block height: 312544
2014-07-26 10:51:25.607000
2014-07-26 10:51:25.607000 Testing bitcoind P2P connection to '127.0.0.1:17334'.
..
2014-07-26 10:51:25.638000 ...success!
2014-07-26 10:51:25.638000
2014-07-26 10:51:25.638000 Determining payout address...
2014-07-26 10:51:25.638000 Loaded cached address: 1NE5n9xuShs1mtREN7wjM1R8hcC23QYrXt...
2014-07-26 10:51:25.654000 ...success! Payout address: 1NE5n9xuShs1mtREN7wjM1R8hcC23QYrXt
2014-07-26 10:51:25.654000
2014-07-26 10:51:25.654000 Loading shares...
2014-07-26 10:51:26.730000 ...done loading 267 shares (267 verified)!
2014-07-26 10:51:26.730000
2014-07-26 10:51:26.730000 Initializing work...
2014-07-26 10:51:27.276000 ...success!
2014-07-26 10:51:27.276000
2014-07-26 10:51:27.292000 Joining p2pool network using port 9333...
2014-07-26 10:51:27.292000 > Unhandled Error
2014-07-26 10:51:27.292000 > Traceback (most recent call last):
2014-07-26 10:51:27.292000 > File "E:\Python27\lib\site-packages\twisted\internet\defer.py", line 1163, in gotResult
2014-07-26 10:51:27.292000 > _inlineCallbacks(r, g, deferred)
2014-07-26 10:51:27.292000 > File "E:\Python27\lib\site-packages\twisted\internet\defer.py", line 1107, in _inlineCallbacks
2014-07-26 10:51:27.292000 > result = g.send(result)
2014-07-26 10:51:27.292000 > File "E:\p2pool\p2pool\main.py", line 159, in main
2014-07-26 10:51:27.292000 > for addr_df in map(parse, net.BOOTSTRAP_ADDRS):
2014-07-26 10:51:27.307000 > File "E:\Python27\lib\site-packages\twisted\internet\defer.py", line 1245, in unwindGenerator
2014-07-26 10:51:27.307000 > return _inlineCallbacks(None, gen, Deferred())
2014-07-26 10:51:27.307000 > ---
---
2014-07-26 10:51:27.307000 > File "E:\Python27\lib\site-packages\twisted\internet\defer.py", line 1107, in _inlineCallbacks
2014-07-26 10:51:27.307000 > result = g.send(result)
2014-07-26 10:51:27.307000 > File "E:\p2pool\p2pool\main.py", line 150, in parse
2014-07-26 10:51:27.307000 > defer.returnValue(((yield reactor.resolve(host)), port))
2014-07-26 10:51:27.307000 > File "E:\Python27\lib\site-packages\twisted\internet\base.py", line 567, in resolve
2014-07-26 10:51:27.307000 > if abstract.isIPAddress(name):
2014-07-26 10:51:27.307000 > File "E:\Python27\lib\site-packages\twisted\internet\abstract.py", line 496, in isIPAddress
2014-07-26 10:51:27.307000 > dottedParts = addr.split('.')
2014-07-26 10:51:27.307000 > exceptions.AttributeError: 'list' object has no attribute 'split'
2014-07-26 10:51:27.323000 ...success!
2014-07-26 10:51:27.323000
2014-07-26 10:51:27.323000 Listening for workers on '' port 9332...
2014-07-26 10:51:27.744000 ...success!
2014-07-26 10:51:27.744000
2014-07-26 10:51:27.744000 Started successfully!
2014-07-26 10:51:27.744000 Go to http://127.0.0.1:9332/ to view graphs and statistics!
2014-07-26 10:51:27.744000 Donating 0.0% of work towards P2Pool's development. Please donate to encourage further development of P2Pool!
2014-07-26 10:51:27.744000
2014-07-26 10:51:30.755000 P2Pool: 257 shares in chain (267 verified/267 total)Peers: 0 (0 incoming)
2014-07-26 10:51:30.755000 Local: 0H/s in last 0.0 seconds Local dead on arrival: Expected time to share:
2014-07-26 10:51:30.755000 Shares: 0 (0 orphan, 0 dead) Stale rate: Efficiency: Current payout: 25.0450 BTC
2014-07-26 10:51:30.755000 Pool: 1362GH/s Stale rate: 50.0% Expected time to block: 1.9 years
Here ist the bitcoin.py
from p2pool.bitcoin import networks
# CHAIN_LENGTH = number of shares back client keeps
# REAL_CHAIN_LENGTH = maximum number of shares back client uses to compute payout
# REAL_CHAIN_LENGTH must always be <= CHAIN_LENGTH
# REAL_CHAIN_LENGTH must be changed in sync with all other clients
# changes can be done by changing one, then the other
PARENT = networks.nets['bitcoin']
SHARE_PERIOD = 30 # seconds
CHAIN_LENGTH = 24*60*60//10 # shares
REAL_CHAIN_LENGTH = 24*60*60//10 # shares
TARGET_LOOKBEHIND = 200 # shares
SPREAD = 3 # blocks
IDENTIFIER = 'fc70035c7a81bc6f'.decode('hex')
PREFIX = '2472ef181efcd37b'.decode('hex')
P2P_PORT = 9333
MIN_TARGET = 0
MAX_TARGET = 2**256//2**32 - 1
PERSIST = False
WORKER_PORT = 9332
BOOTSTRAP_ADDRS=''.split(' '),
ANNOUNCE_CHANNEL = '#p2pool'
VERSION_CHECK = lambda v: 50700 <= v < 60000 or 60010 <= v < 60100 or 60400 <= v
VERSION_WARNING = lambda v: 'Upgrade Bitcoin to >=0.8.5!' if v < 80500 else None
And here the bitcoin.conf
Server=1
rpcuser=Solo
rpcpassword=xxx-removed-xxx
rpcallowip=10.180.114.* #Or whatever your network is only the p2pool has to connect
rpcport=17444 #Pick Something p2pool reads the conf for all settings
port=17334 #Pick Something p2pool reads the conf for all settings
maxconnections=100
And here is the CALL.bat
run_p2pool.py --net bitcoin --give-author 0.0 --no-bugreport --disable-upnp --disable-advertise --outgoing-conns 0 --bitcoind-config-path E:\Bitcoin-Data\bitcoin.conf
I´m goining to try solomining with 4 Antminer S1.
Best regards, Carsten.