<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.howtoforge.org" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
 <title>HowtoForge - Linux Howtos and Tutorials - MySQL</title>
 <link>http://www.howtoforge.org/taxonomy/term/65/all</link>
 <description></description>
 <language>en</language>
 <atom:link href="http://www.howtoforge.org/taxonomy/term/65/all/feed" rel="self" type="application/rss+xml" />
 <image>
  <title>HowtoForge - Linux Howtos and Tutorials - MySQL</title>
  <url>http://www.howtoforge.com/themes/htf_glass/images/howtoforge_logo_glass_blue.gif</url>
  <link>http://www.howtoforge.org/taxonomy/term/65/all</link>
 </image>

<item>
 <title>Securing the connection between MySQL and MySQL Administrator using an SSH tunnel</title>
 <link>http://www.howtoforge.org/secure_mysql_connection_ssh_tunnel</link>
 <description>&lt;p&gt;&lt;b&gt;Securing the connection between MySQL and MySQL Administrator using an SSH tunnel&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;This is a description of how to set up a secure tunnel between your
MySQL Server and a locally running MySQL Administrator using Putty. By creating a secure tunnel to your MySQL server using Putty, you can grant  &lt;i&gt;localhost&lt;/i&gt;
access to powerful applications like MySQL Administrator while at the
same time, make your server appear as if it isn&#039;t even there. In
effect, make your MySQL server disappear from the outside world.&lt;/p&gt;&lt;a href=&quot;http://www.howtoforge.org/secure_mysql_connection_ssh_tunnel&quot; title=&quot;Read the rest of this posting.&quot; class=&quot;read-more&quot;&gt;Read more...&lt;/a&gt;</description>
 <category domain="http://www.howtoforge.org/sitemap/mysql">MySQL</category>
 <category domain="http://www.howtoforge.org/taxonomy/term/65">MySQL</category>
 <category domain="http://www.howtoforge.org/sitemap/security">Security</category>
 <pubDate>Sat, 30 Dec 2006 03:29:42 +0100</pubDate>
 <guid>http://www.howtoforge.org/secure_mysql_connection_ssh_tunnel</guid>
 <comments>http://www.howtoforge.org/secure_mysql_connection_ssh_tunnel#comment</comments>
</item>
<item>
 <title>How to perform a point in time restoration using ZRM for MySQL</title>
 <link>http://www.howtoforge.org/point_in_time_restoration_mysql_zrm</link>
 <description>&lt;p&gt;&lt;b&gt;How to perform a point in time restoration using ZRM for MySQL&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;ZRM for MySQL is a powerful, flexible and robust  backup and recovery solution for&amp;nbsp; MySQL databases for all  storage engines. With ZRM for MySQL a Database Administrator can automate logical or raw backup to a local or remote disk. In this How To, we attempt to explain how to recover from an user error at any given point in time.&lt;/p&gt;
&lt;a href=&quot;http://www.howtoforge.org/point_in_time_restoration_mysql_zrm&quot; title=&quot;Read the rest of this posting.&quot; class=&quot;read-more&quot;&gt;Read more...&lt;/a&gt;</description>
 <category domain="http://www.howtoforge.org/sitemap/linux">Linux</category>
 <category domain="http://www.howtoforge.org/taxonomy/term/62">Backup</category>
 <category domain="http://www.howtoforge.org/sitemap/mysql">MySQL</category>
 <category domain="http://www.howtoforge.org/taxonomy/term/65">MySQL</category>
 <pubDate>Thu, 23 Nov 2006 01:38:48 +0100</pubDate>
 <guid>http://www.howtoforge.org/point_in_time_restoration_mysql_zrm</guid>
 <comments>http://www.howtoforge.org/point_in_time_restoration_mysql_zrm#comment</comments>
</item>
<item>
 <title>How do I make my MySQL server use TCP connections instead of Unix sockets?</title>
 <link>http://www.howtoforge.org/faq/6_8_en.html</link>
 <description>&lt;p&gt;Comment out the option &lt;span class=&quot;system&quot;&gt;skip-networking&lt;/span&gt; in the file &lt;span class=&quot;system&quot;&gt;my.cnf&lt;/span&gt; which
typically lies under &lt;span class=&quot;system&quot;&gt;/etc&lt;/span&gt; or &lt;span class=&quot;system&quot;&gt;/etc/mysql&lt;/span&gt;. Then restart your MySQL server:
&lt;/p&gt;&lt;p class=&quot;command&quot;&gt;/etc/rc.d/init.d/mysql restart&lt;/p&gt;
&lt;p&gt; or &lt;/p&gt;
&lt;p class=&quot;command&quot;&gt;/etc/init.d/mysql restart&lt;/p&gt;
&lt;p&gt;With&lt;/p&gt;
&lt;p class=&quot;command&quot;&gt;netstat -ta&lt;/p&gt;
&lt;p&gt;you can check if MySQL is reachable via TCP. &lt;/p&gt;
&lt;a href=&quot;http://www.howtoforge.org/faq/6_8_en.html&quot; title=&quot;Read the rest of this posting.&quot; class=&quot;read-more&quot;&gt;Read more...&lt;/a&gt;</description>
 <category domain="http://www.howtoforge.org/taxonomy/term/65">MySQL</category>
 <category domain="http://www.howtoforge.org/taxonomy/term/73">ISPConfig</category>
 <pubDate>Mon, 07 Aug 2006 17:25:36 +0200</pubDate>
 <guid>http://www.howtoforge.org/faq/6_8_en.html</guid>
 <comments>http://www.howtoforge.org/faq/6_8_en.html#comment</comments>
</item>
<item>
 <title>How do I restore a MySQL database from an sql dump?</title>
 <link>http://www.howtoforge.org/faq/6_4_en.html</link>
 <description>&lt;p&gt;If your MySQL user has a password:&lt;/p&gt;
&lt;p class=&quot;command&quot;&gt;mysql -h localhost -u [MySQL user, e.g. root] -p[database password] [name of the database] &amp;lt; [name of your sql dump, e.g. sqldump.sql]&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Please note:&lt;/b&gt; &amp;nbsp;there&#039;s no space between &lt;span class=&quot;system&quot;&gt;-p&lt;/span&gt; and the password!&lt;/p&gt;&lt;p&gt;If there&#039;s no password:&lt;/p&gt;
&lt;p class=&quot;command&quot;&gt;mysql -h localhost -u [MySQL user, e.g. root] [name of the database] &amp;lt; [name of your sql dump, e.g. sqldump.sql]&lt;/p&gt;
&lt;a href=&quot;http://www.howtoforge.org/faq/6_4_en.html&quot; title=&quot;Read the rest of this posting.&quot; class=&quot;read-more&quot;&gt;Read more...&lt;/a&gt;</description>
 <category domain="http://www.howtoforge.org/taxonomy/term/65">MySQL</category>
 <pubDate>Mon, 07 Aug 2006 17:21:00 +0200</pubDate>
 <guid>http://www.howtoforge.org/faq/6_4_en.html</guid>
 <comments>http://www.howtoforge.org/faq/6_4_en.html#comment</comments>
</item>
<item>
 <title>How do I make an sql dump of a MySQL database on the command line?</title>
 <link>http://www.howtoforge.org/faq/6_3_en.html</link>
 <description>&lt;p&gt;If your MySQL user has a password:&lt;/p&gt;
&lt;p class=&quot;command&quot;&gt;mysqldump -h localhost -u [MySQL user, e.g. root] -p[database password] -c --add-drop-table --add-locks --all
--quick --lock-tables [name of the database] &amp;gt; sqldump.sql&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Please note:&lt;/b&gt;&amp;nbsp; there&#039;s no space between &lt;span class=&quot;system&quot;&gt;-p&lt;/span&gt; and the password!&lt;/p&gt;&lt;p&gt;If there&#039;s no password:&lt;/p&gt;
&lt;p class=&quot;command&quot;&gt;mysqldump -h localhost -u [MySQL user, e.g. root] -c --add-drop-table --add-locks --all --quick --lock-tables
[name of the database] &amp;gt; sqldump.sql&lt;/p&gt;
&lt;a href=&quot;http://www.howtoforge.org/faq/6_3_en.html&quot; title=&quot;Read the rest of this posting.&quot; class=&quot;read-more&quot;&gt;Read more...&lt;/a&gt;</description>
 <category domain="http://www.howtoforge.org/taxonomy/term/65">MySQL</category>
 <pubDate>Mon, 07 Aug 2006 17:16:16 +0200</pubDate>
 <guid>http://www.howtoforge.org/faq/6_3_en.html</guid>
 <comments>http://www.howtoforge.org/faq/6_3_en.html#comment</comments>
</item>
</channel>
</rss>
