<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; server monitoring</title>
	<atom:link href="http://www.ghacks.net/tag/server-monitoring/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 11:26:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install Nagios on Ubuntu server</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/</link>
		<comments>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 23:06:10 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[server monitoring]]></category>
		<category><![CDATA[system monitoring]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu server]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13369</guid>
		<description><![CDATA[Are you one of those special geeks that think there is never TMI (too much information)? If that describes you then Nagios is the monitor for you. Once installed, Nagios will keep you busy with more information about your system than you ever thought possible. But it&#8217;s not just a matter of running apt-get install [...]]]></description>
			<content:encoded><![CDATA[<p>Are you one of those special geeks that think there is never TMI (too much information)? If that describes you then <a title="Nagios" href="http://www.nagios.org" target="_blank">Nagios</a> is the monitor for you. Once installed, Nagios will keep you busy with more information about your system than you ever thought possible. But it&#8217;s not just a matter of running apt-get install nagios. No, there&#8217;s more to the installation than that.</p>
<p>In this article you will see how to install Nagios on a working Ubuntu Server installation. The release I used was 9.04, but you should be able to use 8.04 just as easily.</p>
<p><span id="more-13369"></span><strong>Features</strong></p>
<p>You want features? Nagios is full of them. Nagios can monitor your entire network, you can handle problem remediation, you can plan network downtime, you can watch hosts, systems, services, applications..there&#8217;s very little you can&#8217;t do with Nagios.</p>
<p>But let&#8217;s think about this installation. The best (and really only good) way to install Nagios is from source. This means you are going to have to do some compliation. Don&#8217;t worry, it&#8217;s not hard&#8230;when you have a step-by-step guide that is.</p>
<p><strong>Before you start</strong></p>
<p>If you are using, as I did, a Ubuntu server installation, you will need to install a few tools first. So from the command line (on your Ubuntu server) issue the following commands:</p>
<p><em>sudo apt-get install php5-gd</em></p>
<p><em>sudo apt-get install gcc</em></p>
<p><em>sudo apt-get install make</em></p>
<p>The above commands will install the tools you need in order to get Nagios installed. If you don&#8217;t install the above, you won&#8217;t be able to complete the installation.</p>
<p><strong>Installing Nagios &#8211; preflight</strong></p>
<p>Before you actually run the installation you will need to take care of some user/group accounting first.</p>
<p>Create the user <strong>nagios:</strong></p>
<p><strong></strong><em>sudo useradd -m nagios</em></p>
<p><em><span style="font-style: normal;">Give the nagios user a password:</span></em></p>
<p><em>sudo passwd nagios<span style="font-style: normal;"> </span></em></p>
<p>NOTE: You will have to enter the new password twice for the above command.</p>
<p>Create the group <strong>nagios:<br />
<span style="font-weight: normal;"><em>sudo groupadd nagios</em></span> </strong></p>
<p>Add the user <strong>nagios </strong>to the group <strong>nagios:</strong></p>
<p><em>sudo usermod -G nagios nagios</em></p>
<p>Create the group <strong>nagcmd:</strong></p>
<p>sudo groupadd nagcmd</p>
<p>Add the user <strong>nagios </strong>to the group <strong>nagcmd:</strong></p>
<p>sudo usermod -a -G nagcmd nagios</p>
<p>Add the Apache user to the group <strong>nagcmd:</strong></p>
<p><em>sudo usermod -a -G nagcmd www-data</em></p>
<p><em><strong>Installing Nagios and Nagios Plugins</strong></em></p>
<p><em>The first thing to do is to download the files you need. Issue the commands:</em></p>
<p><code>wget http://osdn.dl.sourceforge.net/sourceforge/nagios/nagios-3.0.6.tar.gz</code></p>
<p>and</p>
<p><code>wget http://osdn.dl.sourceforge.net/sourceforge/nagiosplug/nagios-<br />
plugins-1.4.11.tar.gz</code></p>
<p>to download the files you need.</p>
<p>Untar the Nagios file with:</p>
<p><em>tar xvzf nagios-3.0.6.tar.gz</em></p>
<p>Change into the newly created Nagios directory with the command:</p>
<p><em>cd nagios-3.0.6</em></p>
<p>Now run the configure script using the nagcmd defined as the command group with the command:</p>
<p><em>sudo ./configure &#8211;with-command-group=nagcmd</em></p>
<p>Time to compile:</p>
<p><em>sudo make all</em></p>
<p>Time to install everything:</p>
<p><em>make install</em></p>
<p><em>make install-init</em></p>
<p><em>make install-config</em></p>
<p><em>make install-commandmode</em></p>
<p>Almost ready to finalize the installation of Nagios (before moving on to installing the plugins.) There is one simple configuration to take care of (for the basic installation). Open up the <strong>/usr/local/nagios/etc/objects/contacts.cfg </strong>file and add your email address as the contact email address. That&#8217;s the only configuration to change for now.</p>
<p><strong>Configuring for the Web interface</strong></p>
<p>There are just a few commands to run to configure the Web interface:</p>
<p><em>make install-webconf</em></p>
<p><em>htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin</em></p>
<p><em>/etc/init.d/apache2 reload</em></p>
<p>The final command above simply restarts Apache.</p>
<p><strong>Install the plugins</strong></p>
<p>Before you log into your Nagios installation you have to install your plugins first. Change to the directory you downloaded the Nagios files to and untar the plugins file:</p>
<p><em>tar xvzf nagios-plugins-1.4.11.tar.gz</em></p>
<p>Now change into the newly created directory:</p>
<p><em>cd nagios-plugins-1.4.11</em></p>
<p>Compile the plugins with the command:</p>
<p><em>sudo ./configure &#8211;with-nagios-user=nagios &#8211;with-nagios-group=nagios</em></p>
<p>Now install the plugins with the following commands:</p>
<p>make</p>
<p>make install</p>
<p><em><strong>Fire it up!</strong></em></p>
<p><em>Of course you want to make sure Nagios starts any time the system is restarted. Do this with the command:</em></p>
<p><em>sudo ln -s /etc/init.d/nagios /etc/rcS.d/S99nagios</em></p>
<p>And finally, before you start up Nagios, make sure there are no errors with the command:</p>
<p><em>sudo /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg</em></p>
<p>If you see no errors reported, it&#8217;s time to start it up. Issue the command:</p>
<p><em>sudo /etc/init.d/nagios start</em></p>
<p>Nagios is ready to go. Point your browser to:</p>
<p><em>http://ADDRESS_OF_NAGIOS_SERVER/nagios</em></p>
<p>You should be ready to enjoy all that is Nagios. Congratulations.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/nagios/" title="nagios" rel="tag">nagios</a>, <a href="http://www.ghacks.net/tag/server-monitoring/" title="server monitoring" rel="tag">server monitoring</a>, <a href="http://www.ghacks.net/tag/system-monitoring/" title="system monitoring" rel="tag">system monitoring</a>, <a href="http://www.ghacks.net/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://www.ghacks.net/tag/ubuntu-server/" title="ubuntu server" rel="tag">ubuntu server</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/04/06/keep-logged-in-users-informed-with-motd/" title="Keep logged in users informed with motd (April 6, 2009)">Keep logged in users informed with motd</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/10/06/what-makes-ubuntu-so-user-friendly/" title="What makes Ubuntu so user friendly? (October 6, 2009)">What makes Ubuntu so user friendly?</a> (47)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Network Monitoring Software Open Monitor</title>
		<link>http://www.ghacks.net/2009/05/28/network-monitoring-software/</link>
		<comments>http://www.ghacks.net/2009/05/28/network-monitoring-software/#comments</comments>
		<pubDate>Thu, 28 May 2009 14:14:01 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[monitoring software]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network monitor]]></category>
		<category><![CDATA[Network Monitoring Software]]></category>
		<category><![CDATA[network software]]></category>
		<category><![CDATA[open monitor]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[server monitor]]></category>
		<category><![CDATA[server monitoring]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13128</guid>
		<description><![CDATA[Open Monitor is an Open Source network monitoring software for the Windows operating system. It comes with the option to monitor multiple local and remote servers and notify the system administrator if services or programs are not accessible.
The main interface of the monitoring software is divided into a quick server check option at the bottom [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />Open Monitor is an Open Source network monitoring software for the Windows operating system. It comes with the option to monitor multiple local and remote servers and notify the system administrator if services or programs are not accessible.</p>
<p>The main interface of the monitoring software is divided into a quick server check option at the bottom which can be used to check if services such as HTTP, FTP or POP are running on a IP or domain. The networking monitoring software will automatically display the results in the same interface. Probably more interesting than the quick check function is the option to add servers permanently to the monitoring tool.</p>
<p><span id="more-13128"></span>The user needs to enter a server name which is used for identification and a server address which is usually an IP address. A list of services are preselected and will be checked unless unchecked by the user. Alerts can be enabled or disabled in the same interface as well. These do have to be configured separately and can inform the user by email, screen message, executing a program or playing a sound.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/network_monitoring_software-499x394.jpg" alt="network monitoring software" title="network monitoring software" width="499" height="394" class="alignnone size-medium wp-image-13126" /></p>
<p>There is also the possibility to add http url checks next to the default services that can be monitored by Open Monitor. This allows a user to specify an url, port, alerts and words that the page should include or exclude. This can be used for example to verify that a page is up by checking for a word on that page that is always appearing. Can also be used to run scripts that output a simple message in the end, e.g. a database check that is displaying ok if the database is up and running.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/monitoring_software1-500x361.jpg" alt="monitoring software" title="monitoring software" width="500" height="361" class="alignnone size-medium wp-image-13127" /></p>
<p><a href="http://openmonitor.sourceforge.net/">Open Monitor</a> is a straightforward, easy to use, network monitoring software that can monitor popular services. Alternative programs are the <a href="http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/">server monitoring software IT Service View</a>, <a href="http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/">Newt</a>,  the <a href="http://www.ghacks.net/2009/04/17/website-monitoring-software/">website monitoring software SiteMonitor</a> or the <a href="http://www.ghacks.net/2008/09/19/microsoft-network-monitor/">Microsoft Network Monitor</a>.</p>

	Tags: <a href="http://www.ghacks.net/tag/monitoring-software/" title="monitoring software" rel="tag">monitoring software</a>, <a href="http://www.ghacks.net/tag/network/" title="network" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-monitor/" title="network monitor" rel="tag">network monitor</a>, <a href="http://www.ghacks.net/tag/network-monitoring-software/" title="Network Monitoring Software" rel="tag">Network Monitoring Software</a>, <a href="http://www.ghacks.net/tag/network-software/" title="network software" rel="tag">network software</a>, <a href="http://www.ghacks.net/tag/open-monitor/" title="open monitor" rel="tag">open monitor</a>, <a href="http://www.ghacks.net/tag/open-source/" title="Open Source" rel="tag">Open Source</a>, <a href="http://www.ghacks.net/tag/server-monitor/" title="server monitor" rel="tag">server monitor</a>, <a href="http://www.ghacks.net/tag/server-monitoring/" title="server monitoring" rel="tag">server monitoring</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/06/remote-server-monitoring-software-dreamsys-server-monitor/" title="Remote Server Monitoring Software DreamSys Server Monitor (June 6, 2009)">Remote Server Monitoring Software DreamSys Server Monitor</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/27/network-security-analysis-with-network-miner/" title="Network Security Analysis With Network Miner (January 27, 2009)">Network Security Analysis With Network Miner</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/07/02/network-monitor-experts-extension-for-microsoft-network-monitor/" title="Network Monitor Experts Extension For Microsoft Network Monitor (July 2, 2009)">Network Monitor Experts Extension For Microsoft Network Monitor</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/08/29/network-profile-switcher/" title="Network Profile Switcher (August 29, 2009)">Network Profile Switcher</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/" title="Network Monitoring Software Newt (March 1, 2009)">Network Monitoring Software Newt</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/28/network-monitoring-software/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Server Monitoring Software IT Service View</title>
		<link>http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/</link>
		<comments>http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/#comments</comments>
		<pubDate>Thu, 21 May 2009 19:50:06 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[it service view]]></category>
		<category><![CDATA[monitor server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server monitoring]]></category>
		<category><![CDATA[Server Monitoring Software]]></category>
		<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/</guid>
		<description><![CDATA[Professional webmasters and system administrators have to make sure that their websites, servers and networks are running all the time. One way to ensure that is by running server monitoring software like IT Service View. Similar programs and services that we have covered in the past include the website monitoring software Sitemonitor, the website monitor [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />Professional webmasters and system administrators have to make sure that their websites, servers and networks are running all the time. One way to ensure that is by running server monitoring software like IT Service View. Similar programs and services that we have covered in the past include the <a href="http://www.ghacks.net/2009/04/17/website-monitoring-software/">website monitoring software Sitemonitor</a>, the <a href="http://www.ghacks.net/2009/03/24/website-monitor-and-downloader/">website monitor and downloader Wysigot</a>, the <a href="http://www.ghacks.net/2008/08/13/server-monitoring-software/">network monitoring software Nettools</a> or the online service <a href="http://www.ghacks.net/2008/07/19/monitor-your-servers-with-livewatch/">Livewatch</a> that is being used to monitor the server Ghacks is running on.</p>
<p>IT Service View is probably the server monitoring software with the broadest range of monitoring possibilities. They range from monitoring websites to Linux and Windows Server 2003 / 2008 servers to Microsoft Exchange Servers to Oracle servers and log files. The server monitoring is compatible with Microsoft Windows XP, Vista and Server 2003. It will display a wizard after installation that is walking the user through the configuration of the program.</p>
<p><span id="more-12996"></span>The less complex monitoring services take only a few seconds to setup. Setting up a website monitoring service in the software that monitored the Ghacks database did not take longer than a minute. It has to be noted that the script that checks the database is already installed on the Ghacks server, the implementation itself was straightforward.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/server_monitoring_software-499x349.jpg" alt="server monitoring software" title="server monitoring software" width="499" height="349" class="alignnone size-medium wp-image-12994" /></p>
<p>Several parameters can be configured in the setup phase. It is for example possible to define a maximum response time, time out, expected http codes, error texts and text that the website has to contain. </p>
<p>The even responses are highly configurable as well. They are divided into the possible scenarios &#8220;no response&#8221;, &#8220;error&#8221;, &#8220;error text&#8221;, &#8220;text not found&#8221;, &#8220;time out&#8221; and &#8220;slow web page&#8221; when configuring the website monitoring service.</p>
<p>Each of these can launch a series of responses including sending emails, running local programs, shutting down or rebooting windows, managing a Windows service and launching a Windows process.</p>
<p>Some or all of these event responses are displayed whenever configuring a new monitoring service in the server monitoring software.</p>
<p>The monitoring software displays various statistics about each configured job including graphs, log entries and script outputs.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/server_monitoring-500x273.jpg" alt="server monitoring" title="server monitoring" width="500" height="273" class="alignnone size-medium wp-image-12995" /></p>
<p>The server monitoring services can monitor key variables on the servers including free computer memory, cpu utilization, service and process statuses and free disk space. Some of the services require that a script is running on the server so that the information can be analyzed. A Linux server has to run the net-snmp suite for example for It Service View to receive the data.</p>
<p><a href="http://www.seriosoft.com/service-view/main.htm">IT Service View</a> is a sophisticated server monitoring software for IT professionals and small businesses who want to monitor their websites and servers.</p>

	Tags: <a href="http://www.ghacks.net/tag/it-service-view/" title="it service view" rel="tag">it service view</a>, <a href="http://www.ghacks.net/tag/monitor-server/" title="monitor server" rel="tag">monitor server</a>, <a href="http://www.ghacks.net/tag/server/" title="server" rel="tag">server</a>, <a href="http://www.ghacks.net/tag/server-monitoring/" title="server monitoring" rel="tag">server monitoring</a>, <a href="http://www.ghacks.net/tag/server-monitoring-software/" title="Server Monitoring Software" rel="tag">Server Monitoring Software</a>, <a href="http://www.ghacks.net/tag/website-monitoring/" title="website monitoring" rel="tag">website monitoring</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/" title="Server Monitoring With Observu (August 13, 2008)">Server Monitoring With Observu</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/06/06/remote-server-monitoring-software-dreamsys-server-monitor/" title="Remote Server Monitoring Software DreamSys Server Monitor (June 6, 2009)">Remote Server Monitoring Software DreamSys Server Monitor</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/08/05/windows-ssh-server-winsshd/" title="Windows SSH Server WinSSHD (August 5, 2009)">Windows SSH Server WinSSHD</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/25/windows-file-server/" title="Windows File Server (October 25, 2009)">Windows File Server</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/04/17/website-monitoring-software/" title="Website Monitoring Software (April 17, 2009)">Website Monitoring Software</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Website Monitoring Software</title>
		<link>http://www.ghacks.net/2009/04/17/website-monitoring-software/</link>
		<comments>http://www.ghacks.net/2009/04/17/website-monitoring-software/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 09:58:15 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[database monitor]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[server monitoring]]></category>
		<category><![CDATA[webmasters]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[website monitoring software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/17/website-monitoring-software/</guid>
		<description><![CDATA[It is essential for webmasters and system administrators to monitor their websites and networks to be able to react as soon as possible if all or part of it goes down. That&#8217;s especially true for professionals who earn their living with their websites. A possibility are commercial services that notify the webmaster as soon as [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/website_monitoring_software.jpg" alt="website monitoring software" title="website monitoring software" width="232" height="51" class="alignleft size-full wp-image-12089" />It is essential for webmasters and system administrators to monitor their websites and networks to be able to react as soon as possible if all or part of it goes down. That&#8217;s especially true for professionals who earn their living with their websites. A possibility are commercial services that notify the webmaster as soon as a website becomes unreachable. Ghacks is monitored round the clock by <a href="http://www.ghacks.net/2008/07/19/monitor-your-servers-with-livewatch/">Livewatch</a> which will automatically send an SMS or email when a server or website goes down. </p>
<p><span id="more-12090"></span>Not everyone wants to pay to monitor websites though. The free portable software program SiteMonitor provides a local solution for the Windows operating system. It requires the Microsoft .net Framework 2.0 and can be configured to monitor selected websites and notify the user if they become unreachable. It is a good alternative as long as it is run on a computer system that is online 24/7.</p>
<p>New urls can be added easily to <a href="http://www.iannet.org/apps/SiteMonitor/">SiteMonitor</a>. All that it takes is to add a descriptive name, an url and HTML to match which is simply content that should appear on the website. The website monitoring software will check every 30 minutes by default; To much for important websites. The interval can be changed in the options. The options are also the place where the notification preferences can be edited. The website monitor provides two different types of reactions to website connection problems:</p>
<ul>
<li>Run a script or executable, e.g. a script that will restart a server or service</li>
<li>Send email to notify a user about the connection problem</li>
</ul>
<p>The amount of failures before either one of the reactions will be initiated can be configured in the same menu as well. </p>
<p>Below is the small php script that we use to check if the database is up and running on Ghacks:</p>
<p><code>&lt;?php<br />
$dbhost = 'localhost';<br />
$dbuser = 'username';<br />
$dbpass = 'password';</p>
<p>$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die                      ('Error');</p>
<p>$dbname = 'databasename';<br />
mysql_select_db($dbname);</p>
<p>if ($conn) {echo &quot;ok&quot;;}<br />
else {echo &quot;error&quot;;}</p>
<p>?&gt;</code></p>
<p>replace username with the database username, password with the password of the username and databasename with the name of the database. Save it as database.php, upload it to your website and load the new file. It should display ok if the database is up and error if it is down. The url that points to the script can then be added to the website monitoring software to check if it returns ok. If it does the website is up, if it does not it is down.</p>
<p>Alternatives are the <a href="http://www.ghacks.net/2009/03/24/website-monitor-and-downloader/">Website Monitor and Downloader</a> Wysigot, <a href="http://www.ghacks.net/2007/05/03/monitor-your-website-with-montastic/">Montastic</a> or the <a href="http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/">Server Monitor</a> Observu.</p>

	Tags: <a href="http://www.ghacks.net/tag/database-monitor/" title="database monitor" rel="tag">database monitor</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/server-monitoring/" title="server monitoring" rel="tag">server monitoring</a>, <a href="http://www.ghacks.net/tag/webmasters/" title="webmasters" rel="tag">webmasters</a>, <a href="http://www.ghacks.net/tag/website/" title="website" rel="tag">website</a>, <a href="http://www.ghacks.net/tag/website-monitoring/" title="website monitoring" rel="tag">website monitoring</a>, <a href="http://www.ghacks.net/tag/website-monitoring-software/" title="website monitoring software" rel="tag">website monitoring software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/05/website-value-calculator-stimator/" title="Website Value Calculator Stimator (April 5, 2009)">Website Value Calculator Stimator</a> (27)</li>
	<li><a href="http://www.ghacks.net/2008/08/25/website-value-calculator-cubestat/" title="Website Value Calculator Cubestat (August 25, 2008)">Website Value Calculator Cubestat</a> (15)</li>
	<li><a href="http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/" title="Server Monitoring With Observu (August 13, 2008)">Server Monitoring With Observu</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/" title="Server Monitoring Software IT Service View (May 21, 2009)">Server Monitoring Software IT Service View</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/09/07/monitor-website-changes/" title="5 Tools To Monitor Website Changes (September 7, 2009)">5 Tools To Monitor Website Changes</a> (14)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/17/website-monitoring-software/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Server Monitoring With Observu</title>
		<link>http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/</link>
		<comments>http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 07:46:52 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[observu]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server monitoring]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6108</guid>
		<description><![CDATA[Each webmasters has fears that his websites are getting hacked or that the server goes down. Happening usually in a moment when the webmaster is unaware of the problem (sleeping time). Server Monitoring can ease the mind of webmasters quite a bit.
I have already covered the server monitoring service that I&#8217;m using to monitor sites [...]]]></description>
			<content:encoded><![CDATA[<p>Each webmasters has fears that his websites are getting hacked or that the server goes down. Happening usually in a moment when the webmaster is unaware of the problem (sleeping time). Server Monitoring can ease the mind of webmasters quite a bit.</p>
<p>I have already covered the <a href="http://www.ghacks.net/2008/07/19/monitor-your-servers-with-livewatch/">server monitoring</a> service that I&#8217;m using to monitor sites like Ghacks and other websites which offered various packages depending on the amount of servers / websites and response times that you demanded.</p>
<p><a href="http://www.observu.com/">Observu</a> is another server monitoring service and it is probably the most basic one that I have ever seen. Users register by entering an email address and password and can log into the website immediately. </p>
<p><span id="more-6108"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/08/server_monitoring-500x190.jpg" alt="server monitoring" title="server monitoring" width="500" height="190" class="alignnone size-medium wp-image-6110" /></p>
<p>The only interaction that is offered is to add a new server to monitor or edit / delete previous entries that are already monitored.</p>
<p>Adding a new website for server monitoring requires minimal user input. Just enter the url of the site and a text that usually appears on it. If that text does not appear during checks an email will be send to the email account of the user.</p>
<p>This limits Observu obviously. It can only detect if a text on a website is not shown anymore. You could write your own script that checks the various services running on your server but that&#8217;s probably not what this basic server monitoring service is all about.</p>
<p>It&#8217;s great for webmasters who run static pages or pages that rely on MySQL but anything beyond that is more or less out of reach of the server monitoring service.</p>

	Tags: <a href="http://www.ghacks.net/tag/observu/" title="observu" rel="tag">observu</a>, <a href="http://www.ghacks.net/tag/server/" title="server" rel="tag">server</a>, <a href="http://www.ghacks.net/tag/server-monitoring/" title="server monitoring" rel="tag">server monitoring</a>, <a href="http://www.ghacks.net/tag/webmaster/" title="webmaster" rel="tag">webmaster</a>, <a href="http://www.ghacks.net/tag/website-monitoring/" title="website monitoring" rel="tag">website monitoring</a>, <a href="http://www.ghacks.net/tag/websites/" title="websites" rel="tag">websites</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/" title="Server Monitoring Software IT Service View (May 21, 2009)">Server Monitoring Software IT Service View</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/17/website-monitoring-software/" title="Website Monitoring Software (April 17, 2009)">Website Monitoring Software</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/08/28/website-information/" title="Website Information (August 28, 2008)">Website Information</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/30/use-multiple-internet-explorer-versions-simultaneously/" title="Use Multiple Internet Explorer Versions Simultaneously (August 30, 2008)">Use Multiple Internet Explorer Versions Simultaneously</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/06/24/sitepoint-raises-rates-tells-customers-to-stop-whining/" title="SitePoint Raises Rates; Tells Customers to Stop Whining (June 24, 2009)">SitePoint Raises Rates; Tells Customers to Stop Whining</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
