<?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>OpenKB::Server Technical Papers &#187; MySQL</title>
	<atom:link href="http://www.openkb.org/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openkb.org</link>
	<description>Computer , server issues and solutions</description>
	<lastBuildDate>Sat, 17 Jul 2010 21:16:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>mysql:  Incorrect information in file:</title>
		<link>http://www.openkb.org/mysql-incorrect-information-in-file/</link>
		<comments>http://www.openkb.org/mysql-incorrect-information-in-file/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 18:23:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=726</guid>
		<description><![CDATA[Incorrect information in file /path/test.frm This indicates that skip-innodb is enabled in the my.cnf file ..]]></description>
			<content:encoded><![CDATA[<p> Incorrect information in file /path/test.frm</p>
<p>This indicates that skip-innodb is enabled in the my.cnf file .. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-incorrect-information-in-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql ERROR 3 (HY000): Error writing file</title>
		<link>http://www.openkb.org/mysql-error-3-hy000-error-writing-file/</link>
		<comments>http://www.openkb.org/mysql-error-3-hy000-error-writing-file/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:35:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=638</guid>
		<description><![CDATA[Error : ERROR 3 (HY000): Error writing file &#8216;/tmp/MY68ie0h&#8217; (Errcode: 28)   this is due to a storage issue with the partition that is holding /tmp]]></description>
			<content:encoded><![CDATA[<p>Error :</p>
<p>ERROR 3 (HY000): Error writing file &#8216;/tmp/MY68ie0h&#8217; (Errcode: 28)</p>
<p> </p>
<p>this is due to a storage issue with the partition that is holding /tmp</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-error-3-hy000-error-writing-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL: Persistent connections</title>
		<link>http://www.openkb.org/mysql-persistent-connections/</link>
		<comments>http://www.openkb.org/mysql-persistent-connections/#comments</comments>
		<pubDate>Sun, 10 May 2009 18:45:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=476</guid>
		<description><![CDATA[You may encounter a max user connection error if your my.cnf file is set to a low number and you have mysql.allow_persistent = on within your php.ini file. You have two ways to fix this . 1) use a mysql_close() statement within your code. this is not needed for non-persistent connection per the PHP manual [...]]]></description>
			<content:encoded><![CDATA[<p>You may encounter a max user connection error if your my.cnf file is set to a low number and you have mysql.allow_persistent = on within your php.ini file. </p>
<p>You have two ways to fix this . </p>
<p>1) use a mysql_close() statement within your code. this is not needed for non-persistent connection per the PHP manual<br />
<a href="http://us2.php.net/mysql_close"> PHP Manual </a></p>
<p>2) disallow persistent connection by turning it off within the php.ini file. </p>
<p>Persistent connection keeps the last connection active with mysql which goes into sleep mode. </p>
<p>Other errors you may see<br />
<a href="http://dev.mysql.com/doc/refman/5.1/en/too-many-connections.html"> Too many connections </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-persistent-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MysQL: Show grants for users</title>
		<link>http://www.openkb.org/mysql-show-grants-for-users/</link>
		<comments>http://www.openkb.org/mysql-show-grants-for-users/#comments</comments>
		<pubDate>Sat, 09 May 2009 22:59:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=470</guid>
		<description><![CDATA[mysql> show grants for &#8216;user&#8217;@'host&#8217; or select * from information_schema.user_privileges where grantee like &#8220;&#8216;user&#8217;%&#8221;; Tools Maakit]]></description>
			<content:encoded><![CDATA[<p>mysql> show grants for &#8216;user&#8217;@'host&#8217;<br />
or<br />
select * from information_schema.user_privileges where grantee like &#8220;&#8216;user&#8217;%&#8221;;</p>
<p>Tools<br />
<a href="http://www.maatkit.org/tools.html"> Maakit </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-show-grants-for-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql: drop all tables via the command line</title>
		<link>http://www.openkb.org/mysql-drop-all-tables-via-the-command-line/</link>
		<comments>http://www.openkb.org/mysql-drop-all-tables-via-the-command-line/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 00:22:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=348</guid>
		<description><![CDATA[Thanks to VIVEK GITE for this &#8212;&#8212; Drop all tables using shell script w/o root access Nice script to run via shell I&#8217;ve small handy shell script that removes all tables without dropping and creating MySQL database again. #!/bin/bash MUSER="$1" MPASS="$2" MDB="$3" # Detect paths MYSQL=$(which mysql) AWK=$(which awk) GREP=$(which grep) if [ $# -ne [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to VIVEK  GITE  for this &#8212;&#8212;<br />
<a href="http://www.cyberciti.biz/faq/how-do-i-empty-mysql-database/comment-page-1/#comment-40082">Drop all tables using shell script w/o root access</a></p>
<p>Nice script to run via shell</p>
<p>I&#8217;ve small handy shell script that removes all tables without dropping and creating MySQL database again.</p>
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">MUSER=</span><span style="color: #ff0000;">"$1"</span>
<span style="color: #007800;">MPASS=</span><span style="color: #ff0000;">"$2"</span>
<span style="color: #007800;">MDB=</span><span style="color: #ff0000;">"$3"</span>

<span style="color: #808080; font-style: italic;"># Detect paths</span>

<span style="color: #007800;">MYSQL=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #c20cb9; font-weight: bold;">which</span> mysql<span style="color: #7a0874; font-weight: bold;">)</span>
<span style="color: #007800;">AWK=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #c20cb9; font-weight: bold;">which</span> <span style="color: #c20cb9; font-weight: bold;">awk</span><span style="color: #7a0874; font-weight: bold;">)</span>
<span style="color: #007800;">GREP=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #c20cb9; font-weight: bold;">which</span> <span style="color: #c20cb9; font-weight: bold;">grep</span><span style="color: #7a0874; font-weight: bold;">)</span>

<span style="color: #ffffff; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #007800;">$#</span> -ne <span style="color: #ffffff;">3</span> <span style="color: #7a0874; font-weight: bold;">]</span>
<span style="color: #ffffff; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Usage: $0 {MySQL-User-Name} {MySQL-User-Password} {MySQL-Database-Name}"</span>

	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Drops all tables from a MySQL"</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #ffffff;">1</span>
<span style="color: #ffffff; font-weight: bold;">fi</span>

<span style="color: #007800;">TABLES=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #007800;">$MYSQL</span> -u <span style="color: #007800;">$MUSER</span> -p<span style="color: #007800;">$MPASS</span> <span style="color: #007800;">$MDB</span> -e <span style="color: #ff0000;">'show tables'</span> | <span style="color: #007800;">$AWK</span> <span style="color: #ff0000;">'{ print $1}'</span> | <span style="color: #007800;">$GREP</span> -v <span style="color: #ff0000;">'^Tables'</span> <span style="color: #7a0874; font-weight: bold;">)</span>

<span style="color: #ffffff; font-weight: bold;">for</span> t <span style="color: #ffffff; font-weight: bold;">in</span> <span style="color: #007800;">$TABLES</span>
<span style="color: #ffffff; font-weight: bold;">do</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Deleting $t table from $MDB database..."</span>
	<span style="color: #007800;">$MYSQL</span> -u <span style="color: #007800;">$MUSER</span> -p<span style="color: #007800;">$MPASS</span> <span style="color: #007800;">$MDB</span> -e <span style="color: #ff0000;">"drop table $t"</span>

<span style="color: #ffffff; font-weight: bold;">done</span></pre>
<p>Simply use above script as follows to empty a database called quiz with username tom and password jerry:</p>
<p><code>$ ./drop.table.sh tom jerry quiz</code></p>
<p>View the full script below</p>
<p>==============</p>
<div class="format_text entry-content">
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/bash</span>
<span style="color: #808080; font-style: italic;"># A shell script to delete / drop all tables from MySQL database.</span>
<span style="color: #808080; font-style: italic;"># Usage: ./script user password dbnane</span>
<span style="color: #808080; font-style: italic;"># Usage: ./script user password dbnane server-ip</span>
<span style="color: #808080; font-style: italic;"># Usage: ./script user password dbnane mysql.nixcraft.in</span>
<span style="color: #808080; font-style: italic;"># -------------------------------------------------------------------------</span>
<span style="color: #808080; font-style: italic;"># Copyright <span style="color: #7a0874; font-weight: bold;">(</span>c<span style="color: #7a0874; font-weight: bold;">)</span> <span style="color: #ffffff;">2008</span> nixCraft project &lt;http://www.cyberciti.biz/fb/&gt;</span>

<span style="color: #808080; font-style: italic;"># This script is licensed under GNU GPL version <span style="color: #ffffff;">2.0</span> or above</span>
<span style="color: #808080; font-style: italic;"># -------------------------------------------------------------------------</span>
<span style="color: #808080; font-style: italic;"># This script is part of nixCraft shell script collection <span style="color: #7a0874; font-weight: bold;">(</span>NSSC<span style="color: #7a0874; font-weight: bold;">)</span></span>
<span style="color: #808080; font-style: italic;"># Visit http://bash.cyberciti.biz/ <span style="color: #ffffff; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">more</span> information.</span>

<span style="color: #808080; font-style: italic;"># ----------------------------------------------------------------------</span>
<span style="color: #808080; font-style: italic;"># See URL <span style="color: #ffffff; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">more</span> info:</span>
<span style="color: #808080; font-style: italic;"># http://www.cyberciti.biz/faq/how-do-i-empty-mysql-database/</span>
<span style="color: #808080; font-style: italic;"># ---------------------------------------------------</span>

<span style="color: #007800;">MUSER=</span><span style="color: #ff0000;">"$1"</span>

<span style="color: #007800;">MPASS=</span><span style="color: #ff0000;">"$2"</span>
<span style="color: #007800;">MDB=</span><span style="color: #ff0000;">"$3"</span>

<span style="color: #007800;">MHOST=</span><span style="color: #ff0000;">"localhost"</span>

<span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"$4"</span> != <span style="color: #ff0000;">""</span> <span style="color: #7a0874; font-weight: bold;">]</span> &amp;&amp; <span style="color: #007800;">MHOST=</span><span style="color: #ff0000;">"$4"</span>

<span style="color: #808080; font-style: italic;"># Detect paths</span>
<span style="color: #007800;">MYSQL=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #c20cb9; font-weight: bold;">which</span> mysql<span style="color: #7a0874; font-weight: bold;">)</span>
<span style="color: #007800;">AWK=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #c20cb9; font-weight: bold;">which</span> <span style="color: #c20cb9; font-weight: bold;">awk</span><span style="color: #7a0874; font-weight: bold;">)</span>
<span style="color: #007800;">GREP=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #c20cb9; font-weight: bold;">which</span> <span style="color: #c20cb9; font-weight: bold;">grep</span><span style="color: #7a0874; font-weight: bold;">)</span>

<span style="color: #808080; font-style: italic;"># help</span>
<span style="color: #ffffff; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">[</span> ! <span style="color: #007800;">$#</span> -ge <span style="color: #ffffff;">3</span> <span style="color: #7a0874; font-weight: bold;">]</span>
<span style="color: #ffffff; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Usage: $0 {MySQL-User-Name} {MySQL-User-Password} {MySQL-Database-Name} [host-name]"</span>

	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Drops all tables from a MySQL"</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #ffffff;">1</span>
<span style="color: #ffffff; font-weight: bold;">fi</span>

<span style="color: #808080; font-style: italic;"># <span style="color: #c20cb9; font-weight: bold;">make</span> sure we can connect to server</span>

<span style="color: #007800;">$MYSQL</span> -u <span style="color: #007800;">$MUSER</span> -p<span style="color: #007800;">$MPASS</span> -h <span style="color: #007800;">$MHOST</span> -e <span style="color: #ff0000;">"use $MDB"</span>  &amp;&gt;/dev/null
<span style="color: #ffffff; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">[</span> $? -ne <span style="color: #ffffff;">0</span> <span style="color: #7a0874; font-weight: bold;">]</span>

<span style="color: #ffffff; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Error - Cannot connect to mysql server using given username, password or database does not exits!"</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #ffffff;">2</span>
<span style="color: #ffffff; font-weight: bold;">fi</span>

<span style="color: #007800;">TABLES=</span>$<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #007800;">$MYSQL</span> -u <span style="color: #007800;">$MUSER</span> -p<span style="color: #007800;">$MPASS</span> -h <span style="color: #007800;">$MHOST</span> <span style="color: #007800;">$MDB</span> -e <span style="color: #ff0000;">'show tables'</span> | <span style="color: #007800;">$AWK</span> <span style="color: #ff0000;">'{ print $1}'</span> | <span style="color: #007800;">$GREP</span> -v <span style="color: #ff0000;">'^Tables'</span> <span style="color: #7a0874; font-weight: bold;">)</span>

<span style="color: #808080; font-style: italic;"># <span style="color: #c20cb9; font-weight: bold;">make</span> sure tables exits</span>
<span style="color: #ffffff; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"$TABLES"</span> == <span style="color: #ff0000;">""</span> <span style="color: #7a0874; font-weight: bold;">]</span>
<span style="color: #ffffff; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Error - No table found in $MDB database!"</span>

	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #ffffff;">3</span>
<span style="color: #ffffff; font-weight: bold;">fi</span>

<span style="color: #808080; font-style: italic;"># <span style="color: #7a0874; font-weight: bold;">let</span> us <span style="color: #ffffff; font-weight: bold;">do</span> it</span>
<span style="color: #ffffff; font-weight: bold;">for</span> t <span style="color: #ffffff; font-weight: bold;">in</span> <span style="color: #007800;">$TABLES</span>

<span style="color: #ffffff; font-weight: bold;">do</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Deleting $t table from $MDB database..."</span>
	<span style="color: #007800;">$MYSQL</span> -u <span style="color: #007800;">$MUSER</span> -p<span style="color: #007800;">$MPASS</span> -h <span style="color: #007800;">$MHOST</span> <span style="color: #007800;">$MDB</span> -e <span style="color: #ff0000;">"drop table $t"</span>

<span style="color: #ffffff; font-weight: bold;">done</span></pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-drop-all-tables-via-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk: saved admin password error</title>
		<link>http://www.openkb.org/plesk-saved-admin-password-error/</link>
		<comments>http://www.openkb.org/plesk-saved-admin-password-error/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 21:22:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.masadmin1.com/?p=260</guid>
		<description><![CDATA[Service is not available now, probably your Plesk is misconfigured. Contact Your provider for details. Internal Plesk error occurred: Unable to connect to database: saved admin password is incorrect. &#8212;&#8212;&#8212;&#8212; Fix &#8212;&#8212;&#8212;&#8211; you will need to edit the mysql config file add skip-grant-tables under mysqld /etc/my.cnf then restart mysql connect to the mysql db issue [...]]]></description>
			<content:encoded><![CDATA[<p>Service is not available now, probably your Plesk is misconfigured.</p>
<p>Contact Your provider for details.</p>
<p>Internal Plesk error occurred:  							Unable to connect to database: saved admin password is incorrect.</p>
<p>&#8212;&#8212;&#8212;&#8212;</p>
<p>Fix</p>
<p>&#8212;&#8212;&#8212;&#8211;</p>
<p>you will need to edit the mysql config file</p>
<p>add skip-grant-tables under mysqld</p>
<p>/etc/my.cnf</p>
<p>then restart mysql</p>
<p>connect to the mysql db</p>
<p>issue the following command</p>
<p><code>UPDATE mysql.user SET Password=PASSWORD('new_pwd') WHERE User='admin';</code></p>
<p>then</p>
<p><code>FLUSH PRIVILEGES;</code></p>
<p>exit mysql ,</p>
<p>remove the skip-grant-tables from the mysqld config</p>
<p>restart mysql</p>
<p>*also very the password matches /etc/psa/.psa.shadow</p>
<p>cat /etc/psa/.psa.shadow</p>
<p><a href="http://kb.parallels.com/en/346"> Reference </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/plesk-saved-admin-password-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql: handling null values during a insert</title>
		<link>http://www.openkb.org/mysql-handling-null-values-during-a-insert/</link>
		<comments>http://www.openkb.org/mysql-handling-null-values-during-a-insert/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 16:17:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.masadmin1.com/?p=210</guid>
		<description><![CDATA[Example of inserting null values/string is as follows null columns for testing purpose test1 and test2 INSERT INTO reguser_active (test1, test2) values (&#8221;,&#8221;); &#8221; tells mysql to insert a empty string into the column , you may also insert a null value into the not null column as such INSERT INTO reguser_active (test1, test2) values [...]]]></description>
			<content:encoded><![CDATA[<p>Example of inserting null values/string  is as follows<br />
null columns for testing purpose<br />
test1 and test2</p>
<p>INSERT INTO reguser_active (test1, test2) values (&#8221;,&#8221;);</p>
<p>&#8221; tells mysql to insert a empty string into the column , you may also insert a<br />
null value into the not null column as such </p>
<p>INSERT INTO reguser_active (test1, test2) values (&#8216;null&#8217;,'null&#8217;);</p>
<p>and lastly you can modified your columns to allow null values. </p>
<p>Reference sites </p>
<p>http://dev.mysql.com/doc/refman/5.0/en/problems-with-null.html</p>
<p>http://dev.mysql.com/doc/refman/5.0/en/insert.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-handling-null-values-during-a-insert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SugarCRM: mysql error</title>
		<link>http://www.openkb.org/sugarcrm-mysql-error/</link>
		<comments>http://www.openkb.org/sugarcrm-mysql-error/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 23:47:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.masadmin1.com/?p=206</guid>
		<description><![CDATA[Query Failed: AND users.id = &#8217;1&#8242;::MySQL error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;AND users.id = &#8217;1&#8221; at line 1 &#8211; PHP Safe mode must be off .., duh]]></description>
			<content:encoded><![CDATA[<p>Query Failed: AND users.id = &#8217;1&#8242;::MySQL error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;AND users.id = &#8217;1&#8221; at line 1</p>
<p>&#8211;</p>
<p>PHP Safe mode must be off .., duh </p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/sugarcrm-mysql-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql &#8211; error lookup</title>
		<link>http://www.openkb.org/mysql-error-lookup/</link>
		<comments>http://www.openkb.org/mysql-error-lookup/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 19:39:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.masadmin1.com/?p=175</guid>
		<description><![CDATA[if you check the mysql logs and see a error code such as error 24 you can lookup the code by using the perror command perror 24]]></description>
			<content:encoded><![CDATA[<p>if you check the mysql logs and see a error code such as error 24 </p>
<p>you can lookup the code by using the perror command </p>
<p>perror 24 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-error-lookup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horde: DB connection error</title>
		<link>http://www.openkb.org/horde-db-connection-error/</link>
		<comments>http://www.openkb.org/horde-db-connection-error/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 18:24:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.masadmin1.com/?p=157</guid>
		<description><![CDATA[A fatal error has occurred DB Error: connect failed Details have been logged for the administrator create a symlink to the mysql.sock from the /tmp/ folder example cd /tmp ln -s /usr/local/lib/mysql.sock mysql.sock]]></description>
			<content:encoded><![CDATA[<p><span id="divShow2"></p>
<pre style="font-family: Verdana; font-size: small;">A fatal error has occurred
DB Error: connect failed
Details have been logged for the administrator

create a symlink to the mysql.sock from the /tmp/ folder example
cd /tmp
ln -s /usr/local/lib/mysql.sock mysql.sock</pre>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/horde-db-connection-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
