I use latest git revision.
After restart, and connect putty to RPi
I wrote
screen -r
and see:
[2013-10-07 15:45:16] Started cgminer 3.5.0
[2013-10-07 15:45:16] Loaded configuration file /opt/minepeon/etc/miner.conf
[2013-10-07 15:45:16] Error in configuration file, partially loaded.
[2013-10-07 15:45:16] Start cgminer with -T to see what failed to load.
[2013-10-07 15:45:16] Started cgminer 3.5.0
[2013-10-07 15:45:16] Loaded configuration file /opt/minepeon/etc/miner.conf
[2013-10-07 15:45:16] Error in configuration file, partially loaded.
[2013-10-07 15:45:16] Start cgminer with -T to see what failed to load.
[2013-10-07 15:45:17] Need to specify at least one pool server.
Input server details.
URL:
MinePeon write this config
File: miner.conf
{
"algo": "c",
"api-listen": true,
"api-port": 4028,
"expiry": 120,
"hotplug": 5,
"log": 5,
"no-pool-disable": true,
"queue": 1,
"scan-time": 60,
"shares": 0,
"kernel-path": "\/opt\/minepeon\/bin",
"api-allow": "W:0\/0",
"pools": [
{
"url": "stratum tcp:\/\/asc.coinmine.pl:6110",
"user": "bagros.pi",
"pass": 123
}
]
}
but url is stratum
+tcp://asc.coinmine.pl:6110 (!!
+ !!). When saving the configuration file removes the
+ character.
This is example.
Working config:
{
"algo": "c",
"api-listen": true,
"api-port": "4028",
"expiry": "120",
"hotplug": "5",
"log": "5",
"no-pool-disable": true,
"queue": "1",
"scan-time": "60",
"shares": "0",
"kernel-path": "\/opt\/minepeon\/bin",
"api-allow": "W:0\/0",
"pools": [
{
"url": "stratum+tcp:\/\/asc.coinmine.pl:6110",
"user": "bagros.pi",
"pass": "123"
}
]
}
I added
" in the right places.