Skip to content

ASIC miner monitoring and provisioning tool

License

Notifications You must be signed in to change notification settings

checksum0/mineops

 
 

Repository files navigation

MineOps-api

About

MineOps, the simplest way to provision and manage asic miners for multiple clients.

Requirements

  • nodejs
  • mongo
  • raspberry PI or better
  • git

Installation

Prior to starting – please make sure the file dcs_root.json has been properly configured. see Appendix

Install

  • nodejs
  • mongodb (run as a service. install tools as well)
  • pm2 (*suggested)

Create database "mineops_local" open mongodb shell

mongo

create database

use mineops_local

close mongo shell

exit

checkout source and install dependencies and required directories

npm i
mkdir tmp

import dataCenterSettings (Copy dcs_root.json and edit the properties or you will have to edit directly in mongo)

cd mineops/data
mongoimport -c dataCenterSettings -d mineops_local --file dcs_root.json

Go to mineops root and start using npm

cd .. 
npm start

or run in the background with pm2

pm2 start npm --name "mineops" -- start
pm2 save
pm2 logs --out

Usage

Create an account

  • Open localhost:3000 in your browser.
  • Click sign up link on the login page.
  • Enter email, password and,...
    • a comma delimited list of account names that will be used by this user on pools as well as be visible in the miner list pages when they login.

Signup to use local mineop

Once set, this needs to be edited directly in

nano ~/mineops/server/db.json
"User": {
  "2": "{\"password\":\"$2a$10$rmYddZEvj3KZerAugYA/fu76UUMMzOBD8hibnCIxFPFHL5sr4QDV.\",\"validated\":true,\"group\":\"user\",\"email\":\"[email protected]\",\"accountName\":\"btcminer,ethminer,antminer\",\"id\":2}",
},

Important properties in the above snippet

  • Set "validated" = true to activate the account
  • Set "group" = "admin" to see all discovered miners

Discover miners

  • login
  • navigate to list drop down and select list

Select miner view

  • click on the discover button (Can take a few minutes depending on the network size)

Discover miners button

  • Refresh the page to see the miners
  • If the networkScanInterval is set then these machines are now being monitored
  • Let us know if a machine is missing.

You can use the api to verify that a missing miner is accessible

http://localhost:3000/state-check?ipAddress=192.168.1.160

Features

Consumption filtering

Filter consumption by account name

Use this page to:

  • Monitor consumption and hashrate
  • Filter monitoring by account name or machine type

Upload property edits

Download properties, edit and upload

Use this page to:

  • Upload miner properties. Usually to patch positions or add serial numbers

Bulk updates

Bulk update pools, restart actions, purge data

Use this page to perform bulk actions:

  • Update pools
  • Reboot
  • Update firmware (Requires downloading files to another repo and then configuring)
  • Remove from database
  • Set deployment date

Active provisioning

Provision using IP report button

Use this page to:

  • Provision miners
  • locate miners
  • change location of miner

Miner monitoring

Monitoring all miners

Use this page to:

  • see miner state
  • sort using menu
  • locate poorly performing machines
  • navigate to machine directly or using reverse proxy server
  • reboot machine
  • see machine's logs
  • Export miner properties and reupload them
  • edit worker name (click)

Miner filtering

Miner filtering instructions

Use this page to:

  • Group machines of interest for bulk operations
  • Typical filter strings
    • ^recent (show miners that failed during scan)
    • L3 expr(hashrate<400) (show l3s that are not performing well)

Miner layout view

Miner layout view

Use this page to:

  • Group machines of interest for bulk operations

Daily hashrate chart

Miner layout view

Links

Appendix

dataCenterSettings document

Sample to add to mongo. Edit dhcp settings

Import properties

  • setting networkScanInterval = 0 will disable scanning and associated auto features such as reboots etc...
  • netmask must fit IP range
{
    "minerIndex" : 356262,
    "cabinetName" : "DH1.7",
    "cabinetPosition" : 52,
    "workerTypeNumber" : "07052",
    "staticAssignment" : true,
    "configureMode" : 1,
    "accountName" : "mineops",
    "enablePoolConfiguration" : true,
    "enableDHCPServer" : false,
    "enableSlack" : true,
    "enableDiscoveryOnStartup" : false,
    "networkScanInterval" : 300000,
    "locationID" : "DBD",
    "locationName" : "Deep Block Data, St-Just",
    "noReplyEmail" : "[email protected]",
    "active" : true,
    "dhcpSettings" : {
            "range" : [
                    "192.168.0.2",
                    "192.168.7.253"
            ],
            "netmask" : "255.255.248.0",
            "router" : [
                    "192.168.0.1"
            ],
            "broadcast" : "192.168.15.255",
            "server" : "192.168.7.x",
            "dns" : [
                    "8.8.8.8",
                    "8.8.4.4"
            ],
            "hostname" : "mineops",
            "domainName" : "rdc.local",
            "timeServer" : null,
            "nameServer" : null,
            "maxMessageSize" : 1500,
            "leaseTime" : 86400,
            "renewalTime" : 60,
            "rebindingTime" : 120,
            "scanThrottleCount" : 200
    },
    "enableProvisionOnDetect" : true,
    "machinesPerShelf" : "6",
    "minerNumberFormat" : "RRSSP",
    "inactiveAlarmPercentage" : 3,
    "email" : {
            "from" : "Mineops support<[email protected]>",
            "to" : "[email protected]"
    },
    "availableKilowatts" : 1200
}

.env

NODE_DEBUG=proxy
smtpTransport={"service": "Gmail","auth": {"user": "[email protected]", "pass": "Pa55w0rd"}}
NODE_ENV=
DISABLE_CONSOLE_METHODS=trace,info
CONSOLE_METHODS_FILTER={"debug":{"key":"logType", "matchText":"_trace", "method":"log"}} 
LOG_LEVEL_OPTIONS= ERROR, WARNING, LOG, INFO, DEBUG, ALL
LOG_LEVEL=INFO
MESSAGE_SERVICES=
_NETWORK_DIAGNOSTIC={"type":"ping", "ipAddress":"8.8.8.8"}
_MONGO_URL=mongodb+srv://mineops_admin:secretKey.mongodb.net/mineopsCentral?retryWrites=true&w=majority
DEBUG=loopback:zzzdatasource
UNSAFE_EDITS=true;  

About

ASIC miner monitoring and provisioning tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • EJS 99.9%
  • JavaScript 0.1%