<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to check MySQL Config files</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/</link>
	<description>Percona&#039;s MySQL &#38; InnoDB performance and scalability blog</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:45:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: gorenje</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-877329</link>
		<dc:creator>gorenje</dc:creator>
		<pubDate>Wed, 18 Jan 2012 07:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-877329</guid>
		<description>Once thing that happened to me was that the mysqld.pid file was deleted even though nothing happened to the server. This was an annoyance since it caused nagios to go critical because the pid was missing.

I assume that /etc/init.d/mysql would have had a fit had I tried to use it (i.e. server running but not pid file for the server).

Version I was using: Ver 5.1.56 for pc-linux-gnu on x86_64</description>
		<content:encoded><![CDATA[<p>Once thing that happened to me was that the mysqld.pid file was deleted even though nothing happened to the server. This was an annoyance since it caused nagios to go critical because the pid was missing.</p>
<p>I assume that /etc/init.d/mysql would have had a fit had I tried to use it (i.e. server running but not pid file for the server).</p>
<p>Version I was using: Ver 5.1.56 for pc-linux-gnu on x86_64</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajeev</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-865232</link>
		<dc:creator>rajeev</dc:creator>
		<pubDate>Wed, 28 Dec 2011 06:25:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-865232</guid>
		<description>Copy the following code into &quot;mysql_test.php&quot; and click save. (Make sure to replace the MYSQL_PASS constant with the MySQL Password you specified during the MySQL installation).


&lt;?php

# Define MySQL Settings
define(&quot;MYSQL_HOST&quot;, &quot;localhost&quot;);
define(&quot;MYSQL_USER&quot;, &quot;root&quot;);
define(&quot;MYSQL_PASS&quot;, &quot;password&quot;);
define(&quot;MYSQL_DB&quot;, &quot;test&quot;);

$conn = mysql_connect(&quot;&quot;.MYSQL_HOST.&quot;&quot;, &quot;&quot;.MYSQL_USER.&quot;&quot;, &quot;&quot;.MYSQL_PASS.&quot;&quot;) or die(mysql_error());
mysql_select_db(&quot;&quot;.MYSQL_DB.&quot;&quot;,$conn) or die(mysql_error());

$sql = &quot;SELECT * FROM test&quot;;
$res = mysql_query($sql);

while ($field = mysql_fetch_array($res))
{
$id = $field[&#039;id&#039;];
$name = $field[&#039;name&#039;];

echo &#039;ID: &#039; . $field[&#039;id&#039;] . &#039;&#039;;
echo &#039;Name: &#039; . $field[&#039;name&#039;] . &#039;&#039;;
}

?&gt; 
Open up Internet Explorer and type in &quot;http://localhost/mysql_test.php&quot;. If the &quot;mysql_test.php&quot; page returns something similiar to:


ID: 1
Name: John

after run on broser:

Fatal error: Call to undefined function mysql_connect() in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\mysql_test.php on line 9


why given error in line no-9 
plz help</description>
		<content:encoded><![CDATA[<p>Copy the following code into &#8220;mysql_test.php&#8221; and click save. (Make sure to replace the MYSQL_PASS constant with the MySQL Password you specified during the MySQL installation).</p>
<p>&lt;?php</p>
<p># Define MySQL Settings<br />
define(&quot;MYSQL_HOST&quot;, &quot;localhost&quot;);<br />
define(&quot;MYSQL_USER&quot;, &quot;root&quot;);<br />
define(&quot;MYSQL_PASS&quot;, &quot;password&quot;);<br />
define(&quot;MYSQL_DB&quot;, &quot;test&quot;);</p>
<p>$conn = mysql_connect(&quot;&quot;.MYSQL_HOST.&quot;&quot;, &quot;&quot;.MYSQL_USER.&quot;&quot;, &quot;&quot;.MYSQL_PASS.&quot;&quot;) or die(mysql_error());<br />
mysql_select_db(&quot;&quot;.MYSQL_DB.&quot;&quot;,$conn) or die(mysql_error());</p>
<p>$sql = &quot;SELECT * FROM test&quot;;<br />
$res = mysql_query($sql);</p>
<p>while ($field = mysql_fetch_array($res))<br />
{<br />
$id = $field[&#039;id&#039;];<br />
$name = $field[&#039;name&#039;];</p>
<p>echo &#039;ID: &#039; . $field[&#039;id&#039;] . &#039;&#8217;;<br />
echo &#8216;Name: &#8216; . $field['name'] . &#8221;;<br />
}</p>
<p>?&gt;<br />
Open up Internet Explorer and type in &#8220;http://localhost/mysql_test.php&#8221;. If the &#8220;mysql_test.php&#8221; page returns something similiar to:</p>
<p>ID: 1<br />
Name: John</p>
<p>after run on broser:</p>
<p>Fatal error: Call to undefined function mysql_connect() in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\mysql_test.php on line 9</p>
<p>why given error in line no-9<br />
plz help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sv</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-654926</link>
		<dc:creator>sv</dc:creator>
		<pubDate>Sun, 20 Sep 2009 15:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-654926</guid>
		<description>Yup. I think the problem might be with your configuration. I use Mysql version 5.0.
and I get following message, I am  not use of the warning message. Can you help

090922  2:30:57 [Warning] option &#039;max_join_size&#039;: unsigned value 18446744073709551615 adjusted to 4294967295
090922  2:30:57 [Warning] option &#039;max_join_size&#039;: unsigned value 18446744073709551615 adjusted to 4294967295

/usr/libexec/mysqld  Ver 5.0.67 for redhat-linux-gnu on i386 (Source distribution)
Copyright (C) 2000 MySQL AB, by Monty and others
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Starts the MySQL database server

Usage: /usr/libexec/mysqld [OPTIONS]

For more help options (several pages), use mysqld --verbose --help</description>
		<content:encoded><![CDATA[<p>Yup. I think the problem might be with your configuration. I use Mysql version 5.0.<br />
and I get following message, I am  not use of the warning message. Can you help</p>
<p>090922  2:30:57 [Warning] option &#8216;max_join_size&#8217;: unsigned value 18446744073709551615 adjusted to 4294967295<br />
090922  2:30:57 [Warning] option &#8216;max_join_size&#8217;: unsigned value 18446744073709551615 adjusted to 4294967295</p>
<p>/usr/libexec/mysqld  Ver 5.0.67 for redhat-linux-gnu on i386 (Source distribution)<br />
Copyright (C) 2000 MySQL AB, by Monty and others<br />
This software comes with ABSOLUTELY NO WARRANTY. This is free software,<br />
and you are welcome to modify and redistribute it under the GPL license</p>
<p>Starts the MySQL database server</p>
<p>Usage: /usr/libexec/mysqld [OPTIONS]</p>
<p>For more help options (several pages), use mysqld &#8211;verbose &#8211;help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-244463</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Mon, 18 Feb 2008 13:40:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-244463</guid>
		<description>Hm. I think it worked for MySQL 4.1 
I tested it with MySQL 5.0</description>
		<content:encoded><![CDATA[<p>Hm. I think it worked for MySQL 4.1<br />
I tested it with MySQL 5.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterwang</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-244386</link>
		<dc:creator>peterwang</dc:creator>
		<pubDate>Mon, 18 Feb 2008 08:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-244386</guid>
		<description>hi, what&#039;s your mysql version?
it doesn&#039;t work for me.
version:
/usr/libexec/mysqld  Ver 4.1.18 for pc-linux-gnu on i686 (Source distribution)</description>
		<content:encoded><![CDATA[<p>hi, what&#8217;s your mysql version?<br />
it doesn&#8217;t work for me.<br />
version:<br />
/usr/libexec/mysqld  Ver 4.1.18 for pc-linux-gnu on i686 (Source distribution)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-242547</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Thu, 14 Feb 2008 13:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-242547</guid>
		<description>It would,

Though I honestly do not expect little things as these to be given a lot of priority :)</description>
		<content:encoded><![CDATA[<p>It would,</p>
<p>Though I honestly do not expect little things as these to be given a lot of priority <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: walrus</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/comment-page-1/#comment-242540</link>
		<dc:creator>walrus</dc:creator>
		<pubDate>Thu, 14 Feb 2008 13:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/12/how-to-check-mysql-config-files/#comment-242540</guid>
		<description>I believe the proper way is to submit a feature request on bugs.mysql.com and ask them to add special options, say, --check_config to mysqld</description>
		<content:encoded><![CDATA[<p>I believe the proper way is to submit a feature request on bugs.mysql.com and ask them to add special options, say, &#8211;check_config to mysqld</p>
]]></content:encoded>
	</item>
</channel>
</rss>

