I moved through the eloipool installation guide from Ignatius, but it seems the pool is not working yet. I doublechecked the needed changes in config.py mentioned by Ignatius. These should be fine.
How i start:
First start blakecoind by run-blakecoind.sh
./blakecoind \
-datadir=/home/osboxes/Desktop/Blake/BlakeData/ -daemon\
-conf=/home/osboxes/Desktop/Blake/BlakeData/blakecoin.conf \
-blocknotify=./newblock.sh
There the problems begin (i think).. Anytime a new block is found on the network (blakecoind has to be running properly, otherwise it wouldnt notice a new block on the network) it starts the notify process for the pool
#!/bin/sh
killall -USR1 /home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py
but as answer i just get:
/home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py: no process found
While eloipool.py is running issue the command "ps", what path is shown for eloipool.py? If it differs that is the issue, otherwise experiment to find the right killall usage. What OS was this again?
osboxes@osboxes:~/Desktop/Blake$ /home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py
Traceback (most recent call last):
File "/home/osboxes/Desktop/eloipool_Blakecoin/eloipool.py", line 82, in
import jsonrpc
ImportError: No module named 'jsonrpc'
Install python-jsonrpc package? It looks like eloipool crashes on startup due to a missing dependency. Fix this issue first. The killall is probably correct, it fails to kill eloipool because eloipool is not running. You are very close now, good luck and welcome to the Blake ecosystem!