<?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>&#8235;תגובות לפוסט: &#34;הבלוג&#34;&#8236;</title>
	<atom:link href="http://www.interhost.co.il/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.interhost.co.il/blog</link>
	<description>&#8235;הכל על שרתים, תקשורת ולינוקס&#8236;</description> 	<lastBuildDate>Tue, 22 Nov 2011 12:18:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>&#8235;תגובה לפוסט: &#34;עבודה עם mysql-proxy&#34; מאת &#34;Erel Segal&#34;&#8236;</title>
		<link>http://www.interhost.co.il/blog/2011/05/mysql-proxy/comment-page-1/#comment-639</link>
		<dc:creator>&#8235;Erel Segal&#8236;</dc:creator>		<pubDate>Tue, 22 Nov 2011 12:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.interhost.co.il/blog/?p=192#comment-639</guid>
		<description>&#8235;My program works with a remote MySQL server, and I want to create a local proxy server on my computer in order to make things faster (pool connections, cache queries etc.). I went by the documentation: http://dev.mysql.com/doc/refman/5.1/en/mysql-proxy.html

I ran, on one console:

    erelsgl@ubuntu:~$ mysql-proxy --proxy-backend-addresses=$MYSQL --log-level=debug2011-11-22 09:43:30: (message) mysql-proxy 0.8.2 started
    2011-11-22 09:43:30: (debug) max open file-descriptors = 1024
    2011-11-22 09:43:30: (message) proxy listening on port :4040
    2011-11-22 09:43:30: (message) added read/write backend: qa-srv:3308

And on another console:

    erelsgl@ubuntu:~$ mysql --user root --host=localhost --port=4040
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 81
    Server version: 5.1.41-3ubuntu12.10 (Ubuntu)
    
    Type &#039;help;&#039; or &#039;\h&#039; for help. Type &#039;\c&#039; to clear the current input statement.
    
    mysql&gt; show databases;

However, instead of seeing the databases on the remote server (qa-srv) I saw the databases on my local server! 

I also tried this:

    erelsgl@ubuntu:~$ mysql --user root --host=qa-srv --port=4040
    ERROR 2003 (HY000): Can&#039;t connect to MySQL server on &#039;qa-srv&#039; (111)

I also tried running the proxy instead of the mysql daemon:

    erelsgl@ubuntu:~$ sudo service mysql stop
    mysql stop/waiting
    erelsgl@ubuntu:~$ mysql-proxy --proxy-backend-addresses=$MYSQL --log-level=debug --proxy-address=0.0.0.0:3306
    2011-11-22 14:14:25: (message) mysql-proxy 0.8.2 started
    2011-11-22 14:14:25: (debug) max open file-descriptors = 1024
    2011-11-22 14:14:25: (message) proxy listening on port 0.0.0.0:3306
    2011-11-22 14:14:25: (message) added read/write backend: qa-srv:3308

And on another console:

    erelsgl@ubuntu:~$ mysql --user root
    ERROR 2002 (HY000): Can&#039;t connect to local MySQL server through socket &#039;/var/run/mysqld/mysqld.sock&#039; (2)

How can I tell my mysql client to connect to the remote server via the local proxy?&#8236;</description> 		<content:encoded><![CDATA[<p>My program works with a remote MySQL server, and I want to create a local proxy server on my computer in order to make things faster (pool connections, cache queries etc.). I went by the documentation: <a href="http://dev.mysql.com/doc/refman/5.1/en/mysql-proxy.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/mysql-proxy.html</a></p>
<p>I ran, on one console:</p>
<p>    erelsgl@ubuntu:~$ mysql-proxy &#8211;proxy-backend-addresses=$MYSQL &#8211;log-level=debug2011-11-22 09:43:30: (message) mysql-proxy 0.8.2 started<br />
    2011-11-22 09:43:30: (debug) max open file-descriptors = 1024<br />
    2011-11-22 09:43:30: (message) proxy listening on port :4040<br />
    2011-11-22 09:43:30: (message) added read/write backend: qa-srv:3308</p>
<p>And on another console:</p>
<p>    erelsgl@ubuntu:~$ mysql &#8211;user root &#8211;host=localhost &#8211;port=4040<br />
    Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
    Your MySQL connection id is 81<br />
    Server version: 5.1.41-3ubuntu12.10 (Ubuntu)</p>
<p>    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.</p>
<p>    mysql&gt; show databases;</p>
<p>However, instead of seeing the databases on the remote server (qa-srv) I saw the databases on my local server! </p>
<p>I also tried this:</p>
<p>    erelsgl@ubuntu:~$ mysql &#8211;user root &#8211;host=qa-srv &#8211;port=4040<br />
    ERROR 2003 (HY000): Can't connect to MySQL server on 'qa-srv' (111)</p>
<p>I also tried running the proxy instead of the mysql daemon:</p>
<p>    erelsgl@ubuntu:~$ sudo service mysql stop<br />
    mysql stop/waiting<br />
    erelsgl@ubuntu:~$ mysql-proxy &#8211;proxy-backend-addresses=$MYSQL &#8211;log-level=debug &#8211;proxy-address=0.0.0.0:3306<br />
    2011-11-22 14:14:25: (message) mysql-proxy 0.8.2 started<br />
    2011-11-22 14:14:25: (debug) max open file-descriptors = 1024<br />
    2011-11-22 14:14:25: (message) proxy listening on port 0.0.0.0:3306<br />
    2011-11-22 14:14:25: (message) added read/write backend: qa-srv:3308</p>
<p>And on another console:</p>
<p>    erelsgl@ubuntu:~$ mysql &#8211;user root<br />
    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)</p>
<p>How can I tell my mysql client to connect to the remote server via the local proxy?</p>
]]></content:encoded>
	</item>
	<item>
		<title>&#8235;תגובה לפוסט: &#34;התקנת ioncube בלינוקס&#34; מאת &#34;newuser&#34;&#8236;</title>
		<link>http://www.interhost.co.il/blog/2011/07/%d7%94%d7%aa%d7%a7%d7%a0%d7%aa-ioncube-%d7%91%d7%9c%d7%99%d7%a0%d7%95%d7%a7%d7%a1/comment-page-1/#comment-487</link>
		<dc:creator>&#8235;newuser&#8236;</dc:creator>		<pubDate>Thu, 01 Sep 2011 12:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.interhost.co.il/blog/?p=229#comment-487</guid>
		<description>&#8235;הסתדרתי תודה רבה.&#8236;</description> 		<content:encoded><![CDATA[<p>הסתדרתי תודה רבה.</p>
]]></content:encoded>
	</item>
	<item>
		<title>&#8235;תגובה לפוסט: &#34;התקנת ioncube בלינוקס&#34; מאת &#34;newuser&#34;&#8236;</title>
		<link>http://www.interhost.co.il/blog/2011/07/%d7%94%d7%aa%d7%a7%d7%a0%d7%aa-ioncube-%d7%91%d7%9c%d7%99%d7%a0%d7%95%d7%a7%d7%a1/comment-page-1/#comment-486</link>
		<dc:creator>&#8235;newuser&#8236;</dc:creator>		<pubDate>Thu, 01 Sep 2011 12:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.interhost.co.il/blog/?p=229#comment-486</guid>
		<description>&#8235;שהרצתי את הקובץ loader-wizard.php
הוא אכן זיהה שמותקן לי על השרת ionCube Loader.
אך הוא כותב ככה לאחר הריצה:
Loader Installed

The ionCube Loader version 4.0.7 for PHP 5.3 is already installed but it is an old version. It is recommended that the Loader be upgraded to the latest version if possible.

Loader Upgrade Instructions

To upgrade from version 4.0.7 to version 4.0.10 of the ionCube Loader, please replace your existing loader file, ioncube_loader_lin_5.3.so, with the file of the same name from one of the following packages:

מה עליי לעשות במיקרה הזה?
להחליף את הקובץ הזה? ionCube Loader version 4.0.7
אם כן היכן הוא נמצא?&#8236;</description> 		<content:encoded><![CDATA[<p>שהרצתי את הקובץ loader-wizard.php<br />
הוא אכן זיהה שמותקן לי על השרת ionCube Loader.<br />
אך הוא כותב ככה לאחר הריצה:<br />
Loader Installed</p>
<p>The ionCube Loader version 4.0.7 for PHP 5.3 is already installed but it is an old version. It is recommended that the Loader be upgraded to the latest version if possible.</p>
<p>Loader Upgrade Instructions</p>
<p>To upgrade from version 4.0.7 to version 4.0.10 of the ionCube Loader, please replace your existing loader file, ioncube_loader_lin_5.3.so, with the file of the same name from one of the following packages:</p>
<p>מה עליי לעשות במיקרה הזה?<br />
להחליף את הקובץ הזה? ionCube Loader version 4.0.7<br />
אם כן היכן הוא נמצא?</p>
]]></content:encoded>
	</item>
	<item>
		<title>&#8235;תגובה לפוסט: &#34;יצירת חשבון דואר ב-Microsoft Outlook 2007&#34; מאת &#34;דמיטרי שרמן&#34;&#8236;</title>
		<link>http://www.interhost.co.il/blog/2010/05/%d7%99%d7%a6%d7%99%d7%a8%d7%aa-%d7%97%d7%a9%d7%91%d7%95%d7%9f-%d7%93%d7%95%d7%90%d7%a8-%d7%91-microsoft-outlook-2007/comment-page-1/#comment-150</link>
		<dc:creator>&#8235;דמיטרי שרמן&#8236;</dc:creator>		<pubDate>Mon, 28 Jun 2010 12:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.interhost.co.il/blog/?p=136#comment-150</guid>
		<description>&#8235;כשמגדירים חשבון דואר של שרת PLESK, היוזר למייל הוא כתובת המייל המלאה כפי שהוגדרה בפנל של PLESK עם הסיסמא שהוגדרה דרך הפנל.
את התיבות מגדירים בדומה לDIRECTADMIN. אך אין תיבה ראשית שבאה עם החשבון.&#8236;</description> 		<content:encoded><![CDATA[<p>כשמגדירים חשבון דואר של שרת PLESK, היוזר למייל הוא כתובת המייל המלאה כפי שהוגדרה בפנל של PLESK עם הסיסמא שהוגדרה דרך הפנל.<br />
את התיבות מגדירים בדומה לDIRECTADMIN. אך אין תיבה ראשית שבאה עם החשבון.</p>
]]></content:encoded>
	</item>
	<item>
		<title>&#8235;תגובה לפוסט: &#34;ברוכים הבאים לבלוג המקצועי שלנו על שרתים ותקשורת!&#34; מאת &#34;admin&#34;&#8236;</title>
		<link>http://www.interhost.co.il/blog/2009/10/hello-world/comment-page-1/#comment-3</link>
		<dc:creator>&#8235;admin&#8236;</dc:creator>		<pubDate>Mon, 26 Oct 2009 08:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.interhost.co.il/blog/?p=1#comment-3</guid>
		<description>&#8235;בדיקת תגובה!&#8236;</description> 		<content:encoded><![CDATA[<p>בדיקת תגובה!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

