How to check Active Directory Health !!!

First of all, monitoring the Windows Event Viewer is a must. Take the time to check through all of the Event Log queues including the Application, Security and System log. On Domain Controllers the DFS Replication, Directory Service and DNS Server logs should also be reviewed. Leverage the sort and error fields to filter out […]

How to use cgi script to check the Server uptime .

The following script you can use to check the Server uptime? root@admin[/usr/local/apache/cgi-bin]# nano loads#!/bin/bash echo Content-type: text/plainecho echo $(hostname)echo “=>”echo $(uptime)