Author

Topic: [ mining os ] nvoc - page 295. (Read 418549 times)

newbie
Activity: 11
Merit: 0
July 14, 2017, 05:39:53 AM
I can't get ethermine.org to accept my shares for ETH/ETC, nanopool works ok tho. any help is greatly appreciated.

Code:
  ℹ  04:00:58|stratum  Connecting to stratum server eu1.ethermine.org:14444
  ℹ  04:00:59|stratum  Connected to stratum server eu1.ethermine.org : 14444
  ℹ  04:00:59|stratum  Subscribed to stratum server
  ✘  04:00:59|stratum  Read response failed: End of file
  ℹ  04:00:59|stratum  Reconnecting in 3 seconds...
  ℹ  04:01:02|stratum  Connecting to stratum server eu1.ethermine.org:14444
Could not resolve hosteu1.ethermine.org:14444, Operation canceled  ℹ  04:01:02|stratum  Reconnecting in 3 seconds...

onebash settings:
Code:
COIN="ETC"
USE_ENVIRONMENTAL_VARIBLES="YES"   #YES  NO
ETHERMINEdotORG="YES"
GENOILorCLAYMORE="GENOIL"  # choose GENOIL  or  CLAYMORE
ETC_WORKER="$IP_AS_WORKER"
ETC_ADDRESS="0x23a3d73843ee4fef1702c5d6ce78e43d960f4d79"
ETC_POOL="eu1.ethermine.org:14444"
ETC_EXTENTION_ARGUMENTS=""    # add any additional claymore arguments desired here

For ETC you need to use:

Code:
ETC_POOL="eu1-etc.ethermine.org:4444"

or

Code:
ETC_POOL="eu1-etc.ethermine.org:14444"

thanks for pointing out my dumb mistake, everything works now \0/
full member
Activity: 153
Merit: 100
July 14, 2017, 04:04:03 AM
I will release v0018 soon.  Currently you must reimage to upgrade; I will add an updater in a later version.

Hi fullzero, add please to v0018 a monitoring agent for zabbix.
Here https://pastebin.com/raw/pXDwWiS3 is the configuration file zabbix_agentd.conf

I created the necessary metrics for 10 GPUs.
The agent will send the metrics to the server with the IP Address 192.168.10.100
I'll try to add a customization guide.

Briefly: I take the Temrature and the hash from the Claymore
The power consumption of the GPU from the utility nvidia-smi

The result of the metrics is this:
curl -s http://localhost:3333 | sed '/GPU/!d; /Mh/!d;' | awk '{print $13}' | awk 'NR == 1'
curl -s http://localhost:3333 | sed '/Total/!d; /Speed/!d;' | awk '{print $6}' | awk 'NR == 3'
curl -s  http://localhost:3333 | awk '/t=/ {print $12}' | tr -d t=C | awk 'NR == 1'
nvidia-smi | grep % | awk '{print $5}' | tr -d W | awk 'NR==4'


My dashboard: https://photouploads.com/image/Bv1


PS: You need to install the latest package zabbix_agentd 3.2.6

wget http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb
sudo dpkg -i zabbix-release_3.2-1+xenial_all.deb

sudo apt-get update
sudo apt-get install zabbix-agent

Thank you, and sorry for my english.


Was already 50% complete with v0018 upload when I saw this.  Can you give me the link to the zabbix source code?

This looks interesting.

https://www.zabbix.com/download
https://github.com/zabbix
Zabbix is really nice, perhaps we can find a way to set up profiles depending on the miner used.

Some parts can become a bit more miner agnostic, Temperature can be:
Code:
UserParameter=Temp0, /usr/bin/nvidia-smi -i 0 --query-gpu=temperature.gpu --format=csv,noheader,nounits

For the Watt part you can consider to change to:
Code:
UserParameter=Watt0, /usr/bin/nvidia-smi -i 0 --query-gpu=power.draw --format=csv,noheader,nounits

The pag is already pretty full, but perhaps the fan speed can be of interest (in relation to power draw and temperature):
Code:
UserParameter=Fan0, /usr/bin/nvidia-smi -i 0 --query-gpu=fan.speed --format=csv,noheader,nounits

According to nvidia-smi documentation, setting nvidia-smi -pm 1 will speed up nvidia-smi output.

For EWBF Miner we can use the following, but it needs the (tiny) package jq https://stedolan.github.io/jq/
So first:
Code:
sudo apt install jq

And in the Zabbix config file (I'm running EWBF with --api=0.0.0.0:3333 to keep ports the same as Claymore):
Code:
UserParameter=GPU0, /usr/bin/curl 127.0.0.1:3333 -X '{"id":"0", "method":"getstat"}' | jq -r '.result[0].speed_sps'

The result[ x ] value needs to correspond with the GPU id.

newbie
Activity: 12
Merit: 0
July 14, 2017, 03:53:30 AM
However; v0018 will support any storage type; USB key, SSD, HDD, m2 SSD ect. So, I would recommend waiting to download v0018 if you don't have your components yet and plan on using a HDD or SSD.

Thanks for v00018!. Could you please add guide for hdd installation.
fk1
full member
Activity: 216
Merit: 100
July 14, 2017, 03:18:44 AM
I'm wondering how I can setup my rig to mine i.e. GPU1=ETH/SIA GPU2=MUSICOIN/PASCAL is it possible?

Technically yes; although this is the hardest to keep stable.  

Each distinct algo on the same rig will exponentially decrease stability.  

Requires extreme care and a specific system to implement well; ie it is not portable: and therefore not implementable for nvOC.
Is this possible to just create a second bash file, set up card indexes by algo-params for each and start them in different screen sessions?

I'd like to try. On windows I did mine different coins with different cards from same rig and that was not a problem.
newbie
Activity: 11
Merit: 0
July 14, 2017, 03:04:12 AM
I can't get ethermine.org to accept my shares for ETH/ETC, nanopool works ok tho. any help is greatly appreciated.

Code:
  ℹ  04:00:58|stratum  Connecting to stratum server eu1.ethermine.org:14444
  ℹ  04:00:59|stratum  Connected to stratum server eu1.ethermine.org : 14444
  ℹ  04:00:59|stratum  Subscribed to stratum server
  ✘  04:00:59|stratum  Read response failed: End of file
  ℹ  04:00:59|stratum  Reconnecting in 3 seconds...
  ℹ  04:01:02|stratum  Connecting to stratum server eu1.ethermine.org:14444
Could not resolve hosteu1.ethermine.org:14444, Operation canceled  ℹ  04:01:02|stratum  Reconnecting in 3 seconds...

onebash settings:
Code:
COIN="ETC"
USE_ENVIRONMENTAL_VARIBLES="YES"   #YES  NO
ETHERMINEdotORG="YES"
GENOILorCLAYMORE="GENOIL"  # choose GENOIL  or  CLAYMORE
ETC_WORKER="$IP_AS_WORKER"
ETC_ADDRESS="0x23a3d73843ee4fef1702c5d6ce78e43d960f4d79"
ETC_POOL="eu1.ethermine.org:14444"
ETC_EXTENTION_ARGUMENTS=""    # add any additional claymore arguments desired here


newbie
Activity: 12
Merit: 0
July 13, 2017, 11:34:05 PM
I will release v0018 soon.  Currently you must reimage to upgrade; I will add an updater in a later version.

Hi fullzero, add please to v0018 a monitoring agent for zabbix.
Here https://pastebin.com/raw/pXDwWiS3 is the configuration file zabbix_agentd.conf

I created the necessary metrics for 10 GPUs.
The agent will send the metrics to the server with the IP Address 192.168.10.100
I'll try to add a customization guide.

Briefly: I take the Temrature and the hash from the Claymore
The power consumption of the GPU from the utility nvidia-smi

The result of the metrics is this:
curl -s http://localhost:3333 | sed '/GPU/!d; /Mh/!d;' | awk '{print $13}' | awk 'NR == 1'
curl -s http://localhost:3333 | sed '/Total/!d; /Speed/!d;' | awk '{print $6}' | awk 'NR == 3'
curl -s  http://localhost:3333 | awk '/t=/ {print $12}' | tr -d t=C | awk 'NR == 1'
nvidia-smi | grep % | awk '{print $5}' | tr -d W | awk 'NR==4'


My dashboard: https://photouploads.com/image/Bv1


PS: You need to install the latest package zabbix_agentd 3.2.6

wget http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb
sudo dpkg -i zabbix-release_3.2-1+xenial_all.deb

sudo apt-get update
sudo apt-get install zabbix-agent

Thank you, and sorry for my english.


Was already 50% complete with v0018 upload when I saw this.  Can you give me the link to the zabbix source code?

This looks interesting.

https://www.zabbix.com/download
https://github.com/zabbix
newbie
Activity: 18
Merit: 0
July 13, 2017, 10:18:43 PM
Had a rig today at work hard lockup and needed a hard reset. How would I pass the worker email for claymore or eth to get a notification?

Was down for about 8 hours Sad

With the new update that should help any resets, but I totally recommend getting the wemo. I often use it if i can't get into my rig remotely it's excellent for hard resetting plus it also gives you a remote power consumption monitor, smart plugs are pretty great if you get the right one.

Not a bad idea for a remote reset for the power, hummmm. I do like this but I still need a way to be notified when the miner goes down.

Yeap it's pretty fantastic, you can also set it up with IFTTT so if you notice the power consumption dropping over several hours, you can set up rules to reset it, its kind of a hardcore solution to a simple problem esp if you use the other software notifiers.
newbie
Activity: 66
Merit: 0
July 13, 2017, 08:37:14 PM
I just found out about Egifter.com.  You can use Bitcoin to buy gift cards to a bunch of places like Amazon, Best Buy, Target...  Its nice to be able to spend Bitcoin easier.  I just bought a Wemo on Amazon like that.  Thanks for the idea.
newbie
Activity: 12
Merit: 0
July 13, 2017, 08:34:46 PM
I will release v0018 soon.  Currently you must reimage to upgrade; I will add an updater in a later version.

Hi fullzero, add please to v0018 a monitoring agent for zabbix.
Here https://pastebin.com/raw/pXDwWiS3 is the configuration file zabbix_agentd.conf

I created the necessary metrics for 10 GPUs.
The agent will send the metrics to the server with the IP Address 192.168.10.100
I'll try to add a customization guide.

Briefly: I take the Temrature and the hash from the Claymore
The power consumption of the GPU from the utility nvidia-smi

The result of the metrics is this:
curl -s http://localhost:3333 | sed '/GPU/!d; /Mh/!d;' | awk '{print $13}' | awk 'NR == 1'
curl -s http://localhost:3333 | sed '/Total/!d; /Speed/!d;' | awk '{print $6}' | awk 'NR == 3'
curl -s  http://localhost:3333 | awk '/t=/ {print $12}' | tr -d t=C | awk 'NR == 1'
nvidia-smi | grep % | awk '{print $5}' | tr -d W | awk 'NR==4'


My dashboard: https://photouploads.com/image/Bv1


PS: You need to install the latest package zabbix_agentd 3.2.6

wget http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb
sudo dpkg -i zabbix-release_3.2-1+xenial_all.deb

sudo apt-get update
sudo apt-get install zabbix-agent

Thank you, and sorry for my english.
full member
Activity: 169
Merit: 100
July 13, 2017, 08:24:09 PM
I just recalled that when using claymore you can use Ethminer remote manager along with it and just set it up on one of my comptuers to notify me.

Problem solved now. Now I have to look at the Wemo for remote power reset. That is kinda cool for a oh crap situation.
full member
Activity: 169
Merit: 100
July 13, 2017, 07:42:33 PM
Had a rig today at work hard lockup and needed a hard reset. How would I pass the worker email for claymore or eth to get a notification?

Was down for about 8 hours Sad

With the new update that should help any resets, but I totally recommend getting the wemo. I often use it if i can't get into my rig remotely it's excellent for hard resetting plus it also gives you a remote power consumption monitor, smart plugs are pretty great if you get the right one.

Not a bad idea for a remote reset for the power, hummmm. I do like this but I still need a way to be notified when the miner goes down.
newbie
Activity: 18
Merit: 0
July 13, 2017, 07:07:04 PM
Had a rig today at work hard lockup and needed a hard reset. How would I pass the worker email for claymore or eth to get a notification?

Was down for about 8 hours Sad

With the new update that should help any resets, but I totally recommend getting the wemo. I often use it if i can't get into my rig remotely it's excellent for hard resetting plus it also gives you a remote power consumption monitor, smart plugs are pretty great if you get the right one.
full member
Activity: 169
Merit: 100
July 13, 2017, 05:28:07 PM
Had a rig today at work hard lockup and needed a hard reset. How would I pass the worker email for claymore or eth to get a notification?

Was down for about 8 hours Sad
legendary
Activity: 1834
Merit: 1080
---- winter*juvia -----
July 13, 2017, 04:12:12 PM

ASRock H110 PRO BTC+ and have confirmed that v0017 supports 13x GPUs out the box with no bios changes.[/b]  Grin

As the Biostar 12x GPU mobo uses the same chipset I would expect it to be fully supported as well.


excellent - cant wait to get my 1070s on this board!
fk1
full member
Activity: 216
Merit: 100
July 13, 2017, 04:03:59 PM
I'm wondering how I can setup my rig to mine i.e. GPU1=ETH/SIA GPU2=MUSICOIN/PASCAL is it possible?
full member
Activity: 122
Merit: 100
July 13, 2017, 03:18:21 PM


If a GPU hangs; there is a problem regardless of how your monitor is attached.

nvOC can be used full headless; you don't need to use a monitor.

In v0018 nvOC will have; mining client error mitigation, GPU soft crash mitigation, and if you have an SRR: hard crash mitigation.  As far as I know this is the most advanced of any mining OS.

I was just about to ask you if it would be possible to add some detection so that if your miner performance drops to 0 sol/s, or falls below some threshold setting, that it would automatically restart..  had a system wide gpu reset sometime in the middle of the night and the whole system just posted zeros for hours.

Quote

BTW I just tested the:

ASRock H110 PRO BTC+ and have confirmed that v0017 supports 13x GPUs out the box with no bios changes.
  Grin

As the Biostar 12x GPU mobo uses the same chipset I would expect it to be fully supported as well.



Sweet.... now if I could only find some GPUs to buy lol
newbie
Activity: 66
Merit: 0
July 13, 2017, 03:05:01 PM
Does anyone know why all shares are being rejected because of "low difficulty share?"  It only happens with DMD and ZCOIN.  Every other coin works fine.  I've tried different pools and oc settings with no change.
full member
Activity: 153
Merit: 100
July 13, 2017, 12:29:44 PM
Thank you.

Can you add an additional condition regarding GPU temp?

if (CURRENT_TEMP == TARGET_TEMP and CURRENT_FAN_SPEED == MAX) then POWER_LIMIT = POWER_LIMIT-10% ?

Or something similar, do prevent GPU's from crashing it they reach max temperature and fans can no longer catch up. I realize that it involves multiple variables not just the simple condition above, but should be a good start.

P.S. Are you planing to release v18 today?
Something similar will be working in V0018 I believe.
full member
Activity: 153
Merit: 100
July 13, 2017, 12:28:39 PM
Can you add SIBCOIN ?

Thanks!
As far as I know that is X11, not in nvOC. Might be better to use an ASIC for that?
newbie
Activity: 2
Merit: 0
July 13, 2017, 12:17:00 PM
Add, pls, SIB (Sibcoin) and CHC (Chaincoin) support.

THNX
Jump to: