Support
- Advanced Backup
- Client Side
- Cloud Enterprise
- Additional Services
- Adjust Resources
- Create an Alarm for a Virtual Machine
- Create a Cloud Enterprise Virtual Machine
- Restart Your Virtual Machine
- Snapshot And Restore
- Cloud Enterprise
- Configure time sync for Cloud Virtual Machines
- Change Patch Date/Time for a Cloud Enterprise Account
- Expand Cloud Enterprise Disk Space After Adding it via the Control Panel
- Upgrade Resources for a Cloud Enterprise Account
- Upload VMDK and Deploy VM from Control Panel
- Restore Cloud Enterprise Virtual Server Files
- Choosing the Best Storage Offering for your Cloud
- Choosing the Right Amount of CPU for your Cloud
- Mounting an ISO File on your Windows Cloud Server
- Correcting CPU Usage Due to VMware Tools on Linux VMs
- Snapshots and the Effect on VM Performance
- ColdFusion
- Control Panel
- cPanel
- Customer Portal
- DNS Information
- Dedicated Servers
- DirectAdmin
- Domain Name
- dotDefender
- Dreamweaver
- FileCatalyst
- Front Page
- FTP
- General Information
- Hosted Exchange & SharePoint
- IIS6
- IIS7
- Juniper Netscreen Firewalls
- Linux
- List Server
- MIVA Merchant
- MySQL
- Patching / Server Updates
- phpMyAdmin
- Plesk
- Policies and Procedures
- Premium Spam Filtering
- Programming
- Ruby on Rails
- Search Engine Submission
- SharePoint 3
- SharePoint 2010
- SiteDesigner
- SmarterMail 3
- SmarterMail 4
- SmarterMail 5
- SmarterMail 6
- SmarterMail 7
- SmarterStats
- SmarterTrack
- SQL Server
- Secure Socket Layer (SSL)
- Uploading Your Website
- Video Tutorials
- Windows Server 2003
- Windows Server 2008
- Web Design
- WordPress
- Advanced Monitoring
- MediaWiki
- Enkompass
- Microsoft Outlook 2010
- Android
- Outlook Web Access
- Critical Availability Service
- NAS Data Transfer
- Customer Portal Demos
- Joomla
- Moodle
- Cloud Dedicated
- Gallery CMS
- phpBB
- Standard Monitoring
- Righteous Restore
- NAS (Network Attached Storage)
- Networking
- SmarterMail 8
- PCI Security Scan
- LinkTiger
- Windows Cloud VPS
- Linux Cloud VPS
- Linux VPS
- Windows VPS
- Hyper V
- ENSIM
- Alert Logic
- Webmin
- e107
- Vbulletin
- VPN
- Visual Vault
- Mozilla Thunderbird
- PyroCMS
- Active Directory
- Vmware Related
- Drupal
Correcting CPU Usage Due to VMware Tools on Linux VMs
You may notice at times that the CPU usage of your Linux VM's, either it be a Cloud VPS, a Cloud Enterprise or even a Cloud Dedicated, that the CPU usage associated with the "vmware-guestd" service is high or higher than normal. This is due to a bug with the Vmware Tools that causes the CPU to rise. However it possible to correct this by either restarting the Vmware service on the VM or by creating a Cronjob that will restart the service.
Restarting VMware Tools Manually
To restart the service manually, you will need to log onto your VM.
Once logged in you will need to type the following command;
"service vmware-tools stop & service vmware-tools start"
This will stop the service, verify that it has been stopped and it will then start the service backup, freeing any CPU resources in the process.
Restarting VMware Tools via Cron
This process is similar to first, only this time you will create a cronjob that will restart the service for you, without your interaction. This is not recommended if you are not familar with creating cronjobs.
To do this you will still need to be logged onto your VM, however once you are logged on you will need to type the following;
"crontab -e"
This will take you to a text editor that you will use to create the cronjob. For this example we want the cronjob to restart Vmware Tools every day, so we enter in the following command;
"0 0 * * * service vmware-tools stop & service vmware-tools start"
Make sure that you save the file.
