• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Solo mining to one wallet from multiple PCs using CCMiner

bmoscato

New member
I have a two part question/issue...

I'm trying to configure my PC to run CCMiner to localhost mining to my wallet. I tried mining directly to the wallet without changing the darkcoin.conf file, but that didn't work. I also started the wallet with the -server variable and it still didn't work. I tried no port as well as different range of ports...

CCMiner:
ccminer35-50.exe --algo=x11 -o stratum+tcp://127.0.0.1:9999 -u user -p x
pause

darkcoin.conf
rpcuser=user
rpcpassword=x
rpcallowip=127.0.0.1
rpcport=9999
daemon=1
server=1
gen=0

How do I mine to a wallet on my PC from CCMiner on my PC?
Can I mine to my wallet from other home computers by adding 'addnode=' or 'connect='?
 
Anyone? I'm totally lost here.

I changed my config file on the wallet to try localhost, the ip address of the PC, the external address of the PC...

darkcoin.conf:
Code:
rpcuser=user   
rpcpassword=x
rpcallowip=127.0.0.1
rpcallowip=192.168.0.25
rpcallowip=10.0.0.45
rpcallowip=208.253.161.x
rpcallowip=173.77.148.x
rpcallowip=ANYOTHERMINERS
rpcport=9999
server=1
daemon=1
listen=1


miner.bat:
Code:
ccminer30.exe --algo=x11 -o 192.168.0.25:9999  -u user -p x
pause
 
My response:
C:\Mining\ccminer\x86>ccminer30.exe --algo=x11 -o 192.168.0.25:9999 -u user
-p x
[2014-08-12 08:01:05] 1 miner threads started, using 'x11' algorithm.
[2014-08-12 08:01:05] H T P request failed: Empty reply from server
[2014-08-12 08:01:05] json_rpc_call failed, retry after 30 seconds
 
I have a two part question/issue...

I'm trying to configure my PC to run CCMiner to localhost mining to my wallet. I tried mining directly to the wallet without changing the darkcoin.conf file, but that didn't work. I also started the wallet with the -server variable and it still didn't work. I tried no port as well as different range of ports...

CCMiner:
ccminer35-50.exe --algo=x11 -o stratum+tcp://127.0.0.1:9999 -u user -p x
pause

darkcoin.conf
rpcuser=user
rpcpassword=x
rpcallowip=127.0.0.1
rpcport=9999
daemon=1
server=1
gen=0

How do I mine to a wallet on my PC from CCMiner on my PC?
Can I mine to my wallet from other home computers by adding 'addnode=' or 'connect='?

DarkCoin uses port 9999 and the default rpcport=9332. So inside your darkcoin.conf file should look like this

rpcuser=user
rpcpassword=x
rpcallowip=127.0.0.1
rpcport=9332
daemon=1
server=1

Restart wallet after making changes to .conf file.

Then run your ccminer: ccminer35-50.exe --algo=x11 -o 127.0.0.1:9332 -u user -p x
 
Back
Top