Anyone got any idea how to restart my miner
I mean after the miner crashed how to restart it automatically
My pc doesn?t turn off only the miner crashes
You could wrap it in a loop in the batch file.
e.g.
@echo off
:start
<>
goto start
This other command has the same function too right?
:loop
hsrminer_neoscrypt -o stratum+tcp://pool.unimining.net:4234 -u wallet -p c=DSR,stats
goto loop
AND how to setup a failover? To conect to other pool if the main is down.
Tried with ccminer too without sucess, really wanted to configure a failsafe pool
Yes exactly. That is the same thing.
I don't think that you have any functionality like that in ccminer or hsrminer. It may be incorporated in one of the multi-algo wrappers like Nemo miner or Sniffdog but not sure.
It's not overly complicated to write something basic that would take care of this but it requires some scripting skills.
I have a TPLink HS110 that I monitor every minute with a script. If the current power is below the expected power for more than a minute I restart the entire rig which takes care of a number of problems (freeze, network problems, etc.) not the nicest of solutions but it gets the work done.