<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>viva&#039;s blog</title>
	<link>http://vivaz.net</link>
	<description>Ride The Wind</description>
	<lastBuildDate>Wed, 01 Jun 2011 01:49:11 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.1.3" -->

	<item>
		<title>Install Ganglia 3.1.7 @Centos5.4_x64</title>
		<description><![CDATA[confuse-2.7.tar.gz libconfuse-2.6-2.el5.rf.x86_64.rpm libconfuse-devel-2.6-2.el5.rf.x86_64.rpm rrdtool-1.4.4.tar.gz ganglia-3.1.7.tar.gz apr-1.2.7-11.el5_5.3.x86_64.rpm apr-devel-1.2.7-11.el5_5.3.x86_64.rpm tar -zxf confuse-2.7.tar.gz cd confuse-2.7 ./configure make make install rpm -ivh libconfuse-2.6-2.el5.rf.x86_64.rpm rpm -ivh apr-1.2.7-11.el5_5.3.x86_64.rpm rpm -ivh  apr-devel-1.2.7-11.el5_5.3.x86_64.rpm tar -zxf rrdtool-1.4.4.tar.gz cd rrdtool-1.4.4 ./configure &#8211;prefix=/usr/local/rrdtool ./configure make &#38;&#38; make install &#160; tar -zxvf ganglia-3.1.7.tar.gz &#8230;<p class="read-more"><a href="http://vivaz.net/2011/06/install-ganglia-3-1-7-centos5-4_x64/">Read more &#187;</a></p>]]></description>
		<link>http://vivaz.net/2011/06/install-ganglia-3-1-7-centos5-4_x64/</link>
			</item>
	<item>
		<title>install pptpd vpn server @linodn/@aws</title>
		<description><![CDATA[@aws // amazon instance #wget https://gist.github.com/raw/666241/e8f3030a9e7066b8deb0a3d9ec761360e2d94227/pptpd.sh #sh pptpd.sh #vi /etc/ppp/chap-secrets # Secrets for authentication using CHAP # client        server  secret                  IP addresses username  pptpd  passwd * set security groups &#8230;<p class="read-more"><a href="http://vivaz.net/2010/11/install-pptpd-vpn-server-linodnaws/">Read more &#187;</a></p>]]></description>
		<link>http://vivaz.net/2010/11/install-pptpd-vpn-server-linodnaws/</link>
			</item>
	<item>
		<title>HAProxy with Keepalived</title>
		<description><![CDATA[Internet ↓ firewall(ssg520) ↓ vip 10.20.0.100 (keepalived) ↓ haproxy A 10.20.0.12  + haproxy B 10.20.0.11 ↓ web* 3 (10.20.0.100-103) &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- haproxy A setting files # vi /opt/haproxy.cfg global maxconn 5120 chroot /usr/local/haproxy group nobody user nobody daemon quiet #nbproc 8 defaults &#8230;<p class="read-more"><a href="http://vivaz.net/2010/10/haproxy-with-keepalived/">Read more &#187;</a></p>]]></description>
		<link>http://vivaz.net/2010/10/haproxy-with-keepalived/</link>
			</item>
	<item>
		<title>My new Cellphone</title>
		<description><![CDATA[Moto Milestone]]></description>
		<link>http://vivaz.net/2010/03/my-new-cellphone/</link>
			</item>
	<item>
		<title>a logrotate scripts</title>
		<description><![CDATA[logrotate.sh #!/bin/bash cd `dirname $0` d=`date +%Y%m%d` d7=`date -d’7 day ago’ +%Y%m%d` cp tu.log tu.log.${d} echo “” &#62; tu.log rm -rf tu.log.${d7} dirname $0 是代表脚本所在目录]]></description>
		<link>http://vivaz.net/2010/03/a-logrotate-scripts/</link>
			</item>
	<item>
		<title>Use cacti monitor http online users</title>
		<description><![CDATA[1.vi /etc/snmp/snmpd.conf, add scripts extend .1.3.6.1.4.1.2021.50 tuhttp /bin/bash /opt/httpd2/conf/tuhttp.sh 2.vi tuhttp.sh #!/bin/bash num=$(ps -e &#124;grep http&#124;grep -v grep&#124;grep -v jkhttp&#124;wc -l) #num=$(grep “ONLINE USERS=” /opt/photo/log/tu.log &#124; sed ‘$!d’ &#124; sed ’s/\(.*\)USERS=\([0-9]*\)$/\2/’) echo $num echo OK ps: tu.log is my system &#8230;<p class="read-more"><a href="http://vivaz.net/2010/03/use-cacti-monitor-http-online-users/">Read more &#187;</a></p>]]></description>
		<link>http://vivaz.net/2010/03/use-cacti-monitor-http-online-users/</link>
			</item>
	<item>
		<title>Compile Memcached + Php extension at Centos5.2 x64</title>
		<description><![CDATA[1.get source wget http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz wget http://www.monkey.org/~provos/libevent-1.4.13-stable.tar.gz 2.compile libevent tar -zxvf libevent-1.4.13-stable.tar.gz cd libevent-1.4.13-stable ./configure make make install 3.compile memcached tar -zxvf memcached-1.4.4.tar.gz cd memcached-1.4.4 ./configure –prefix=/opt/memcached –with-libevent make make install 4.start memcached cd /opt/memcached/bin ./memcached -d -m 256 -p 11211 &#8230;<p class="read-more"><a href="http://vivaz.net/2010/02/compile-memcached-php-extension-at-centos5-2-x64/">Read more &#187;</a></p>]]></description>
		<link>http://vivaz.net/2010/02/compile-memcached-php-extension-at-centos5-2-x64/</link>
			</item>
	<item>
		<title>FF13全英文奖杯对照及获得方法</title>
		<description><![CDATA[http://bbs.a9vg.com/read.php?tid=1380341&#38;fpage=1 奖杯类别 奖杯描述 获得方法 白金 Ultimate 所有奖杯全部获得 铜 Instruments of Fate 序章剧情后获得 铜 Instruments of Dissent 第2章剧情后获得 铜 Instruments of Tragedy 第3章剧情后获得 铜 Instruments of Flight 第4章剧情后获得 铜 Instruments of Vengeance 第5章剧情后获得 铜 Instruments of Survival 第6章剧情后获得 铜 Instruments of &#8230;<p class="read-more"><a href="http://vivaz.net/2010/01/ff13%e5%85%a8%e8%8b%b1%e6%96%87%e5%a5%96%e6%9d%af%e5%af%b9%e7%85%a7%e5%8f%8a%e8%8e%b7%e5%be%97%e6%96%b9%e6%b3%95/">Read more &#187;</a></p>]]></description>
		<link>http://vivaz.net/2010/01/ff13%e5%85%a8%e8%8b%b1%e6%96%87%e5%a5%96%e6%9d%af%e5%af%b9%e7%85%a7%e5%8f%8a%e8%8e%b7%e5%be%97%e6%96%b9%e6%b3%95/</link>
			</item>
	<item>
		<title>My Xmas Gift</title>
		<description><![CDATA[xmas_gift, originally uploaded by nikogoo.]]></description>
		<link>http://vivaz.net/2009/12/my-xmas-gift/</link>
			</item>
	<item>
		<title>kinder</title>
		<description><![CDATA[kinder, originally uploaded by nikogoo.]]></description>
		<link>http://vivaz.net/2009/12/kinder/</link>
			</item>
</channel>
</rss>

