AccuWebHosting.com Joins Hands With SmarterTools, Inc.
AccuWebHosting.com, a leading Windows VPS Hosting provider, is proud to announce its new partnership with software developer SmarterTools Inc.
The partnership will give AccuWebHosting.com’s Windows VPS and dedicated server customers a new and more improved range of services by providing the SmarterBundle at no additional cost.
“This partnership allows our company to offer SmarterTools’ world-class mail server solutions, powerful and feature-rich customer service helpdesk system, and comprehensive web log analytics software at no additional cost to our customers,” said Rahul C. Vaghasia, managing director for AccuWebHosting.com.
The SmarterBundle is valued at $800 and includes:
- SmarterMail 7.x (250 mailboxes) - SmarterMail 7.x delivers cutting edge features and performance. Along with superior stability, it also has the ability to protect mailboxes from 97% of spam out-of-the-box.
- SmarterStates 5.x (50 sites) – SmarterStats 5.x is a Web log analytics and SEO software solution that enables users to obtain detailed analysis of web traffic, visitors’ behavior, SEO marketing efforts, etc. This robust analytical tool is both user-friendly and efficient
- SmarterTrack 5.x (2 agents) – SmarterTrack 5.x is a powerful customer help desk system that is integrated with multiple service solutions in a single application.
“The SmarterTools software bundle not only provides a significant value and resource to our clients, but it also equips them, with what we clearly believe, is the very best technology and services available for this particular need,” Vaghasia added.
About AccuWebHosting.com
AccuWebHosting.com has been providing world class web hosting services to the global community for nearly the past decade. Priding ourselves in providing innovative technology coupled with top notch customer service, this credo has allowed not only us, but our customers to experience success and substantial growth.
About SmarterTools Inc.
Founded in 2003, SmarterTools Inc. is an information technology management software company based in Phoenix, Arizona. SmarterTools develops a Windows mail server, customer service software, and Web log analytics and SEO software that help companies communicate, measure, and support their worldwide business operations. Additional information about SmarterTools Inc. and the SmarterTools product line is available at www.smartertools.com.
Munin MySQL monitoring graph is not updating or blank
Munin is a monitoring tool used to monitor the performance of computers/servers, networks, SANs, applications, databases, weather measurements and other parameters. Munin remembers and records information it captured and presents them in graphs through a web interface. On cPanel/WHM server, you can easily install it from plugin section.
After successful installation, Munin will start colleting required data and will show you the graphs, including MySQL nodes such as MySQL throughputs, MySQL queries, MySQL Slow Queries, and MySQL threads. However, if you restart the server, Munin will fail to monitor MySQL nodes and it will stop showing graphs for MySQL.
The error is due to a bug in a Perl library Munin uses which causes $PATH variable to be lost, and then causes the plugin cannot find the mysqladmin program which it needs to retrieve the numbers to populate in the graphs. Uninstall and reinstall Munin Service Monitor may make it works again, however, a more permanent solution is to hardcode the path of the program, which will fix the problem. Following is the guideline to specify the path to mysqladmin to Munin.
Fix for Munin installed by cPanel/WHM
1. Find the path where mysqladmin is installed using one of the following commands:
which mysqladmin
type mysqladmin
locate mysqladmin
The above command will return a path to mysqladmin (i.e. /usr/bin/mysqladmin)
2. Edit Munin configuration file /etc/munin/plugin-conf.d/cpanel.conf and modify the [mysql*] as below:
[mysql*]
user root
group wheel
env.mysqladmin /usr/bin/mysqladmin
env.mysqlopts –defaults-extra-file=/root/.my.cnf
Ensure the env.mysqladmin value is path returned by step 1. Also ensure that /root/.my.cnf contains correct MySQL root password.
3. Restart Munin service:
/etc/init.d/munin-node restart
4. Wait a while for MySQL statistics to be gathered, and check the graphs again.
Fix for the host or server without cPanel Control Panel:
Simply add the “env.mysqladmin /usr/bin/mysqladmin” (ensure that the path is correct according to your system) to the /etc/munin/plugin-conf.d/munin-node file will do the trick.





