<?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>XinHuang</title>
	<atom:link href="http://www.xhuang.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xhuang.net</link>
	<description>在路上</description>
	<lastBuildDate>Sun, 20 May 2012 13:55:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>dropbox备份vps数据</title>
		<link>http://www.xhuang.net/201205/linux/backup_data_use_dropbox/</link>
		<comments>http://www.xhuang.net/201205/linux/backup_data_use_dropbox/#comments</comments>
		<pubDate>Sun, 20 May 2012 13:55:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=291</guid>
		<description><![CDATA[听说buyvm的一个node挂了，数据全丢，默哀一下。。。 俺贴一下自己的vps备份方式 1.文件备份 dropbox是最佳选择，每天定时启动dropbox客户端，半小时后kill掉。 具体可以参考这http://www.mgrei.com/archives/488.html 2.数据备份 mysql最easy，tar定时打包，然后放到dropbox的目录下，让dropbox帮你同步。 贴一下我的mysql备份脚本 DATE=`date +%Y-%m-%d-%H` cd /var/lib/mysql #mysql的data目录 tar -cvzf /root/backup/$DATE.tar.gz db1 db2 #各个要备份的db，空格隔开]]></description>
			<content:encoded><![CDATA[<p>听说buyvm的一个node挂了，数据全丢，默哀一下。。。</p>
<p>俺贴一下自己的vps备份方式</p>
<p>1.文件备份</p>
<p>dropbox是最佳选择，每天定时启动dropbox客户端，半小时后kill掉。</p>
<p>具体可以参考这<a title="http://www.mgrei.com/archives/488.html" href="http://www.mgrei.com/archives/488.html" target="_blank">http://www.mgrei.com/archives/488.html</a></p>
<p>2.数据备份</p>
<p>mysql最easy，tar定时打包，然后放到dropbox的目录下，让dropbox帮你同步。</p>
<p>贴一下我的mysql备份脚本</p>
<p>DATE=`date +%Y-%m-%d-%H`<br />
cd /var/lib/mysql #mysql的data目录<br />
tar -cvzf /root/backup/$DATE.tar.gz db1 db2 #各个要备份的db，空格隔开</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201205/linux/backup_data_use_dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AntiDnsPollution</title>
		<link>http://www.xhuang.net/201205/network/antidnspollution/</link>
		<comments>http://www.xhuang.net/201205/network/antidnspollution/#comments</comments>
		<pubDate>Thu, 10 May 2012 13:24:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[AntiDnsPollution]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[污染]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=288</guid>
		<description><![CDATA[对党国的dns污染深恶痛绝的人可用 原理：DNS污染的数据包并不是在网络数据包经过的路由器上，而是在其旁路产生的。所以DNS污染并无法阻止正确的DNS解析结果返回，但由于旁路产生的数据包发回的速度较国外DNS服务器发回的快，操作系统认为第一个收到的数据包就是返回结果，从而忽略其后收到的数据包，从而使得DNS污染得逞。而某些国家的DNS污染在一段时期内的污染IP却是固定不变的，从而可以忽略返回结果是这些IP地址的数据包，直接解决DNS污染的问题。 http://www.williamlong.info/archives/2184.html]]></description>
			<content:encoded><![CDATA[<p>对党国的dns污染深恶痛绝的人可用</p>
<p>原理：DNS污染的数据包并不是在网络数据包经过的路由器上，而是在其旁路产生的。所以DNS污染并无法阻止正确的DNS解析结果返回，但由于旁路产生的数据包发回的速度较国外DNS服务器发回的快，操作系统认为第一个收到的数据包就是返回结果，从而忽略其后收到的数据包，从而使得DNS污染得逞。而某些国家的DNS污染在一段时期内的污染IP却是固定不变的，从而可以忽略返回结果是这些IP地址的数据包，直接解决DNS污染的问题。</p>
<p>http://www.williamlong.info/archives/2184.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201205/network/antidnspollution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nginx+tomcat with ajp</title>
		<link>http://www.xhuang.net/201205/linux/nginx_tomcat-with-ajp/</link>
		<comments>http://www.xhuang.net/201205/linux/nginx_tomcat-with-ajp/#comments</comments>
		<pubDate>Thu, 10 May 2012 05:24:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[ajp]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[tomat]]></category>
		<category><![CDATA[真实ip]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=283</guid>
		<description><![CDATA[配置nginx+tomcat，之前中间还多了一层apache用来做ajp连接，如果直接连的话只能用http，但是后台的tomcat在不修改代码的情况下无法获取真实ip，于是google之，发现有nginx ajp module(https://github.com/yaoweibin/nginx_ajp_module/)，于是下载，patch，重新编译nginx并安装，一切解决了。。。]]></description>
			<content:encoded><![CDATA[<p>配置nginx+tomcat，之前中间还多了一层apache用来做ajp连接，如果直接连的话只能用http，但是后台的tomcat在不修改代码的情况下无法获取真实ip，于是google之，发现有nginx ajp module(https://github.com/yaoweibin/nginx_ajp_module/)，于是下载，patch，重新编译nginx并安装，一切解决了。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201205/linux/nginx_tomcat-with-ajp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SimpleSSHProxy-Mac下的ssh proxy 客户端</title>
		<link>http://www.xhuang.net/201204/network/simplesshproxy_one_of_the_best_ssh-proxy_client/</link>
		<comments>http://www.xhuang.net/201204/network/simplesshproxy_one_of_the_best_ssh-proxy_client/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 13:33:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[SimpleSSHProxy]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=280</guid>
		<description><![CDATA[发现公司的网络不稳定，连上ssh后经常断线。平时还看不出来，但是一旦用ssh proxy的时候就非常讨厌，一边查资料一边干活，干会再来查资料的时候ssh连接已经被断开了，只能重连，很是不方便。 搜了一下，发现这个小软件，号称可以自动重连，貌似不错，试用中。。。 加个链接，可惜被墙了，墙内用户不必点击 http://ivsays.appspot.com/2011/05/16/get-SimpleSSHProxy.html]]></description>
			<content:encoded><![CDATA[<p>发现公司的网络不稳定，连上ssh后经常断线。平时还看不出来，但是一旦用ssh proxy的时候就非常讨厌，一边查资料一边干活，干会再来查资料的时候ssh连接已经被断开了，只能重连，很是不方便。<br />
搜了一下，发现这个小软件，号称可以自动重连，貌似不错，试用中。。。<br />
加个链接，可惜被墙了，墙内用户不必点击<br />
<a href="http://ivsays.appspot.com/2011/05/16/get-SimpleSSHProxy.html">http://ivsays.appspot.com/2011/05/16/get-SimpleSSHProxy.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201204/network/simplesshproxy_one_of_the_best_ssh-proxy_client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试Varnish作为缓存服务器</title>
		<link>http://www.xhuang.net/201204/linux/set_varnish_as_cache_server/</link>
		<comments>http://www.xhuang.net/201204/linux/set_varnish_as_cache_server/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 13:50:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[负载均衡]]></category>
		<category><![CDATA[cdn]]></category>
		<category><![CDATA[dnspod]]></category>
		<category><![CDATA[Varnish]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=277</guid>
		<description><![CDATA[一直听说Varnish相对于squid来说性能提高了很多，周末查了些资料，配合dnspod上了Varnish。 原本blog在日本的一台vps上，电信速度不错，但是联通杯具，正好最近购买了一台香港的vps作为中转，小水管但是不管电信联通基本都能满速，故把联通的解析指向香港vps。 参考如下： http://www.centos.bz/2012/01/dns-geoip-nginx-varnish-cdn/ http://www.cnblogs.com/littlehb/archive/2012/02/12/2347767.html http://www.gaojinbo.com/ubuntu-varnish安装配置文档.html]]></description>
			<content:encoded><![CDATA[<p>一直听说Varnish相对于squid来说性能提高了很多，周末查了些资料，配合dnspod上了Varnish。<br />
原本blog在日本的一台vps上，电信速度不错，但是联通杯具，正好最近购买了一台香港的vps作为中转，小水管但是不管电信联通基本都能满速，故把联通的解析指向香港vps。<br />
参考如下：</p>
<p>http://www.centos.bz/2012/01/dns-geoip-nginx-varnish-cdn/</p>
<p>http://www.cnblogs.com/littlehb/archive/2012/02/12/2347767.html</p>
<p>http://www.gaojinbo.com/ubuntu-varnish安装配置文档.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201204/linux/set_varnish_as_cache_server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dropbox免费升级23GB</title>
		<link>http://www.xhuang.net/201204/android/dropbox_free_23gb/</link>
		<comments>http://www.xhuang.net/201204/android/dropbox_free_23gb/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 12:16:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[23GB]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[HTC]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=274</guid>
		<description><![CDATA[http://forum.xda-developers.com/showthread.php?t=1551356 HTC手机专用，据说非HTC也可，唯一的遗憾是只能2年]]></description>
			<content:encoded><![CDATA[<p>http://forum.xda-developers.com/showthread.php?t=1551356</p>
<p>HTC手机专用，据说非HTC也可，唯一的遗憾是只能2年</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201204/android/dropbox_free_23gb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lady gaga</title>
		<link>http://www.xhuang.net/201202/other/lady-gaga/</link>
		<comments>http://www.xhuang.net/201202/other/lady-gaga/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 01:23:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[乱七八糟]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=270</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://v.yunshipan.com/huang/player/getPlayer.shtml?t=rdGArdGArna6"  width="360"  height="270"  frameborder="0" scrolling ="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201202/other/lady-gaga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ssh?vpn?gae才是王道!</title>
		<link>http://www.xhuang.net/201202/network/gae_is_the_best/</link>
		<comments>http://www.xhuang.net/201202/network/gae_is_the_best/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 12:57:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=263</guid>
		<description><![CDATA[为了自由访问网络，多年来购买了多个虚拟主机及vps，不过在访问youtube的时候还是经常会卡，当然偶尔也会发飙无障碍720p。 不过自从gae后一切都变了，虽然延时还是up 200ms，不过youtube的480p完全无压力，虽然720p还是会卡。 还有一个比较好的是稳定，我在家里的nas上启了一个进程，代理家里所有出国流量，到现在已经一个星期了，完全不断线！ 当然最重要的还是免费，稍微懂点电脑技术即可，完全hold住啊！ root@nas:/var/log# screen -ls There is a screen on: 15501.pts-0.nas (Detached) 1 Socket in /tmp/screens/S-root. root@nas:/var/log# netstat -an &#124; grep 8087 tcp 0 0 192.168.128.15:8087 0.0.0.0:* LISTEN]]></description>
			<content:encoded><![CDATA[<p>为了自由访问网络，多年来购买了多个虚拟主机及vps，不过在访问youtube的时候还是经常会卡，当然偶尔也会发飙无障碍720p。</p>
<p>不过自从gae后一切都变了，虽然延时还是up 200ms，不过youtube的480p完全无压力，虽然720p还是会卡。</p>
<p>还有一个比较好的是稳定，我在家里的nas上启了一个进程，代理家里所有出国流量，到现在已经一个星期了，完全不断线！</p>
<p>当然最重要的还是免费，稍微懂点电脑技术即可，完全hold住啊！</p>
<p>root@nas:/var/log# screen -ls<br />
There is a screen on:<br />
15501.pts-0.nas (Detached)<br />
1 Socket in /tmp/screens/S-root.</p>
<p>root@nas:/var/log# netstat -an | grep 8087<br />
tcp 0 0 192.168.128.15:8087 0.0.0.0:* LISTEN</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201202/network/gae_is_the_best/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>android版的特殊opera</title>
		<link>http://www.xhuang.net/201202/network/special_opera_for_android/</link>
		<comments>http://www.xhuang.net/201202/network/special_opera_for_android/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 14:49:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=259</guid>
		<description><![CDATA[今天看到有个评测，号称在android平台上opera占用内存最小，于是就找了个opera来用用 之前知道这东西看网页是经过中转服务器压缩的，刚进中国的时候中转服务器在国外，基本可以上任何网站，后来才改的，于是千辛万苦找了这个版本，果然很好，省得我开代理了，share一下 opera6.5特殊版for android]]></description>
			<content:encoded><![CDATA[<p>今天看到有个评测，号称在android平台上opera占用内存最小，于是就找了个opera来用用</p>
<p>之前知道这东西看网页是经过中转服务器压缩的，刚进中国的时候中转服务器在国外，基本可以上任何网站，后来才改的，于是千辛万苦找了这个版本，果然很好，省得我开代理了，share一下</p>
<p><a href="http://www.xhuang.net/wp-content/uploads/2012/02/opera_mini.zip">opera6.5特殊版for android</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201202/network/special_opera_for_android/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>有史以来最快的域名备案&#8211;15分钟</title>
		<link>http://www.xhuang.net/201108/network/the_fast_beian_of_china_15_minites/</link>
		<comments>http://www.xhuang.net/201108/network/the_fast_beian_of_china_15_minites/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 12:51:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[生活]]></category>
		<category><![CDATA[备案]]></category>
		<category><![CDATA[最快]]></category>

		<guid isPermaLink="false">http://www.xhuang.net/?p=255</guid>
		<description><![CDATA[今天公司一个新域名上线，联系了一下客服mm，因为之前已经备案过，所以资料isp那都有，于是开始互相确认，15分钟后突然客服mm发了这么一个消息：已经过了。 一口血啊，离我跟她确认上一条消息才15分钟啊，尼玛15分钟就备案好了啊！ 这算有史以来最快的域名备案不？]]></description>
			<content:encoded><![CDATA[<p>今天公司一个新域名上线，联系了一下客服mm，因为之前已经备案过，所以资料isp那都有，于是开始互相确认，15分钟后突然客服mm发了这么一个消息：已经过了。</p>
<p>一口血啊，离我跟她确认上一条消息才15分钟啊，尼玛15分钟就备案好了啊！</p>
<p>这算有史以来最快的域名备案不？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xhuang.net/201108/network/the_fast_beian_of_china_15_minites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.176 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-21 00:25:24 -->

