<?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>HowToBSD &#187; monitoring</title>
	<atom:link href="http://howtobsd.com/ru/tag/monitoring/feed" rel="self" type="application/rss+xml" />
	<link>http://howtobsd.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 11 Feb 2014 11:21:33 +0000</lastBuildDate>
	<language>ru-RU</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>S.M.A.R.T. for FreeBSD (smartmontools)</title>
		<link>http://howtobsd.com/ru/software/smar-t-for-freebsd-smartmontools.html</link>
		<comments>http://howtobsd.com/ru/software/smar-t-for-freebsd-smartmontools.html#comments</comments>
		<pubDate>Tue, 17 Aug 2010 14:12:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[monitoring]]></category>

		<guid isPermaLink="false">http://howtobsd.com/ru/?p=169</guid>
		<description><![CDATA[S.M.A.R.T. (Self-Monitoring hdd, Analysis, and Reporting Technology). This monitoring system support practically all hdd disks. You have to install smartmontools for working with smart on FreeBSD. I suggest you have alredy installed it. #smartctl -a /dev/ad1 This command show you many various indicatos about your disk (rate of hardware read errors, count of reallocated sectors, [...]]]></description>
				<content:encoded><![CDATA[<p>S.M.A.R.T. (Self-Monitoring hdd, Analysis, and Reporting Technology).<br />
This monitoring system support practically all hdd disks.<br />
You have to install smartmontools for working with smart on FreeBSD. I suggest you have alredy installed it.</p>
<p> <code>#smartctl -a /dev/ad1 </code></p>
<p>This command show you many various indicatos about your disk (rate of hardware read errors, count of reallocated sectors, hdd temperature etc)</p>
<p>You also can run smartd daemon with will ask disks one time per 30minutes</p>
<p><code>#cp /usr/local/etc/smartd.conf.sample /usr/local/etc/smartd.conf<br />
#vim /usr/local/etc/smartd.conf:<br />
/dev/ad0 -S on -o on -a -I 194 -m admin@howtobsd.com<br />
/dev/ad4 -S on -o on -a -I 194 -m admin@howtobsd.com</code></p>
<p>add to /etc/rc.conf:</p>
<p><code>usr/local/etc/>echo 'smartd_enable="YES"' >> /etc/rc.conf<br />
/usr/local/etc/>echo 'smartd_flags="-l local2 --interval=300"' >> /etc/rc.conf</code></p>
<p><code>#/usr/local/etc/rc.d/smartd start</code></p>
<p>That is all!</p>
]]></content:encoded>
			<wfw:commentRss>http://howtobsd.com/ru/software/smar-t-for-freebsd-smartmontools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring FreeBSD servers by the use of Munin</title>
		<link>http://howtobsd.com/ru/software/monitoring-freebsd-servers-by-the-use-of-munin.html</link>
		<comments>http://howtobsd.com/ru/software/monitoring-freebsd-servers-by-the-use-of-munin.html#comments</comments>
		<pubDate>Sat, 23 Jan 2010 19:29:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[munin]]></category>

		<guid isPermaLink="false">http://howtobsd.com/ru/?p=58</guid>
		<description><![CDATA[Article in a nutshell describes installation and configuration Munin on FreeBSD. With munin you can monitor your servers very easy. Munin also presents output information in graphs through a web interface. Install munin-main (Munin Collector): # whereis munin-main munin-main: /usr/ports/sysutils/munin-main # cd /usr/ports/sysutils/munin-main # make install clean Install munin-node: # whereis munin-node munin-node: /usr/ports/sysutils/munin-node # [...]]]></description>
				<content:encoded><![CDATA[<p>Article in a nutshell describes installation and configuration Munin on FreeBSD.<br />
With munin you can monitor your servers very easy. Munin also presents output information in graphs through a web interface.</p>
<p><strong>Install munin-main (Munin Collector):</strong></p>
<p><code># whereis munin-main<br />
munin-main: /usr/ports/sysutils/munin-main<br />
# cd /usr/ports/sysutils/munin-main<br />
# make install clean</code></p>
<p><strong>Install munin-node:</strong></p>
<p><code># whereis munin-node<br />
munin-node: /usr/ports/sysutils/munin-node<br />
# cd /usr/ports/sysutils/munin-node<br />
# make install clean</code></p>
<p><code>#echo 'munin_node_enable="YES"' &gt;&gt; /etc/rc.conf<br />
# /usr/local/etc/rc.d/munin-node.sh start</code></p>
<p>On default html-files with graphs destination in /usr/local/www/munin/ (You can chenge this in config file /usr/local/etc/munin/munin.conf)<br />
You should configure your web-sever (for example apache) to this directory.<br />
It&#8217;s all! Go to your server address and enjoy!!! <img src='http://howtobsd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://howtobsd.com/ru/software/monitoring-freebsd-servers-by-the-use-of-munin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
