sundownz
|
|
January 06, 2018, 01:32:48 AM Last edit: January 06, 2018, 02:18:58 AM by sundownz |
|
Awesome. I am testing now on my home office PC... just got back in from Mexico =) KlaustT 8.18 --> 1.43 MH/S Palgin 1.0.1 --> 1.75 MH/S GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC. Very nice! But yes... it seems to keep on running. So far it has failed to close after several cycles. I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ?
|
|
|
|
Tinouti
Newbie
Offline
Activity: 10
Merit: 0
|
|
January 06, 2018, 02:23:08 AM |
|
Hi,
It seems I'm not the only one having issue connecting to zpool24h pool status.
I constantly have the message Error contacting pool, retrying..
Hopefully, if we join efforts we can get to the bottom of this...
What I found so far:
I have 2 minirigs. When they start failing to get the pool status, it keeps trying for a long long time before receiving a response. If I stop both and wait a few minutes and start one and wait few more minutes before starting the other, it seems that's easier to get it to work. but not good, since this is manual intervention and lots a minutes without mining.
I modified the zpool script to get more details and found that the web request succeed with http 200 status but the content is empty (no stats).
Trying to get the status manually from the browser or a port of wget have the same issue. And after a successful request with content, retrying will get an empty response again.
Trying to get the status from a different internet connection have the same issue (on my mobile phone).
trying a web proxy page, so it access the status api from a different location will have the same issue.
At this point I don't think it's a nemosminer script issue. probably some error not correctly handle on the zpool server or perhaps some API request rate limit.
As anyone have more info? Should send a post on the zpool topic but wanted to get the more info from the people having the same issue here.
I'm pretty much at the same place right now. When I'm trying to access the status from my phone, it works the first time, then return a blank page. If I switch airplane mode on and off (and thus getting a new IP), it'll work again the first time, then blank after that. So I think that - like you assumed - zpool must have added a request limit per IP. I don't know what the time limit is, but if we can't get the pool status, that pretty much negate the point of having a multialgo switching miner. I guess we'll have to forget about zpool for the time being.
|
|
|
|
minerx117 (OP)
Sr. Member
Offline
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
|
|
January 06, 2018, 04:03:16 AM |
|
A friend of mine (who told me about this project) has a problem: when running program on 8-card rigs, sometimes when mining program is to be switched , Nemo is killing the current miner - he gets "driver failed "error and then 1 of cards disappears Any idea what might be the cause and cure?
I confirmed same fenomena - gracefully closing Alexis miner to driver crash and the card running main display disappears , need to restart Even when making it manually with mouse a possible workaround: $_.Active += (Get-Date)-$_.Process.StartTime $_.Process.CloseMainWindow() | Out-Null Sleep 1 # if miner starts from Schedler, CloseMainWindow() is now enought, we have to force stop process by Id Stop-Process $_.Process | Out-Null to $_.Active += (Get-Date)-$_.Process.StartTime # simply "Kill with power" Stop-Process $_.Process | Out-Null Sleep 2
thanks : https://github.com/nemosminer/NemosMiner-v2.3/issues/146
|
NemosMiner-v3.8.1.3
|
|
|
minerx117 (OP)
Sr. Member
Offline
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
|
|
January 06, 2018, 04:19:35 AM Last edit: January 06, 2018, 09:41:02 AM by minerx117 |
|
Hi,
It seems I'm not the only one having issue connecting to zpool24h pool status.
I constantly have the message Error contacting pool, retrying..
Hopefully, if we join efforts we can get to the bottom of this...
What I found so far:
I have 2 minirigs. When they start failing to get the pool status, it keeps trying for a long long time before receiving a response. If I stop both and wait a few minutes and start one and wait few more minutes before starting the other, it seems that's easier to get it to work. but not good, since this is manual intervention and lots a minutes without mining.
I modified the zpool script to get more details and found that the web request succeed with http 200 status but the content is empty (no stats).
Trying to get the status manually from the browser or a port of wget have the same issue. And after a successful request with content, retrying will get an empty response again.
Trying to get the status from a different internet connection have the same issue (on my mobile phone).
trying a web proxy page, so it access the status api from a different location will have the same issue.
At this point I don't think it's a nemosminer script issue. probably some error not correctly handle on the zpool server or perhaps some API request rate limit.
As anyone have more info? Should send a post on the zpool topic but wanted to get the more info from the people having the same issue here.
I'm pretty much at the same place right now. When I'm trying to access the status from my phone, it works the first time, then return a blank page. If I switch airplane mode on and off (and thus getting a new IP), it'll work again the first time, then blank after that. So I think that - like you assumed - zpool must have added a request limit per IP. I don't know what the time limit is, but if we can't get the pool status, that pretty much negate the point of having a multialgo switching miner. I guess we'll have to forget about zpool for the time being. yes there is something going on all my rigs at home can no longer access zpool i can't even load home page in Internet browser if i run a vpn they connect fine an can load the hompage so i believe this is a poolside issue not nemosminer... i get similar results with hashrefinery sometime to... Ahashpool and MPH work fine..... i'll look into this more and see if there is anything i can do about it Regards Nemo
|
NemosMiner-v3.8.1.3
|
|
|
car1999
|
|
January 06, 2018, 04:29:27 AM |
|
Awesome. I am testing now on my home office PC... just got back in from Mexico =) KlaustT 8.18 --> 1.43 MH/S Palgin 1.0.1 --> 1.75 MH/S GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC. Very nice! But yes... it seems to keep on running. So far it has failed to close after several cycles. I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ? I've never coded powershell, after some researchs I found a fix, looks ugly but works, replace the codes in Wrapper.ps1: $PowerShell.Streams.Verbose.ReadAll() | ForEach-Object { $Line = $_
if ($Line -like "*total speed:*" -or $Line -like "*accepted:*") { $Words = $Line -split " " $HashRate = [Decimal]$Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1)) - 1]
switch ($Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1))]) { "kh/s" {$HashRate *= [Math]::Pow(1000, 1)} "mh/s" {$HashRate *= [Math]::Pow(1000, 2)} "gh/s" {$HashRate *= [Math]::Pow(1000, 3)} "th/s" {$HashRate *= [Math]::Pow(1000, 4)} "ph/s" {$HashRate *= [Math]::Pow(1000, 5)} }
$HashRate | Set-Content ".\Wrapper_$Id.txt" } elseif ($Line -like "*overall speed is*") { $Words = $Line -split " " $HashRate = [Decimal]($Words -like "*H/s*" -replace ',', '' -replace "[^0-9.]",'' | Select-Object -Last 1)
switch ($Words -like "*H/s*" -replace "[0-9.,]",'' | Select-Object -Last 1) { "KH/s" {$HashRate *= [Math]::Pow(1000, 1)} "mH/s" {$HashRate *= [Math]::Pow(1000, 2)} "MH/s" {$HashRate *= [Math]::Pow(1000, 2)} }
$HashRate | Set-Content ".\Wrapper_$Id.txt" }
$Line }
@minerx117 would have a elegant solution. Happy mining!
|
|
|
|
restless
Legendary
Offline
Activity: 1151
Merit: 1001
|
|
January 06, 2018, 07:31:02 AM Last edit: January 06, 2018, 08:44:35 AM by restless |
|
Replace what lines?! PS: aaaah , its in wrapper.ps1 PPS: It seems it HAS to be forced Stop-Process $_.Process -Force | Out-Null
|
|
|
|
|
minerx117 (OP)
Sr. Member
Offline
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
|
|
January 06, 2018, 10:33:21 AM Last edit: January 06, 2018, 11:22:23 AM by minerx117 |
|
|
NemosMiner-v3.8.1.3
|
|
|
yashart
Newbie
Offline
Activity: 8
Merit: 0
|
|
January 06, 2018, 01:21:38 PM |
|
Anyone using 1080 or 1080 Ti cards running this miner care to share their hashrates? I can't seem to source 1070ti's at a reasonable price anymore (only slightly less than 1080) and want to build my next rig. Trying to determine what the best path is. Thanks in advance!
|
|
|
|
millsys
Member
Offline
Activity: 112
Merit: 10
|
|
January 06, 2018, 01:26:27 PM |
|
Hi, complete beginner here. Could anyone direct me to a tutorial how to use this miner? I edited the .bat file accordingly, ran the benchmark without errors...it was still running after like 2-3 hours (atm using 4*1070 ti), is this normal? Does the benchmark run indefinitely or? Also how do I actually start mining? In the bin folder there are 6 different miners (Alexis 78, Alexis 78 cuda 9, CCminer Klaust, DTSM, Tpruvodcuda9 and Tpruvodx64), which one should I start if I want to mine in MPH with multi algo profit switching?
Sorry for noob questions, I am a bit overwhelmed by this...I found only 1 tutorial on youtube but it hasnt been much of a help (the guy doesnt show how to actually mine).
Thanks in advance
Its mining during benchmark, just switching every 120 seconds 1) Make sure video cards are set in batch, so if you have 6 nvidia cards you need the GPU values to have 0 1 2 3 4 5 and 0,1,2,3,4,5 2) AHashPool will give you more profit than Zpool and other pools (lower fees, higher results) 3) Make sure wallet set in batch file, then go to ahashpool and click wallet and enter to see miner is working (can be 15-60min delay for updates, this isn't realtime) 4) Change interval to 900 after benchmarks are complete (kill process, edit batch, run again) You are now 'mining' as you watch the main screen and the 'miner' screen popup. Look at Miner screen to see if its hashing. Search wallet at pool to see if it shows your miner.
|
FARM #1 : 60 GPUs spread across 6 rigs (1080ti/1080/1070ti/1070) FARM #2 : 72 GPUs spread across 12 rigs (1070ti x 6) FARM #3 : 16 GPUs spread across 4 rigs (1080ti x 4) AntMiner S9 13.5TH / AntMiner L3+ x 2
|
|
|
Boffinboy24
Newbie
Offline
Activity: 24
Merit: 0
|
|
January 06, 2018, 01:33:03 PM |
|
Hi Nemo, isn’t there a possibility / plan to have a backup or failover pool if main pool is down? This would be great
|
|
|
|
sundownz
|
|
January 06, 2018, 01:38:23 PM |
|
Awesome. I am testing now on my home office PC... just got back in from Mexico =) KlaustT 8.18 --> 1.43 MH/S Palgin 1.0.1 --> 1.75 MH/S GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC. Very nice! But yes... it seems to keep on running. So far it has failed to close after several cycles. I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ? I've never coded powershell, after some researchs I found a fix, looks ugly but works, replace the codes in Wrapper.ps1: $PowerShell.Streams.Verbose.ReadAll() | ForEach-Object { $Line = $_
if ($Line -like "*total speed:*" -or $Line -like "*accepted:*") { $Words = $Line -split " " $HashRate = [Decimal]$Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1)) - 1]
switch ($Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1))]) { "kh/s" {$HashRate *= [Math]::Pow(1000, 1)} "mh/s" {$HashRate *= [Math]::Pow(1000, 2)} "gh/s" {$HashRate *= [Math]::Pow(1000, 3)} "th/s" {$HashRate *= [Math]::Pow(1000, 4)} "ph/s" {$HashRate *= [Math]::Pow(1000, 5)} }
$HashRate | Set-Content ".\Wrapper_$Id.txt" } elseif ($Line -like "*overall speed is*") { $Words = $Line -split " " $HashRate = [Decimal]($Words -like "*H/s*" -replace ',', '' -replace "[^0-9.]",'' | Select-Object -Last 1)
switch ($Words -like "*H/s*" -replace "[0-9.,]",'' | Select-Object -Last 1) { "KH/s" {$HashRate *= [Math]::Pow(1000, 1)} "mH/s" {$HashRate *= [Math]::Pow(1000, 2)} "MH/s" {$HashRate *= [Math]::Pow(1000, 2)} }
$HashRate | Set-Content ".\Wrapper_$Id.txt" }
$Line }
@minerx117 would have a elegant solution. Happy mining! That DID work. I tried it on mine =)
|
|
|
|
Nana99
Newbie
Offline
Activity: 126
Merit: 0
|
|
January 06, 2018, 02:09:06 PM |
|
How much can 1070 can earn for a day in the past few days?
|
|
|
|
legendary13
Newbie
Offline
Activity: 29
Merit: 0
|
|
January 06, 2018, 03:18:36 PM |
|
Hi Nemo it seems to me that time of ran miners wrong? and hsr palgin miner returns wrong result for neoscrypt writes 909,72 MH/s real 9.09 MH/s
|
|
|
|
Chaob
Newbie
Offline
Activity: 7
Merit: 0
|
|
January 06, 2018, 03:53:37 PM |
|
How much can 1070 can earn for a day in the past few days?
My friend has a single 1070 on ahashpool, I just looked at his chart and in the last 24 hours he made .0003 BTC or $4.95 at the current value.
|
|
|
|
BitBustah
|
|
January 06, 2018, 03:59:00 PM |
|
+- 21 euro last 24 hours at Ahash with my 1x 1080 Ti and 2 x 1080
|
|
|
|
jebidia
Jr. Member
Offline
Activity: 161
Merit: 1
|
|
January 06, 2018, 04:07:31 PM |
|
Which version are you running BitBustah? And which algos are you running at ahash? I Was getting a ton of errors with nist5 over there last night so i tried skein on hashrefinery and only saw about $8 per 1080ti. Back on ahash x17, skein, and tribus. I like tribus because its streaky and gets up to full hash very fast. Running a 600 interval.
|
|
|
|
BitBustah
|
|
January 06, 2018, 04:13:38 PM |
|
Which version are you running BitBustah? And which algos are you running at ahash? I Was getting a ton of errors with nist5 over there last night so i tried skein on hashrefinery and only saw about $8 per 1080ti. Back on ahash x17, skein, and tribus. I like tribus because its streaky and gets up to full hash very fast. Running a 600 interval.
NemosMiner-v2.3c-beta, autoswitching on 1800 interval, doing Ahash24hr pool: phi,lbry,skein,x17,bitcore,Nist5,Lyra2RE2,neoscrypt,blake2s,skunk,groestl Check out the stats 16:00 -16:00 http://tools.you-stupid-woman.com/hourly_earnings/Rounded down I would say my Ti is doing 40% of that near 21 euro, my 2 regular 1080s are doing both 30%.
|
|
|
|
jebidia
Jr. Member
Offline
Activity: 161
Merit: 1
|
|
January 06, 2018, 04:41:07 PM |
|
Very interesting...I've read mix reviews about the 24hr setup but have yet to try it. I'll give it a go. I'm assuming it would switch much less because there's much less variation over 24hrs vs current...
I had a feeling there was something a little off the other day and then I read of someone saying they thought there was a profit fall off going from 2.2 to 2.3c...so I was thinking about going back, but you seem to be doing well...in the words of Borat; "Very nice!"
|
|
|
|
BitBustah
|
|
January 06, 2018, 04:59:13 PM |
|
from 2.2 to 2.3c...so I was thinking about going back, but you seem to be doing well...in the words of Borat; "Very nice!"
Jak se máš? My earnings were down too the last weeks.. Now they are OK I guess.
|
|
|
|
|