Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: scriptio on January 31, 2014, 06:37:20 PM



Title: Fix CGMiner
Post by: scriptio on January 31, 2014, 06:37:20 PM
I have download a cgminer from https://pool.dogechain.info/ and followed through with the steps in the same order what was recommended. Even after a few tries I have error messages and the mining does not begin.  

Here is the message.

 [2014-01-31 20:53:25] Started cgminer 3.7.2
 [2014-01-31 20:53:25] Started cgminer 3.7.2
 [2014-01-31 20:53:25] Loaded configuration file cgminer.conf
 [2014-01-31 20:53:25] Fatal JSON error in configuration file.
 [2014-01-31 20:53:25] Configuration file could not be used.
 [2014-01-31 20:53:26] Need to specify at least one pool server.


File name is cgminer.conf
My settings are ...

{
"pools" : [
   {
      "url" : "stratum+tcp://stratum1.dogechain.info:3333",
      "user" : "miner1",
      "pass" : "jo8"
   }
],
"scrypt" : true,
"kernel-path" : "/usr/local/bin"
}

"intensity" : "d,9,9,9",
"gpu-engine" : "0-985,0-950,0-960,0-1000",
"gpu-fan" : "0-85,0-85,0-85,0-85",
"gpu-memclock" : "860,825,835,875",
"gpu-powertune" : "20,20,20,20",
"temp-cutoff" : "95,95,95,95",
"temp-overheat" : "85,85,85,85",
"temp-target" : "75,75,75,75",

"auto-fan" : true,
"auto-gpu" : true,
"expiry" : "120",
"failover-only" : true,
"gpu-threads" : "2",
"log" : "5",
"queue" : "1",
"scan-time" : "60",
"temp-hysteresis" : "3",

"kernel-path" : "/usr/local/bin"
}

Not sure if this is acceptable here but I would tip the first person who sees me though this problem and helps me start out my miner. Tips of 5000 Dogecoins.

Thank you.


Title: Re: Fix CGMiner
Post by: greghawk on January 31, 2014, 08:14:56 PM
Hi.
The problem is the "d", try it again without it

"intensity" : "d,9,9,9",

Cheers


Title: Re: Fix CGMiner
Post by: railzand on January 31, 2014, 09:11:51 PM
-u Weblogin.Worker

have you set up your username.worker properly?


Title: Re: Fix CGMiner
Post by: QNX on January 31, 2014, 10:57:58 PM
Should be

Quote
{
"pools" : [
   {
      "name" : "dogechain.info",
      "url" : "stratum+tcp://stratum1.dogechain.info:3333",
      "user" : "miner1",
      "pass" : "jo8"
   }
],
"scrypt" : true,
"intensity" : "9,9,9,9",
"gpu-engine" : "0-985,0-950,0-960,0-1000",
"gpu-fan" : "0-85",
"gpu-memclock" : "860,825,835,875",
"gpu-powertune" : "20",
"temp-cutoff" : "95",
"temp-overheat" : "85",
"temp-target" : "75",
"auto-fan" : true,
"auto-gpu" : true,
"expiry" : "120",
"failover-only" : true,
"gpu-threads" : "2",
"log" : "5",
"queue" : "1",
"scan-time" : "60",
"temp-hysteresis" : "3",
"kernel-path" : "/usr/local/bin"
}


Title: Re: Fix CGMiner
Post by: Speedie on February 01, 2014, 02:51:56 AM
Problem is in bold below. You have an extra closing brace after the "kernel-path" line that doesn't belong there. You also have "kernel-path" declared twice for some reason.

{
"pools" : [
   {
      "url" : "stratum+tcp://stratum1.dogechain.info:3333",
      "user" : "miner1",
      "pass" : "jo8"
   }
],
"scrypt" : true,
"kernel-path" : "/usr/local/bin"
}

"intensity" : "d,9,9,9",
"gpu-engine" : "0-985,0-950,0-960,0-1000",
"gpu-fan" : "0-85,0-85,0-85,0-85",
"gpu-memclock" : "860,825,835,875",
"gpu-powertune" : "20,20,20,20",
"temp-cutoff" : "95,95,95,95",
"temp-overheat" : "85,85,85,85",
"temp-target" : "75,75,75,75",

"auto-fan" : true,
"auto-gpu" : true,
"expiry" : "120",
"failover-only" : true,
"gpu-threads" : "2",
"log" : "5",
"queue" : "1",
"scan-time" : "60",
"temp-hysteresis" : "3",

"kernel-path" : "/usr/local/bin"
}


Title: Re: Fix CGMiner
Post by: maccd1 on February 01, 2014, 02:56:24 AM
looks like miner1 is your  worker name , not your user ....maybr.


Title: Re: Fix CGMiner
Post by: scriptio on February 01, 2014, 10:27:16 AM
Tried each of the suggestions given but I still get the same message and I am going nowhere with my mining! Thank you nevertheless. ...


Title: Re: Fix CGMiner
Post by: QNX on February 01, 2014, 10:50:52 AM
Okay. try this one

{
"pools" : [
   {
      "name" : "dogechain.info",
      "url" : "stratum+tcp://stratum1.dogechain.info:3333",
      "user" : "miner1",
      "pass" : "jo8",
      "pool-priority" : "0"
   }
],
"api-allow" : "W:127.0.0.1",
"api-listen" : true,
"expiry" : "120",
"failover-only" : true,
"kernel-path" : "/usr/local/bin",
"log" : "5",
"queue" : "1",
"scan-time" : "60",
"scrypt" : true,
"auto-fan" : true,
"auto-gpu" : true,
"gpu-threads" : "2",
"gpu-engine" : "985.950.960.1000",
"gpu-fan" : "0-85",
"gpu-memclock" : "860.825.835.875",
"gpu-powertune" : "20",
"intensity" : "13",
"temp-target" : "75",
"temp-overheat" : "85",
"temp-cutoff" : "95",
"temp-hysteresis" : "3"
}


Title: Re: Fix CGMiner
Post by: scriptio on February 01, 2014, 12:33:22 PM
Hie QNX,

Thanks. Tried this too.. same error message. Is there some other client that I could use to mine dogecoin?


Title: Re: Fix CGMiner
Post by: scriptio on February 01, 2014, 12:55:07 PM
FIXED the issue with another GUIminer. Thanks everyone for your support.


Title: Re: Fix CGMiner
Post by: QNX on February 01, 2014, 04:58:59 PM
good for you, anyway you coтa was broken  ;D