Does your rig with 550's run continously on xrmstak without crashing for over 24 hours?
Mine always crashes after couple of hours, about 5 hours.
Mine work for days with no problems. I think it's all about OC and miner settings, I'm currently using sgminer with ri 400.
Is there a way too make the miner software restart every hour? This would really solve my problem.
There's plenty of ways to do that. Easiest I can think of (though maybe not the most elegant) is to run the miner in a loop and then run another simple script that restarts the miner's process.
Your miner's bat:
:loop
sgminer.exe -k cryptonight ... ...
goto loop
And then a separate bat-file for restarting the miner:
:start
timeout -t 3600
taskkill /t /f /im sgminer.exe
goto start
So you run your miner with the first bat, and then run the 2nd bat file. Keep them both running and the 2nd one will be automatically restarting your miner every hour.
Thanks man, im using xtrmstak but i guess the proces would be the same, gonna try it today, this should fix my problem, every day when i wake up my miner is crashed lol.
edit:
So i had sgminer running, but one card was acting weird, i found out layer one of the pci-e power kabels one of the wires went out the plastic socket....found this out after reinstalling windows ofcourse.
Now my sgminer just restarts when i start it, so there must be some file from a windows update thats required to run it, just trying to figure out wich one, i have updated after my reinstall of windows.