Cgminer.conf: Difference between revisions

From lurkmore wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 6: Line 6:
  "pools" : [
  "pools" : [
  {
  {
  "url" : "stratum+tcp://first-pool.com:3333",
  "url" : "stratum+tcp://usa-1.liteguardian.com:3333",
  "user" : "lurkmore.1",
  "user" : "lurkmore.e",
  "pass" : "x"
  "pass" : "1"
  },
  },
  {
  {
  "url" : "stratum+tcp://backup-pool1.com:3333",
  "url" : "stratum+tcp://usa-1b.liteguardian.com:3333",
  "user" : "lurkmore.1",
  "user" : "lurkmore.e",
  "pass" : "x"
  "pass" : "1"
  }
  }
  ],
  ],

Revision as of 10:16, 2 October 2013

The most basic configuration needed in cgminer's cgminer.conf is as follows:

The following config is for scrypt based cryptocoin mining.

{
"pools" : [
	{
		"url" : "stratum+tcp://usa-1.liteguardian.com:3333",
		"user" : "lurkmore.e",
		"pass" : "1"
	},
	{
		"url" : "stratum+tcp://usa-1b.liteguardian.com:3333",
		"user" : "lurkmore.e",
		"pass" : "1"
	}
],

"intensity" : "20",
"scrypt" : true,
"thread-concurrency" : "24000",
"worksize" : "256",

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

Slightly more advanced options to add to the above config:

"api-allow" : "192.168.1.120",
"api-listen" : true,
"auto-fan" : true,
"gpu-engine" : "1000",
"gpu-memclock" : "1250",
"gpu-powertune" : "0",
"gpu-vddc" : "1.125",
"temp-target" : "70",
"queue" : "0",

Of course, all of the above settings would require modification to match your own hardware and needs.