<?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>fabiolagana.net &#187; mysql</title>
	<atom:link href="http://blog.fabiolagana.net/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fabiolagana.net</link>
	<description>640 Kb should be enough memory for anybody</description>
	<lastBuildDate>Mon, 26 Oct 2009 13:17:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Bash script for checking mysql problem by reading daemon.log</title>
		<link>http://blog.fabiolagana.net/bash-script-checking-mysql-problem-by-reading-daemonlog/</link>
		<comments>http://blog.fabiolagana.net/bash-script-checking-mysql-problem-by-reading-daemonlog/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 21:27:34 +0000</pubDate>
		<dc:creator>Fabio Laganà</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[daemon.log]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://blog.fabiolagana.net/?p=48</guid>
		<description><![CDATA[&#160;Powered by Max Banner Ads&#160; #!/bin/bash &#160; ### Checking del daemon.log per eventuali problemi sul DB MySQL # rel. 0.3 - 01 Agosto 2008 &#160; # time_to_check_min=`date +&#34;%b %d %k:%M&#34; -d &#34;-1 min&#34;` # time_to_check_hour=`date +&#34;%b %d %k:%M&#34; -d &#34;-1 hour&#34;` file_to_check=/var/log/daemon.log tmp_file=/tmp/info.tmp.01.$$ tmp_file1=/tmp/info.tmp.02.$$ host=`cat /etc/hostname` semaphore=/tmp/.flag_checking_daemon_log &#160; daemon=mysql &#160; if &#91;&#91; -e $semaphore &#93;&#93;; [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_codebox"><table><tr id="p482"><td class="code" id="p48code2"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #666666; font-style: italic;">### Checking del daemon.log per eventuali problemi sul DB MySQL</span>
<span style="color: #666666; font-style: italic;"># rel. 0.3 - 01 Agosto 2008</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># time_to_check_min=`date +&quot;%b %d %k:%M&quot; -d &quot;-1 min&quot;`</span>
<span style="color: #666666; font-style: italic;"># time_to_check_hour=`date +&quot;%b %d %k:%M&quot; -d &quot;-1 hour&quot;`</span>
<span style="color: #007800;">file_to_check</span>=<span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>daemon.log
<span style="color: #007800;">tmp_file</span>=<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>info.tmp.01.<span style="color: #007800;">$$</span>
<span style="color: #007800;">tmp_file1</span>=<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>info.tmp.02.<span style="color: #007800;">$$</span>
<span style="color: #007800;">host</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">hostname</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #007800;">semaphore</span>=<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>.flag_checking_daemon_log
&nbsp;
<span style="color: #007800;">daemon</span>=mysql
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-e</span> <span style="color: #007800;">$semaphore</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>;
  <span style="color: #000000; font-weight: bold;">then</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;checking for mysqld....Nothing to do ....another cron is still working&quot;</span>
  <span style="color: #000000; font-weight: bold;">else</span>
    <span style="color: #c20cb9; font-weight: bold;">touch</span> <span style="color: #007800;">$semaphore</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #000000; font-weight: bold;">`</span> <span style="color: #000000; font-weight: bold;">&amp;</span>lt; <span style="color: #ff0000;">'10'</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
    <span style="color: #007800;">time_to_check_min</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #ff0000;">&quot;%b %d %k:%M&quot;</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;-1 min&quot;</span><span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-r</span> <span style="color: #ff0000;">'s/[[:space:]](0)([1-9])[[:space:]]/  2 /'</span><span style="color: #000000; font-weight: bold;">`</span>
    <span style="color: #007800;">time_to_check_hour</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #ff0000;">&quot;%b %d %k:%M&quot;</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;-1 hour&quot;</span><span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-r</span> <span style="color: #ff0000;">'s/[[:space:]](0)([1-9])[[:space:]]/  2 /'</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">else</span>
    <span style="color: #007800;">time_to_check_min</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #ff0000;">&quot;%b %d %k:%M&quot;</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;-1 min&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
    <span style="color: #007800;">time_to_check_hour</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #ff0000;">&quot;%b %d %k:%M&quot;</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;-1 hour&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #666666; font-style: italic;">#echo &quot;checking for &quot;&quot;$file_to_check  $time_to_check_min&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$time_to_check_min</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$file_to_check</span>&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;</span>gt; <span style="color: #007800;">$tmp_file</span>
<span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$daemon</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$tmp_file</span>&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;</span>gt; <span style="color: #007800;">$tmp_file1</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-e</span> <span style="color: #007800;">$tmp_file1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>;
    <span style="color: #000000; font-weight: bold;">then</span>
        <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-s</span> <span style="color: #007800;">$tmp_file1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
            mail <span style="color: #660033;">-s</span> <span style="color: #ff0000;">&quot;Something happening on [ <span style="color: #007800;">$daemon</span> ] for &quot;</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$host</span>&quot;</span> tech-c<span style="color: #000000; font-weight: bold;">@</span>bakeca.it <span style="color: #000000; font-weight: bold;">&amp;</span>lt; <span style="color: #007800;">$tmp_file1</span>
        <span style="color: #000000; font-weight: bold;">fi</span>
        <span style="color: #666666; font-style: italic;">#remove the tmp_file</span>
        <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">$tmp_file</span>
        <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">$tmp_file1</span>
    <span style="color: #000000; font-weight: bold;">fi</span>
   <span style="color: #666666; font-style: italic;">#removing the semaphore</span>
   <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">$semaphore</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.fabiolagana.net/bash-script-checking-mysql-problem-by-reading-daemonlog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
