Post
Topic
Board Mining (Altcoins)
Re: excavator by NiceHash - multi-algorithm NVIDIA & AMD GPU miner [1.3.7a]
by
lexkanev
on 20/11/2017, 20:09:56 UTC

Anyone

I am trying to implement the "device.list" command in my config file but failing.
I have already read the Readme and Master documents. It is not clear to me how this command is implemented.

I added the following to my config file and caused the system to freeze.

{"id":1,"method":"device.list","params":[]}


I am currently mining ZEC on Excavator. I have 5x GTX1080TI GPUS on my rig. It works fine until I add the "device.list" and then it crashes.

Has any of you used this function when running excavator? If yes can you show your config entries related to "device.list" functionality.

I ran the telnet call for the device info. I entered the device results into a text file.
Can anyone show how the "device.list" command works in the config file and where does the results of this command show up?

Best regards


device.list works only via API.  In the configuration file it does not work.
Via Telnet  - only type on keyboard {"id":1,"method":"device.list","params":[]} and press Enter.
With the HTTP  - http://Excavator_IP:Excavator_Port/api?command={"id":1,"method":"algorithm.list","params":[]}
For example:
Linux: wget --quiet -O - http://10.0.0.9:38080/api?command={"id":1,"method":"algorithm.list","params":[]}
Windows: use PowerShell (.Net) or wget for windows or browser


I see the same HTTP request to api used in standard index.html. But how to get this result in index.html on Ubuntu?

Thnx!