in web-i http://192.168.1.3:8080/cgi-bin/status.pl i tried to stop, to start, to restart, but the result:
GPU Status Temp Load Rate Accept/Invalid GPU Family Fan% (rpm) Core Memory Power
0
26.0 c 0% 0 Kh/s / n/a 200 Series 20% (1058) 300 Mhz 150 Mhz 0.85v
1
26.0 c 0% 0 Kh/s / n/a 200 Series 20% (964) 300 Mhz 150 Mhz 0.85v
in putty:
root@smos-1:~# screen -r
There is no screen to be resumed.
root@smos-1:~# mine stop
Stopping mining processes...: mine..cgminer api failed...
root@smos-1:~# screen -r
There is no screen to be resumed.
root@smos-1:~#
in config there is line "api-listen" : true,
do uve api port / api allow configured aswell?
my config as example:
"pools" : [
{
"name" : "UTC Nitro",
"url" : "stratum+tcp://ultra.nitro.org:3337",
"user" : "x.x",
"pass" : "x"
},
{
"name" : "UTC Leet",
"url" : "stratum+tcp://ultra.leetpools.com:3333",
"user" : "x.x",
"pass" : "x"
}
],
"api-allow" : "W:127.0.0.1",
"api-listen" : true,
"api-port" : "4028",
"expiry" : "120",
"kernel" : "scrypt-jane",
"kernel-path" : "/usr/local/bin",
"log" : "5",
"queue" : "1",
"scrypt-jane" : true,
"sj-nfmin" : "4",
"sj-nfmax" : "30",
"sj-time" : "1388361600",
"shares" : "0",
"gpu-threads" : "2",
"gpu-fan" : "90",
"gpu-dyninterval" : "7",
"gpu-engine" : "1100,1100,1050",
"gpu-memclock" : "1500,1500,1500",
"gpu-memdiff" : "0",
"gpu-powertune" : "20",
"scan-time" : "30",
"intensity" : "12",
"temp-target" : "88",
"temp-overheat" : "90",
"temp-cutoff" : "95",
"temp-hysteresis" : "2",
"vectors" : "1",
"worksize" : "512",
"lookup-gap" : "2",
"shaders" : "2048",
"thread-concurrency" : "16384"
}
thank you
my cfg:
{
"pools" : [
{
"url" : "stratum+tcp://ultra.nitro.org:3337",
"user" : "xxxxx.0",
"pass" : "xxxxx"
"url" : "stratum+tcp://pickaxe.pool.pm:3306",
"user" : "xxxxx",
"pass" : "xxxxx"
}
],
"api-listen" : true,
"intensity" : "11",
"worksize" : "64",
"auto-fan" : true,
"temp-cutoff" : "85",
"temp-overheat" : "75",
"temp-target" : "72",
"expiry" : "1",
"gpu-dyninterval" : "7",
"log" : "5",
"queue" : "0",
"retry-pause" : "5",
"scan-time" : "30",
"scrypt-jane" : true,
"sj-time" : "1388361600",
"sj-nfmin" : "4",
"sj-nfmax" : "30",
"temp-hysteresis" : "3",
"shares" : "0",
"thread-concurrency" : "16384",
"gpu-thread" : "2",
"gpu-engine" : "1050",
"lookup-gap" : "2",
"gpu-powertune" : "20",
"gpu-memclock" : "1500"
}
if screen -r brings that error, cgminer wasn't even started.
If thats really your pool config, that wrong:
{
"url" : "stratum+tcp://ultra.nitro.org:3337",
"user" : "xxxxx.0",
"pass" : "xxxxx"
"url" : "stratum+tcp://pickaxe.pool.pm:3306",
"user" : "xxxxx",
"pass" : "xxxxx"
}
],
Should look like:
{
"url" : "stratum+tcp://ultra.nitro.org:3337",
"user" : "xxxxx.0",
"pass" : "xxxxx"
},
{
"url" : "stratum+tcp://pickaxe.pool.pm:3306",
"user" : "xxxxx",
"pass" : "xxxxx"
}
],