Exactly. What I tried, that I started feathercoin-qt like this:
./feathercoin-qt -listen -rpcuser=faszom -rpcpassword=faszom -rpcallowip=127.0.0.1I'm really not sure if I really need all these parameters, I just kept trying and added more parameters as I was trying without success.
Then I started CPUminer like this:
minerd --userpass faszom:faszom --url http://127.0.0.1:9336Then I get this output from minerd:
[2013-04-18 20:59:22] 2 miner threads started, using 'scrypt' algorithm.
[2013-04-18 20:59:22] Binding thread 1 to cpu 1
[2013-04-18 20:59:22] Binding thread 0 to cpu 0
[2013-04-18 20:59:52] HTTP request failed: Operation timed out after 30001 milliseconds with 0 bytes received
[2013-04-18 20:59:52] json_rpc_call failed, retry after 30 seconds
[2013-04-18 21:00:52] HTTP request failed: Operation timed out after 30001 milliseconds with 0 bytes received
[2013-04-18 21:00:52] json_rpc_call failed, retry after 30 seconds
Simultenously, this appears in the debug.log of feathercoin-qt:
accepted connection 127.0.0.1:56132
PROCESSMESSAGE MESSAGESTART NOT FOUND
This is an indication that you're trying to talk to the coin daemon on the wrong port.
Your "
minerd --userpass faszom:faszom --url http://127.0.0.1:9336"
says you want to talk on the port 9336.
However you don't start the daemon with --rpcport=9336.
"
./feathercoin-qt -listen -rpcuser=faszom -rpcpassword=faszom -rpcallowip=127.0.0.1"
according to you.
Try adding "--rpcport=9336" to that.
I'd run ./feathercoind and not ./feathercoin-qt, but I guess that the options are the same.