Post
Topic
Board Mining (Altcoins)
Re: [ANN] TeamRedMiner 0.4.3 - Cryptonight Thread - High hashrate, Low Power
by
pbfarmer
on 01/04/2019, 06:01:32 UTC
what is the best web monitoring for this miner?

kerney666 said sometime ago "I have some plans on getting a little Python hack going that acts as an adapter against the messier sgminer API and provides an xmr stak equivalent html and http/json interface. Time time time."

Maybe an adapter for claymore monitor or xmr-stak

https://github.com/rdugan/cgminerhttpinterface

After installing, you can add this to your miner startup bat to auto-start the server if it's not already running.  Doesn't auto-close tho.

Code:

SET HTTP_PORT=8080
SET API_HOST=localhost
SET API_PORT=4028

QPROCESS "chi-server.exe">NUL
IF %ERRORLEVEL% EQU 0 GOTO :startMiner

start /min "TRM Monitor" chi-server -w %HTTP_PORT% -a %API_HOST% -p %API_PORT%

:startMiner

...