Question
Where can I install or get a new license for Resource Monitor Plugin for cPanel & WHM?
Answer
Resource Monitor was a cPanel & WHM plugin previously developed by Buycpanel. The software was used to view system-wide and per-user CPU, Memory, Disk, and other resource usage.
The plugin was deprecated in May 2020 and is no longer available for purchase or installation. For robust and accurate resource monitoring as well as resource limiting features, we suggest using CloudLinux's LVE Manager or 360 Monitoring.
We have more information about CloudLinux here:
What features are available with CloudLinux?
How To Upgrade to CloudLinux
How to install CloudLinux LVE Manager
We have more information about 360 Monitoring here:
Server Monitoring (Powered by 360 Monitoring)
How to install the 360 Monitoring Client on a cPanel server
If you would like to remove this plugin, run the uninstall script within the rsmonitorfolder:
# sh uninstall.sh
If this script does not exist on your server, create it with the following content:
CONFIG_TEXT: #!/bin/bash
d=`date "+%b%d"`
echo "Please confirm us to Uninstall WHM Resource Monitor Installation Plugin press Y / N"
read -p " y / n ?" ans
if [ "$ans" == "y" ]
then
echo "Uninstalling......"
if [ -f /usr/local/cpanel/3rdparty/rsmonitor.cpanelplugin ]; then
/usr/local/cpanel/bin/unregister_cpanelplugin /usr/local/cpanel/3rdparty/rsmonitor.cpanelplugin
fi
for rem in `ls /usr/local/cpanel/base/frontend/`
do
echo $rem
rm -rf /usr/local/cpanel/base/frontend/$rem/rsmonitor > /dev/null 2>&1
done
rm -rf /usr/local/cpanel/3rdparty/rsmonitor.cpanelplugin > /dev/null 2>&1
rm -rf /usr/local/cpanel/whostmgr/cgi/rsmonitor > /dev/null 2>&1
rm -rf /usr/local/cpanel/whostmgr/cgi/addon_resource_monitor.cgi > /dev/null 2>&1
rm -rf ../rsmonitor > /dev/null 2>&1
rm -rf /usr/local/cpanel/whostmgr/docroot/themes/x/icons/resourceMonitor.gif > /dev/null 2>&1
cp -Rf /var/spool/cron/root /var/spool/cron/root.`date "+%b%d"`
cd
sed -i '/rsmonitor/d' /var/spool/cron/root > /dev/null 2>&1
service crond restart
elif [ "$ans" == "n" ]
then
echo "Uninstall Request has been aborted"
exit 0
else
echo "Type y/n"
fi
Comments
0 comments
Article is closed for comments.