Follow this basic first steps to troubleshoot a slow Windows computer.

  • Start by shutting down your computer. Time with a stopwatch the time that is needed from pressing the power button until the option to login. Also quickly check the time that is needed after login until you can start working. Define start working, for example when all icons appear in the menubar. When checking the time again use this as your reference.
  • Identify what is slow, is the internet connection slow? Are the web pages appearing slow? Check and troubleshoot your internet connection. Clear Web browser cache.
  • Check if your hard disk is full. A full hard disk slows down your computer. Cleanup your disk.
  • Cleanup unwanted applications. Also cleanup unwanted web browsers plugins.
  • Decide if you need Oracle Java or Adobe Flash plugin.
  • Close system tray programs.
  • Check for Windows updates. Run those updates.
  • Check for updated hardware drivers.
  • Check and decide to update all applications to the newest versions. Also update Web browser plugins.
  • Start task manager and check all processes with high utilisation and not dropping. Also check memory usage and disk utilisation. When you identify the software causing the problem. Stop it and check normal behaviour again. Search for an update for this software.
  • Check task manager for startup items. Delete not wanted items from startup.
  • Check your antimalware software for correct behaviour. Check for updates available and check correct settings. It is possible you have to exclude files from on access scanning or choose a better antimalware program. Run a full scan and check for malware.
  • Try running less applications at the same time and check normal behaviour.
  • Clean up your desktop. To many items will slow down.
  • Defragment your disk. (don't defrag SSD)
  • Check the hardware if your system can have more memory and the possibility for a SSD.

Monitor your Apache webserver running on your Synology DSM

DSM 5:

Login as root via a terminal session on your Synology NAS.

vi /etc/httpd/conf/httpd.conf-user

add the following lines and fill allow from:

#Apache server status
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from <fill in the ip address of your server running your Anturis agent>
</Location>

#Apache server status
#To obtain a full report with current status information
ExtendedStatus On

Restart httpd-user daemon:

synoservicectl –restart httpd-user

Within Anturis fill in the monitoring settings:

Apache server connection:

Apache statistics web-page URL (requires mod_status): <servername/server-status>

You can now monitor your Apache webserver running on your Synology NAS.

 

DSM 6:

Login as admin via a terminal session on your Synology NAS.

sudo -i

create file for example status.conf under /usr/local/etc/httpd/sites-enabled/

#Apache server status
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from <fill in the ip address of your server running your Anturis agent>
</Location>

#Apache server status
#To obtain a full report with current status information
ExtendedStatus On

Reload Apache server:

reload pkg-apache22