Author

Topic: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 200000 miners - page 265. (Read 703148 times)

newbie
Activity: 162
Merit: 0
member
Activity: 277
Merit: 23
How to setup SRBminer as a managed miner to display rig id on the pool? I use supportxmr pool and adding parameters in command line doesn't help

tried adding this:

--cworker RIG1
--cpassword RIG1

(since the config file for xmr-stak looks like this

Currency: monero8
Pool address: "pool.supportxmr.com:5555",
Username: "43QGgipcHvNLBX3nunZLwVQpF6VbobmGXXXXXXXXXXXXXXXXX1tUHcKPm9bcjubrzKqTm69JbQSL4B3 f6E3mNCbU",
Password: "RIG1",
Rid ID: "RIG1",
TLS/SSL: "No",
Nicehash: No
legendary
Activity: 2254
Merit: 2419
EIN: 82-3893490
anyone in Florida and have frontier cable that can help me figure out how to set this up via my router so I can access off network?
newbie
Activity: 36
Merit: 0
Hi Patrike,

any news regarding https://icemining.ca/  addition, PLEASE Smiley

M.
newbie
Activity: 49
Merit: 0

Anyonne notices Afterburner remote server stopped working after 5.7.1 upgrade ?? or just coincidence..

I've not received any other reports on this. Is it the Afterburner Remote Server itself that isn't starting/running correctly?


Yes.. just starts (shows icon) then stops after 2-3 seconds... (icon dissapears)
legendary
Activity: 3346
Merit: 1094
Update on the Avast/AVG issue that started about two days ago:

I've been in contact with their support team and they have promised to whitelist Awesome Miner based on its digital signature that is used to sign the installer and all binaries. They also stated that Awesome Miner didn't contain any threats (well, I knew that already).

This should be part of their next virus definition update and I hope this will resolve the issue with warning dialogs from the Avast/AVG software when downloading Awesome Miner.
legendary
Activity: 3346
Merit: 1094
@Patrike

Looks like miningpool hub online services using algo V7 and now profit profile switching to MPH XMR and resulting in rejected shares.
Thanks for letting me know, I will update this. There are many moving targets when a major coin like Monero is changing algorithm.
jr. member
Activity: 61
Merit: 2
@Patrike

Looks like miningpool hub online services using algo V7 and now profit profile switching to MPH XMR and resulting in rejected shares.
legendary
Activity: 3346
Merit: 1094
hi patrike
cryptonightv8 miner for nvidia ?

i use awesome miner free version . i have 2 rig
can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
Most CNv8 miners are for AMD. I just looked at XMRig and it should be able to do CNv8 mining although the documentation isn't very clear on the exact parameter configuration for it.

Awesome Miner is not automatically setting the command line parameters for using XMRig nVidia with CNv8, but it looks like it works f you add "--variant 2" (compared to "--variant 1" with CNv7). I will add this to the next release of Awesome Miner.

If anyone else has more insight, please let me know.
thanks

about i use awesome miner free version . i have 2 rig
can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
how can do it ?

and this work for nvidia :
https://coinguides.org/ccminer-cryptonight-v3-v7-v8/
If you want to select the pools and mining software manually, you can create two Managed Miners:
https://support.awesomeminer.com/support/solutions/articles/35000085995-add-managed-miners-using-the-wizard

If you want Awesome Miner to do the profit switching, you can create two Managed Profit Miners. In this case you can also configure custom pools to use for the profit switcher in the Options dialog, Profit switching section, "Custom pools":
https://support.awesomeminer.com/support/solutions/articles/35000086086-profit-switching-for-gpu-and-cpu-mining#profitsingle

You can also mix these concepts. You can add one Managed Miner miner for your custom X16r pools and then have one Managed Profit Miner working on the most profitable X17 pool.
legendary
Activity: 3346
Merit: 1094
Awesome Miner version 5.7.2

 
  - Dialog to define pool coin improved to allow selecting if the coin list should be filtered based on the algorithm selection of the miner or if it should include all

Hi patrike,

I don´t understand this....

Well, only when the algo does not mactch the coin Huh?

I've had a number of support cases where an External Miner was configured with some algorithm, for example X11 for an Antminer D3, and then user user changed IP of the miner to point to an Antminer L3 (Scrypt). That works fine even if the algorithm happen to be set to X11 (this setting isn't that important), but later on when you are about to use Define Pool Coin you cannot find Litecoin because of the algorithm filter.

With this change, you can find Litecoin and select it even if your miner had another algorithm set. So it's a way to make it easier for users to make the configuration they want right away.
jr. member
Activity: 348
Merit: 5
hi patrike
cryptonightv8 miner for nvidia ?

i use awesome miner free version . i have 2 rig
can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
Most CNv8 miners are for AMD. I just looked at XMRig and it should be able to do CNv8 mining although the documentation isn't very clear on the exact parameter configuration for it.

Awesome Miner is not automatically setting the command line parameters for using XMRig nVidia with CNv8, but it looks like it works f you add "--variant 2" (compared to "--variant 1" with CNv7). I will add this to the next release of Awesome Miner.

If anyone else has more insight, please let me know.

Hi, I just tested earlier today, use

Code:
cryptonight/2

Works for me
legendary
Activity: 3346
Merit: 1094
We have over 100 miners at our location. I want to create a rule so I get a single notification if 10 or more miners are offline all at the same time. How do I do that?

Thanks
Hi again,

You can create a trigger of the type "C# script" and use the script below to detect if the number of miners offline is 10 or more. You can then add any action you want for this rule, for example a Notification.

Code:
public class TriggerScript
{
private ContextProvider Context = ScriptManager.Context;

public List Check(List minerList)
{
const int TriggerIfNumberOffline = 10;
List triggerList = new List();
foreach (IMinerBase miner in minerList)
{
if (miner.IsRunningState == false)
triggerList.Add(miner);
}
if (triggerList.Count >= TriggerIfNumberOffline)
return triggerList;
return null;
}
}
legendary
Activity: 3346
Merit: 1094
hi patrike
cryptonightv8 miner for nvidia ?

i use awesome miner free version . i have 2 rig
can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
Most CNv8 miners are for AMD. I just looked at XMRig and it should be able to do CNv8 mining although the documentation isn't very clear on the exact parameter configuration for it.

Awesome Miner is not automatically setting the command line parameters for using XMRig nVidia with CNv8, but it looks like it works f you add "--variant 2" (compared to "--variant 1" with CNv7). I will add this to the next release of Awesome Miner.

If anyone else has more insight, please let me know.
legendary
Activity: 3346
Merit: 1094
So i switched a miner from profit switch but when I try to mine it says could not not reslove host 
any ideas can you try this IP

stratum+tcp://67.40.164.169::12345
In the URL you pasted here you have two ':', which might be the reason why some mining software are unable to establish the connection.
legendary
Activity: 3346
Merit: 1094

Anyonne notices Afterburner remote server stopped working after 5.7.1 upgrade ?? or just coincidence..

I've not received any other reports on this. Is it the Afterburner Remote Server itself that isn't starting/running correctly?
legendary
Activity: 3346
Merit: 1094
Hey, just to let you know.

Awesome Miner has now started coming up as Malware on Avast Anti-Virus.

someone may have an issue with AM and added it to the naughty list.

And i don't mean the mining apps it runs, but AM itself.

you might need to contact them and find out why and have it removed. for now, i have just added it to the exclusion list.

*[edit] posted before scrolling back. i now see you have this under control.*

for Avast they do because of phones/tablets being infected with malicious xmr miners the hog up their resources... so they will block everything mining related
Although I already reported this to Avast, I still always recommend users of Awesome Miner that run into these anti-virus software warnings to report it as a false positive to the anti-virus software vendor to make them more aware of the issue:
https://www.avast.com/false-positive-file-form.php
full member
Activity: 1148
Merit: 132
So i switched a miner from profit switch but when I try to mine it says could not not reslove host 
any ideas can you try this IP

stratum+tcp://67.40.164.169::12345



newbie
Activity: 49
Merit: 0

Anyonne notices Afterburner remote server stopped working after 5.7.1 upgrade ?? or just coincidence..
newbie
Activity: 19
Merit: 0


Awesome Miner has now started coming up as Malware on Avast Anti-Virus.



between Avast and Malwarebytes...  both find and have to be put on as an exclusion

for Avast they do because of phones/tablets being infected with malicious xmr miners the hog up their resources... so they will block everything mining related

newbie
Activity: 23
Merit: 0
Hey, just to let you know.

Awesome Miner has now started coming up as Malware on Avast Anti-Virus.

someone may have an issue with AM and added it to the naughty list.

And i don't mean the mining apps it runs, but AM itself.

you might need to contact them and find out why and have it removed. for now, i have just added it to the exclusion list.



*[edit] posted before scrolling back. i now see you have this under control.*
Jump to: