I went to switch back to Bitcoin mining yesterday on a box that had been mining altcoins with cgminer 3.2.1 (built on an amd64 Gentoo box with a source tarball pulled from
https://github.com/ckolivas/cgminer/archive/v3.2.1.tar.gz. I have these pools configured in cgminer.conf:
"pools" : [
{
"url" : "stratum+tcp://mint.bitminter.com:3333/",
"user" : "salfter_lanbox",
"pass" : "**redacted**"
},
{
"url" : "stratum+tcp://us.eclipsemc.com:3333/",
"user" : "salfter_lanbox",
"pass" : "**redacted**"
}
]
The config file was unchanged from when I last used it. cgminer 3.2.1 produces this error on startup:
[2013-06-12 09:04:09] Started cgminer 3.2.1
[2013-06-12 09:04:09] Started cgminer 3.2.1
[2013-06-12 09:04:09] Loaded configuration file /home/salfter/.cgminer/cgminer.
conf
[2013-06-12 09:04:10] Probing for an alive pool
[2013-06-12 09:04:10] Failed to resolve (?wrong URL) us.eclipsemc.com:3333/
[2013-06-12 09:04:10] Failed to resolve (?wrong URL) mint.bitminter.com:3333/
When I downgraded to cgminer 3.1.0, it runs like a champ. I've used cgminer 3.2.1 to mine altcoins on stratum pools...but I just noticed that the URLs for those pools don't have trailing slashes, while the ones for the Bitcoin pools do:
salfter@lanbox ~ $ grep stratum .cgminer/cgminer.conf.*
.cgminer/cgminer.conf.bitcoin: "url" : "stratum+tcp://mint.bitminter.com:3333/",
.cgminer/cgminer.conf.bitcoin: "url" : "stratum+tcp://us.eclipsemc.com:3333/",
.cgminer/cgminer.conf.digitalcoin: "url" : "stratum+tcp://dgcpool.com:3333",
.cgminer/cgminer.conf.digitalcoin: "url" : "stratum+tcp://pool.digicoinpool.com:3344",
.cgminer/cgminer.conf.feathercoin: "url" : "stratum+tcp://stratum.wemineftc.com:4444",
.cgminer/cgminer.conf.feathercoin: "url" : "stratum+tcp://pool.fcpool.com:3334",
.cgminer/cgminer.conf.feathercoin: "url" : "stratum+tcp://feathercoin.is-a-geek.com:3333",
.cgminer/cgminer.conf.litecoin: "url" : "stratum+tcp://us.wemineltc.com:80",
.cgminer/cgminer.conf.litecoin: "url" : "stratum+tcp://eu.wemineltc.com:3333",
.cgminer/cgminer.conf.worldcoin: "url" : "stratum+tcp://wdc-eu.epools.org:3334",
I think cgminer 3.2.1 might not like the trailing slash, while previous versions didn't care.