<?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: remote mySQL access, via SSH port forwarding</title>
	<atom:link href="http://uneasysilence.com/archive/2007/06/11174/feed/" rel="self" type="application/rss+xml" />
	<link>http://uneasysilence.com/archive/2007/06/11174/</link>
	<description></description>
	<lastBuildDate>Sat, 07 Nov 2009 15:32:51 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jesse</title>
		<link>http://uneasysilence.com/archive/2007/06/11174/comment-page-1/#comment-396701</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Mon, 10 Sep 2007 14:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://uneasysilence.com/archive/2007/06/11174/#comment-396701</guid>
		<description>OK problem solved. The port was forwarded to 127.0.0.1 not to localhost. When I configured odbc for 127.0.0.1 instead it worked like a charm.</description>
		<content:encoded><![CDATA[<p>OK problem solved. The port was forwarded to 127.0.0.1 not to localhost. When I configured odbc for 127.0.0.1 instead it worked like a charm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://uneasysilence.com/archive/2007/06/11174/comment-page-1/#comment-396689</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Mon, 10 Sep 2007 11:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://uneasysilence.com/archive/2007/06/11174/#comment-396689</guid>
		<description>Beautiful explanation! Unfortunately, my host doesn&#039;t have mySQL running locally either, I get an Access Denied for user@localhost Error. David how did you make a remote tunnel to the mysql server?

PS. I used Putty and it worked fine. There are instructions here http://www.cs.uu.nl/technical/services/ssh/putty/puttyfw.html
I don&#039;t know why I didn&#039;t get the error when using Putty, perhaps Putty somehow alters the originating hostname or something?</description>
		<content:encoded><![CDATA[<p>Beautiful explanation! Unfortunately, my host doesn&#8217;t have mySQL running locally either, I get an Access Denied for user@localhost Error. David how did you make a remote tunnel to the mysql server?</p>
<p>PS. I used Putty and it worked fine. There are instructions here <a href="http://www.cs.uu.nl/technical/services/ssh/putty/puttyfw.html" rel="nofollow">http://www.cs.uu.nl/technical/services/ssh/putty/puttyfw.html</a><br />
I don&#8217;t know why I didn&#8217;t get the error when using Putty, perhaps Putty somehow alters the originating hostname or something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://uneasysilence.com/archive/2007/06/11174/comment-page-1/#comment-392964</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 10 Jul 2007 03:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://uneasysilence.com/archive/2007/06/11174/#comment-392964</guid>
		<description>This works great, but you can also put the forwarding scheme in your ssh config file, located at &lt;code&gt;~/.ssh/config&lt;/code&gt;, using the directives listed in the man pages for &lt;code&gt;ssh_config&lt;/code&gt;.

&lt;em&gt;My&lt;/em&gt; host, however, doesn&#039;t have mySQL running locally, so just forwarding the local port to the remote machine isn&#039;t sufficient. Instead, mySQL connections that originate from the server go through another internal hostname on 3308 to the independent mysqld process. That means that I need a remote tunnel to &lt;em&gt;that&lt;/em&gt; hostname before I can setup the port forwarding on my local machine. Yay for security! woot.

[Edit] - Noticed you weren&#039;t passing comments through Textile... ;)</description>
		<content:encoded><![CDATA[<p>This works great, but you can also put the forwarding scheme in your ssh config file, located at <code>~/.ssh/config</code>, using the directives listed in the man pages for <code>ssh_config</code>.</p>
<p><em>My</em> host, however, doesn&#8217;t have mySQL running locally, so just forwarding the local port to the remote machine isn&#8217;t sufficient. Instead, mySQL connections that originate from the server go through another internal hostname on 3308 to the independent mysqld process. That means that I need a remote tunnel to <em>that</em> hostname before I can setup the port forwarding on my local machine. Yay for security! woot.</p>
<p>[Edit] &#8211; Noticed you weren&#8217;t passing comments through Textile&#8230; ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://uneasysilence.com/archive/2007/06/11174/comment-page-1/#comment-391317</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Wed, 20 Jun 2007 20:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://uneasysilence.com/archive/2007/06/11174/#comment-391317</guid>
		<description>Hey, might want to check out Navicat.. its a GUI to mysql (client not a web app) and has several nifty ways to access a remote database.

It supports SSH tunnels (very easy to setup in the program and you dont need an SSH client installed)
It supports uploading a php file to the server which it then integrates with (No ssh? no problem)

I have been using it a while now and have to say I love it, give it a try and you wont have to setup your ssh tunnels anymore just for database access.</description>
		<content:encoded><![CDATA[<p>Hey, might want to check out Navicat.. its a GUI to mysql (client not a web app) and has several nifty ways to access a remote database.</p>
<p>It supports SSH tunnels (very easy to setup in the program and you dont need an SSH client installed)<br />
It supports uploading a php file to the server which it then integrates with (No ssh? no problem)</p>
<p>I have been using it a while now and have to say I love it, give it a try and you wont have to setup your ssh tunnels anymore just for database access.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jar_jar</title>
		<link>http://uneasysilence.com/archive/2007/06/11174/comment-page-1/#comment-391309</link>
		<dc:creator>jar_jar</dc:creator>
		<pubDate>Wed, 20 Jun 2007 19:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://uneasysilence.com/archive/2007/06/11174/#comment-391309</guid>
		<description>Very tangential, but so long as you are sshing from your treo, you should really check out pssh. I find it to be a lot more reliable than tussh.</description>
		<content:encoded><![CDATA[<p>Very tangential, but so long as you are sshing from your treo, you should really check out pssh. I find it to be a lot more reliable than tussh.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
