I am new to mining ethereum and have been trying to set it up for the last few hours. I have created a coinbase wallet and have followed the advice given in this question. The accepted answer has me run the command
ethminer -G -F http://yolo.ethclassic.faith:9999/0x<YOUR_WALLET_ADDRESS> --farm-recheck 200
However I keep getting the error
miner 16:05:28.730|ethminer Getting work package...
✘ 16:05:38.732|ethminer Failed to submit hashrate.
✘ 16:05:38.732|ethminer Dynamic exception type: jsonrpc::JsonRpcException
std::exception::what: Exception -32003 : Client connector error: libcurl error: 28 -> Operation timed out
So I thought that perhaps the server is offline. So I tried connecting to a different pool, e.g. ethpool.org. Unfortunately I find it very hard to find out what I should do to start mining. On the website there is a list of stratum servers, the europe one being eu1.ethpool.org:3333. So I tried the command
ethminer -G -F eu1.ethpool.org:3333/0x<YOUR_WALLET_ADDRESS> --farm-recheck 200
and get the error
miner 16:12:09.399|ethminer Getting work package...
✘ 16:12:12.696|ethminer Failed to submit hashrate.
✘ 16:12:12.696|ethminer Dynamic exception type: jsonrpc::JsonRpcException
std::exception::what: Exception -32603 : INTERNAL_ERROR: : {"id":999,"jsonrpc": "2.0","result": false,"error": "Invalid JSON request"}
I tried different variations of this command but always get the same error.
I also tried mining without a pool. For this I run
geth --rcp
and in another terminal
ethminer -G
This seems to work but I don't know how to tell ethminer to mine for my coinbase wallet. Where should I put my coinbase address in the above two commands?