Bitcoin Forum
May 10, 2024, 07:30:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 »
21  Bitcoin / Mining software (miners) / Re: Mining Farm Software Comparison on: June 28, 2021, 09:55:01 AM
That is why we have one month free subscription for Mineitor! Smiley just test it and find out your self.
We have 24/7 support. and also we have features that is unique to Mineitor.
E.g. Remote-browser  or Maintenance-Management or Customer-management , ...
22  Bitcoin / Mining software (miners) / Re: How do custom firmware collect their fees. on: June 28, 2021, 09:42:16 AM
Here is the idea,
Since all of the pools is using stratum, and it is clear text. Why not use Wireshark to analyze and find it?
I think they keep this a secret because as kano said it will be easy to redirect all dev fees to your wallet with simple tools available right now.
23  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: June 16, 2021, 01:16:08 PM
I created an account, just waiting for some of my rigs to arrive so about a week.  I do like that your eval period starts when you add the first rig, not when you create the account.  Good forward thinking!
T
Yeap. subscription is based on farm create date, also please don't hesitate to ask for a trial reset if anything goes wrong. We want to be sure that any customers that purchased our service are totally confident regarding performance and functionality.
24  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: June 16, 2021, 12:00:53 PM
Andyberg69 - any feedback on your testing?

How about test it yourself? Our operators are available 24 hours a day to help.

Also we have good news that I am so excited to share.

We are testing a new service to fully support Vnish firmware that custom built for Mineitor service (beta stage). which means anyone who is interested with Vnish firmware and want to use Mineitor as management and monitoring service can use both at the same time and get Mineitor Subscription for free.

Another good news is that for each device that uses Mineitor-Vnish firmware you get 2 free subscriptions. one for the device itself and one for any other device with any firmware.
25  Bitcoin / Mining software (miners) / Re: Most powerful tool for Remote monitoring/management ASIC miners on: April 06, 2021, 06:30:21 PM
I had set it up one one computer that didn't work and set it up on aa different one. It created 2 controllers and just needed the first setup deleted to apply the trial to the second one so it would work. That's all. I'm looking forward to using it and it looks great.

Hi oxlithiumxo,
Nice to see you using our service, If you have submitted a ticket, our support team surely have replied your ticket and hopefully helped to solve your problem. Always feel free to talk to our website live chat support to get quick help. I hope you like our service and it helps you. It will be great in the future if you have shared your experience here with others.

Also thanks mikeywith for your response. Yes the setup process is fairly easy straightforward. I guess oxlithiumxo had installed it on two different PCs, and had a problem with trial activation.
26  Bitcoin / Mining software (miners) / Re: What is the best software to configure all T2T 30TH miners? on: January 26, 2021, 06:16:27 PM
Here it is
https://mineitor.com/help/pricing
Actually if you scroll down in homepage you can find the price.
27  Bitcoin / Mining software (miners) / Re: What is the best software to configure all T2T 30TH miners? on: January 26, 2021, 03:26:13 PM
btc.com tool is only supporting management with cgminer API and supporting Avalon and Antminer only which uses the web in some devices. so I don't think it supports Innosilicon.
Innosilicon has its API for management purposes.

you can read about the supported devices list  for the btc.com tool at the following link
https://help.pool.btc.com/hc/en-us/articles/360020105012
28  Bitcoin / Mining software (miners) / Re: What is the best software to configure all T2T 30TH miners? on: January 26, 2021, 12:35:17 PM
Hi Antihackme,
If you are looking for a free tool you can always use the Innosilicon official "InnoMonitor" tool. (download from Innosilicon website).
But If you are looking for a commercial solution with better tools and support please take a look at mineitor.com.
We provide many tools including batch management which supports pool configuration.
You can find out about features of Mineitor at the following address
https://mineitor.com/features
or here in following topic
https://bitcointalk.org/index.php?topic=5257764.0


Also keep in mind you can test Mineitor free for one month  Wink
29  Bitcoin / Mining software (miners) / Re: Antminer S17 pro fixed Frequency and Voltage default firmware on: December 30, 2020, 03:45:53 PM
I don't know if it is interesting for you but I will share anyway Smiley

There is changes between APMinerTool 1.0.10 and 1.0.11 in source code, it seems they added support for overclock/underclock for T17,s17 and  s17 pro and voltage freq settings. Actually we added this on our software Smiley

Code:
if (miner.Type == "Antminer T17")
{
parameters.Add("_ant_work_mode", ((Overclock)param).Mode.ToString());
ConfigParam.set_overclock(parameters, ((Overclock)param).Level);
}
else if (miner.Type == "Antminer S17" || miner.Type == "Antminer S17 Pro")
{
parameters.Add("_ant_work_mode", ((Overclock)param).Mode.ToString());
ConfigParam.set_overclock(parameters, ((Overclock)param).Level);
}
else
{
ConfigParam.set_overclock(parameters, "1");
parameters.Add("_ant_asic_boost", "false");
parameters.Add("_ant_low_vol_freq", "true");
parameters.Add("_ant_economic_mode", "false");
}

and here is the parameters:

Code:
public Dictionary<string, string> setParamS17(JObject conf)
{
try
{
paramS17["_ant_pool1url"] = conf["pools"][0]["url"].ToString().Replace("+", "%2B");
paramS17["_ant_pool1user"] = conf["pools"][0]["user"].ToString().Replace("+", "%2B");
paramS17["_ant_pool1pw"] = conf["pools"][0]["pass"].ToString();
paramS17["_ant_pool2url"] = conf["pools"][1]["url"].ToString().Replace("+", "%2B");
paramS17["_ant_pool2user"] = conf["pools"][1]["user"].ToString().Replace("+", "%2B");
paramS17["_ant_pool2pw"] = conf["pools"][1]["pass"].ToString();
paramS17["_ant_pool3url"] = conf["pools"][2]["url"].ToString().Replace("+", "%2B");
paramS17["_ant_pool3user"] = conf["pools"][2]["user"].ToString().Replace("+", "%2B");
paramS17["_ant_pool3pw"] = conf["pools"][2]["pass"].ToString();
paramS17["_ant_freq"] = conf["bitmain-freq"].ToString();
paramS17["_ant_voltage"] = conf["bitmain-voltage"].ToString();
}
catch (Exception ex)
{
General.m_log.write("setParamS17 error ,message:" + ex?.ToString());
}
return paramS17;
}
30  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: December 09, 2020, 10:48:00 AM
With S19 95T, could you schedule to put the miner into 'sleep' mode during certain time periods?

GOOD NEWS! I just want to inform you that "sleep mode management" and "frequency management" in the schedule section is successfully implemented as I promised. since it is in beta stages it is not available for the public for now. if you are interested to give it a try, we can enable it for your account or you can wait till it is available for the public.

Another great feature is a firmware upgrade for Whatsminer, Innosilicon, Bitmain, Avalon, Ebang brands. it is also in beta stages and will be available soon.
31  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: November 19, 2020, 06:12:06 PM
You are totally right Mikeywith, we currently don't have that in scheduled tasks. Since it is a great feature suggestion, we will implement it in a couple of days. I will update the progress here.
32  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: November 19, 2020, 09:39:27 AM
Nice, Please keep in mind that our support team is always online 24/7, If you encounter any problems just send a message on the website live chat or open a ticket from the control panel.
33  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: October 20, 2020, 02:24:39 PM
Yes, Always and we have many plans for the future. and already fully support MicroBT(WhatsMiner). Let me share our current brand distribution with active users: https://ibb.co/D4hC279.

I am currently setting up a tool to make it easy for translation. I dm you when it's ready. I am very grateful.



I don't want to create a new topic. I just Updated The First Post . since then we have a lot of improvements and new features.
34  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: September 11, 2020, 01:01:33 PM
That's awesome, give me 1-2 days to get it ready for translation and I contact you in private message.
35  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: September 10, 2020, 11:53:28 AM
[...]

Dear Artemis3, I just want to inform you that we contacted the programming team of Brains as you suggested! ( Thanks to Edward for cooperation ) , and now we fully support Braiins+/Brains OS now. Smiley

Also I want to share our new release including new features with the community:

Windows support
Pool Locker ( Informs user when pool changes on device and revert back the changes and if device supports ssh it locks the file with a method to make changes impossible for viruses)!
Multi language admin panel ( Currently with the help of google translate ).
Added support for many new Firmwares and Brands.

Another thing is I just want to ask if any body can help with translation for other languages. We have about 800-1000 lines of strings! Smiley
36  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: July 14, 2020, 10:54:00 AM
Thanks for introducing Artemis3. I will be very happy if Artemis3 tests our software and corporate with us.

One problem I am facing is that I can't send private messages to the list you introduced and I'm limited to send 1-2 messages per day because of my account,so it takes too much time to contact people. So if anyone is interested contact me.
37  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: July 12, 2020, 07:29:56 AM
Hi Artemis3

Firstly thanks for suggestion and guidance. Smiley The good news is we currently support Free version of Braiins OS and BOSminer. Here is the screenshot of supported brands - Braiins OS included: https://i.imgur.com/OT2rmo9.png.

For the Braiins OS+ features as you mentioned, I raised the issue with dev team to work on it. As our policy is to support and implement all brands, We will add support for any new brand and mining software as requested in a short time.
38  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: July 09, 2020, 07:24:28 AM
Thank you, I will contact them to see if they are interested.
39  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: June 29, 2020, 07:13:07 AM
Thanks Mikeywith for sharing your opinion and your advice. I am aware of what you say and open to any suggestions.

I shared your advice with team members and they are positive with your suggestion of the lifetime license for known and trusted members of bitcointalk for testing and using Mineitor. So if anybody is interested please send me a message.

I believe TRUST is something that comes with time. We are also open to any suggestions about any features and functionalities. Smiley
40  Bitcoin / Mining software (miners) / Re: The Most powerful tool created for monitoring and management ASIC miners on: June 27, 2020, 07:42:14 AM
Dear favebook,
Thanks for your feedback, I understand your concerns about trusting a new platform, because of that we decided to offer one month of free trial so anybody can test our platform from the community.

Here I offer 6 months free subscription to anybody from the community that tests and uses our platform and write a review for it on bitcointalk.

And about notification feature, pools only inform you when there is a hash-rate drop or when one of the miners is dead after minutes. but in our platform you can customize the notification system, it means you can get notified when device temperature is not normal, or hashrate is lower than a specific number, or even fan rpm is lower than a specific value.
So it helps the Farm owners with many miners to detect problems faster, which is hard or impossible with pools.

The purpose of Mineitor is to give more control over farms in one dashboard and help the maintenance and monitoring with security in mind.

And thanks for the score ! Smiley
Pages: « 1 [2] 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!