<?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>“Chenjunlu&#039;s Blog”的评论</title>
	<atom:link href="http://www.chenjunlu.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chenjunlu.com</link>
	<description>记录生活的全部</description>
	<lastBuildDate>Thu, 09 Feb 2012 05:33:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Robin 对《查看已经安装的 Perl 模块》的评论</title>
		<link>http://www.chenjunlu.com/2011/07/querying-the-installed-modules-of-perl/comment-page-1/#comment-428</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Thu, 09 Feb 2012 05:33:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1982#comment-428</guid>
		<description>我使用过的，没有报错，我觉得你一定是在我博客上复制完直接粘上去的，这样有可能有字符集错误，你去掉相应的格式，再试试！</description>
		<content:encoded><![CDATA[<p>我使用过的，没有报错，我觉得你一定是在我博客上复制完直接粘上去的，这样有可能有字符集错误，你去掉相应的格式，再试试！</p>
]]></content:encoded>
	</item>
	<item>
		<title>xiaochuanjiejie 对《查看已经安装的 Perl 模块》的评论</title>
		<link>http://www.chenjunlu.com/2011/07/querying-the-installed-modules-of-perl/comment-page-1/#comment-427</link>
		<dc:creator>xiaochuanjiejie</dc:creator>
		<pubDate>Wed, 08 Feb 2012 11:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1982#comment-427</guid>
		<description>使用你的这个脚本：
    #!/usr/bin/perl
    use strict;
    use ExtUtils::Installed;

    my $inst = ExtUtils::Installed-&gt;new();
    my @modules = $inst-&gt;modules();

    foreach (@modules) {
    my $ver = $inst-&gt;version($_) &#124;&#124; “???”;
    printf( “%-12s — %s\n”, $_, $ver );
    }
    exit 0;

会产生报错：
[root@d1-gytest01 heart]# perl 2.pl 
Unrecognized character \xE2 at 2.pl line 12.

你测试过这个脚本么？你试试，用邮件沟通一下哦，谢谢。</description>
		<content:encoded><![CDATA[<p>使用你的这个脚本：<br />
    #!/usr/bin/perl<br />
    use strict;<br />
    use ExtUtils::Installed;</p>
<p>    my $inst = ExtUtils::Installed-&gt;new();<br />
    my @modules = $inst-&gt;modules();</p>
<p>    foreach (@modules) {<br />
    my $ver = $inst-&gt;version($_) || “???”;<br />
    printf( “%-12s — %s\n”, $_, $ver );<br />
    }<br />
    exit 0;</p>
<p>会产生报错：<br />
[root@d1-gytest01 heart]# perl 2.pl<br />
Unrecognized character \xE2 at 2.pl line 12.</p>
<p>你测试过这个脚本么？你试试，用邮件沟通一下哦，谢谢。</p>
]]></content:encoded>
	</item>
	<item>
		<title>马继军 对《About Me》的评论</title>
		<link>http://www.chenjunlu.com/about/comment-page-1/#comment-426</link>
		<dc:creator>马继军</dc:creator>
		<pubDate>Thu, 19 Jan 2012 01:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?page_id=78#comment-426</guid>
		<description>新年快乐！万事如意</description>
		<content:encoded><![CDATA[<p>新年快乐！万事如意</p>
]]></content:encoded>
	</item>
	<item>
		<title>Robin 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-423</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Fri, 16 Dec 2011 01:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-423</guid>
		<description>目前我介绍的方法，只能制定一种端口，可以通过修改脚本的方法实现多端口，当然最偷懒的方法就是上传多份脚本，不同文件名，然后在cacti界面下配置不同的端口！</description>
		<content:encoded><![CDATA[<p>目前我介绍的方法，只能制定一种端口，可以通过修改脚本的方法实现多端口，当然最偷懒的方法就是上传多份脚本，不同文件名，然后在cacti界面下配置不同的端口！</p>
]]></content:encoded>
	</item>
	<item>
		<title>酱油 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-422</link>
		<dc:creator>酱油</dc:creator>
		<pubDate>Thu, 15 Dec 2011 09:04:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-422</guid>
		<description>你好 我想问下 如果tomcat是多端口的 目前的监控方法是怎样的  多谢</description>
		<content:encoded><![CDATA[<p>你好 我想问下 如果tomcat是多端口的 目前的监控方法是怎样的  多谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>dream 对《理解 pkg-config 工具》的评论</title>
		<link>http://www.chenjunlu.com/2011/03/understanding-pkg-config-tool/comment-page-1/#comment-421</link>
		<dc:creator>dream</dc:creator>
		<pubDate>Thu, 15 Dec 2011 04:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1461#comment-421</guid>
		<description>我搞定了，GCC4.5以后的版本的command line顺序有变化。

这样就OK了。
gcc -o setsourcergba setsourcergba.c  $(pkg-config --cflags --libs cairo)
详见如下：
http://www.ogre3d.org/forums/viewtopic.php?f=2&amp;t=67445</description>
		<content:encoded><![CDATA[<p>我搞定了，GCC4.5以后的版本的command line顺序有变化。</p>
<p>这样就OK了。<br />
gcc -o setsourcergba setsourcergba.c  $(pkg-config &#8211;cflags &#8211;libs cairo)<br />
详见如下：<br />
<a href="http://www.ogre3d.org/forums/viewtopic.php?f=2&#038;t=67445" rel="nofollow">http://www.ogre3d.org/forums/viewtopic.php?f=2&#038;t=67445</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>dream 对《理解 pkg-config 工具》的评论</title>
		<link>http://www.chenjunlu.com/2011/03/understanding-pkg-config-tool/comment-page-1/#comment-420</link>
		<dc:creator>dream</dc:creator>
		<pubDate>Thu, 15 Dec 2011 04:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1461#comment-420</guid>
		<description>我在ubuntu 11.10系统的GCC上编译http://cairographics.org/tutorial/setsourcergba.c
这个文件出错。
ldconfig的conf我看过了正确，而且我用了ldconfig -p打印了cache的内容libcairo配置正确。
pkg-config的配置很奇怪，pc文件加到PKG_CONFIG_PATH中了。
  1 prefix=/usr
  2 exec_prefix=${prefix}
  3 libdir=${prefix}/lib/i386-linux-gnu
  4 includedir=${prefix}/include
  5 
  6 Name: cairo
  7 Description: Multi-platform 2D graphics library
  8 Version: 1.10.2
  9 
 10 Requires.private:    gobject-2.0 glib-2.0    pixman-1 &gt;= 0.18.4    fontconfig &gt;= 2.2.95 freetype2 &gt;= 9.7.3  libpng xcb-shm xcb &gt;= 1.1.92 xcb-render &gt;= 0.9.    92 xrender &gt;= 0.6 x11
 11 Libs: -L${libdir} -lcairo
 12 Libs.private:          -lz -lz
 13 Cflags: -I${includedir}/cairo
但是用--lib执行结果如下：
ubuntu:~/source$ pkg-config  --libs cairo
-lcairo
应该有的-L/usr/lib/i386-linux-gnu怎么不出来呢？

我在GCC上手动加上这个就好了。
高手帮忙看下了，谢谢


错误如下：
ubuntu:~/source$ gcc -o setsourcergba $(pkg-config --cflags --libs cairo) setsourcergba.c
/tmp/ccXvDLCB.o: In function `main&#039;:
setsourcergba.c:(.text+0x21): undefined reference to `cairo_image_surface_create&#039;
setsourcergba.c:(.text+0x31): undefined reference to `cairo_create&#039;
setsourcergba.c:(.text+0x55): undefined reference to `cairo_scale&#039;
setsourcergba.c:(.text+0x73): undefined reference to `cairo_set_source_rgb&#039;
setsourcergba.c:(.text+0x8b): undefined reference to `cairo_move_to&#039;
setsourcergba.c:(.text+0xa3): undefined reference to `cairo_line_to&#039;
setsourcergba.c:(.text+0xbb): undefined reference to `cairo_move_to&#039;
setsourcergba.c:(.text+0xd3): undefined reference to `cairo_line_to&#039;
setsourcergba.c:(.text+0xe9): undefined reference to `cairo_set_line_width&#039;
setsourcergba.c:(.text+0xf5): undefined reference to `cairo_stroke&#039;
setsourcergba.c:(.text+0x121): undefined reference to `cairo_rectangle&#039;
setsourcergba.c:(.text+0x149): undefined reference to `cairo_set_source_rgba&#039;
setsourcergba.c:(.text+0x155): undefined reference to `cairo_fill&#039;
setsourcergba.c:(.text+0x185): undefined reference to `cairo_rectangle&#039;
setsourcergba.c:(.text+0x1ad): undefined reference to `cairo_set_source_rgba&#039;
setsourcergba.c:(.text+0x1b9): undefined reference to `cairo_fill&#039;
setsourcergba.c:(.text+0x1e9): undefined reference to `cairo_rectangle&#039;
setsourcergba.c:(.text+0x211): undefined reference to `cairo_set_source_rgba&#039;
setsourcergba.c:(.text+0x21d): undefined reference to `cairo_fill&#039;
setsourcergba.c:(.text+0x231): undefined reference to `cairo_surface_write_to_png&#039;
setsourcergba.c:(.text+0x23d): undefined reference to `cairo_destroy&#039;
setsourcergba.c:(.text+0x249): undefined reference to `cairo_surface_destroy&#039;
collect2: ld returned 1 exit status
如下：
ubuntu:~/source/cairo-1.10.2$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.1/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion=&#039;Ubuntu/Linaro 4.6.1-9ubuntu3&#039; --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)</description>
		<content:encoded><![CDATA[<p>我在ubuntu 11.10系统的GCC上编译http://cairographics.org/tutorial/setsourcergba.c<br />
这个文件出错。<br />
ldconfig的conf我看过了正确，而且我用了ldconfig -p打印了cache的内容libcairo配置正确。<br />
pkg-config的配置很奇怪，pc文件加到PKG_CONFIG_PATH中了。<br />
  1 prefix=/usr<br />
  2 exec_prefix=${prefix}<br />
  3 libdir=${prefix}/lib/i386-linux-gnu<br />
  4 includedir=${prefix}/include<br />
  5<br />
  6 Name: cairo<br />
  7 Description: Multi-platform 2D graphics library<br />
  8 Version: 1.10.2<br />
  9<br />
 10 Requires.private:    gobject-2.0 glib-2.0    pixman-1 &gt;= 0.18.4    fontconfig &gt;= 2.2.95 freetype2 &gt;= 9.7.3  libpng xcb-shm xcb &gt;= 1.1.92 xcb-render &gt;= 0.9.    92 xrender &gt;= 0.6 x11<br />
 11 Libs: -L${libdir} -lcairo<br />
 12 Libs.private:          -lz -lz<br />
 13 Cflags: -I${includedir}/cairo<br />
但是用&#8211;lib执行结果如下：<br />
ubuntu:~/source$ pkg-config  &#8211;libs cairo<br />
-lcairo<br />
应该有的-L/usr/lib/i386-linux-gnu怎么不出来呢？</p>
<p>我在GCC上手动加上这个就好了。<br />
高手帮忙看下了，谢谢</p>
<p>错误如下：<br />
ubuntu:~/source$ gcc -o setsourcergba $(pkg-config &#8211;cflags &#8211;libs cairo) setsourcergba.c<br />
/tmp/ccXvDLCB.o: In function `main&#8217;:<br />
setsourcergba.c:(.text+0&#215;21): undefined reference to `cairo_image_surface_create&#8217;<br />
setsourcergba.c:(.text+0&#215;31): undefined reference to `cairo_create&#8217;<br />
setsourcergba.c:(.text+0&#215;55): undefined reference to `cairo_scale&#8217;<br />
setsourcergba.c:(.text+0&#215;73): undefined reference to `cairo_set_source_rgb&#8217;<br />
setsourcergba.c:(.text+0x8b): undefined reference to `cairo_move_to&#8217;<br />
setsourcergba.c:(.text+0xa3): undefined reference to `cairo_line_to&#8217;<br />
setsourcergba.c:(.text+0xbb): undefined reference to `cairo_move_to&#8217;<br />
setsourcergba.c:(.text+0xd3): undefined reference to `cairo_line_to&#8217;<br />
setsourcergba.c:(.text+0xe9): undefined reference to `cairo_set_line_width&#8217;<br />
setsourcergba.c:(.text+0xf5): undefined reference to `cairo_stroke&#8217;<br />
setsourcergba.c:(.text+0&#215;121): undefined reference to `cairo_rectangle&#8217;<br />
setsourcergba.c:(.text+0&#215;149): undefined reference to `cairo_set_source_rgba&#8217;<br />
setsourcergba.c:(.text+0&#215;155): undefined reference to `cairo_fill&#8217;<br />
setsourcergba.c:(.text+0&#215;185): undefined reference to `cairo_rectangle&#8217;<br />
setsourcergba.c:(.text+0x1ad): undefined reference to `cairo_set_source_rgba&#8217;<br />
setsourcergba.c:(.text+0x1b9): undefined reference to `cairo_fill&#8217;<br />
setsourcergba.c:(.text+0x1e9): undefined reference to `cairo_rectangle&#8217;<br />
setsourcergba.c:(.text+0&#215;211): undefined reference to `cairo_set_source_rgba&#8217;<br />
setsourcergba.c:(.text+0x21d): undefined reference to `cairo_fill&#8217;<br />
setsourcergba.c:(.text+0&#215;231): undefined reference to `cairo_surface_write_to_png&#8217;<br />
setsourcergba.c:(.text+0x23d): undefined reference to `cairo_destroy&#8217;<br />
setsourcergba.c:(.text+0&#215;249): undefined reference to `cairo_surface_destroy&#8217;<br />
collect2: ld returned 1 exit status<br />
如下：<br />
ubuntu:~/source/cairo-1.10.2$ gcc -v<br />
Using built-in specs.<br />
COLLECT_GCC=gcc<br />
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.1/lto-wrapper<br />
Target: i686-linux-gnu<br />
Configured with: ../src/configure -v &#8211;with-pkgversion=&#8217;Ubuntu/Linaro 4.6.1-9ubuntu3&#8242; &#8211;with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs &#8211;enable-languages=c,c++,fortran,objc,obj-c++,go &#8211;prefix=/usr &#8211;program-suffix=-4.6 &#8211;enable-shared &#8211;enable-linker-build-id &#8211;with-system-zlib &#8211;libexecdir=/usr/lib &#8211;without-included-gettext &#8211;enable-threads=posix &#8211;with-gxx-include-dir=/usr/include/c++/4.6 &#8211;libdir=/usr/lib &#8211;enable-nls &#8211;with-sysroot=/ &#8211;enable-clocale=gnu &#8211;enable-libstdcxx-debug &#8211;enable-libstdcxx-time=yes &#8211;enable-plugin &#8211;enable-objc-gc &#8211;enable-targets=all &#8211;disable-werror &#8211;with-arch-32=i686 &#8211;with-tune=generic &#8211;enable-checking=release &#8211;build=i686-linux-gnu &#8211;host=i686-linux-gnu &#8211;target=i686-linux-gnu<br />
Thread model: posix<br />
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Red Hat Cluster Suite 概览 &#124; ByPat博客专注于Linux资源分享! 对《Red Hat GFS 存储解决方案》的评论</title>
		<link>http://www.chenjunlu.com/2011/03/red-hat-gfs/comment-page-1/#comment-419</link>
		<dc:creator>Red Hat Cluster Suite 概览 &#124; ByPat博客专注于Linux资源分享!</dc:creator>
		<pubDate>Tue, 29 Nov 2011 09:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1367#comment-419</guid>
		<description>[...] &#8212; Red Hat GFS 存储解决方案 [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8212; Red Hat GFS 存储解决方案 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Robin 对《在 RHEL 5.5 下配置 Cacti 0.8.7g》的评论</title>
		<link>http://www.chenjunlu.com/2011/03/configure-cacti-0-8-7g-under-rhel-5-5/comment-page-1/#comment-418</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Tue, 08 Nov 2011 00:40:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1415#comment-418</guid>
		<description>呵呵,我当时安装的时候0.8.7g是最新的版本啦~</description>
		<content:encoded><![CDATA[<p>呵呵,我当时安装的时候0.8.7g是最新的版本啦~</p>
]]></content:encoded>
	</item>
	<item>
		<title>asdf2 对《在 RHEL 5.5 下配置 Cacti 0.8.7g》的评论</title>
		<link>http://www.chenjunlu.com/2011/03/configure-cacti-0-8-7g-under-rhel-5-5/comment-page-1/#comment-417</link>
		<dc:creator>asdf2</dc:creator>
		<pubDate>Mon, 07 Nov 2011 17:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1415#comment-417</guid>
		<description>应该直接安装 0.8.7h，新特性中已经
MySQL “TYPE=” 修改为 ENGINE=
而且更好的支持php5.3，已经删除了php5.3中deprecated functions</description>
		<content:encoded><![CDATA[<p>应该直接安装 0.8.7h，新特性中已经<br />
MySQL “TYPE=” 修改为 ENGINE=<br />
而且更好的支持php5.3，已经删除了php5.3中deprecated functions</p>
]]></content:encoded>
	</item>
	<item>
		<title>billrain 对《我的婚礼感言》的评论</title>
		<link>http://www.chenjunlu.com/2011/06/wedding-speech/comment-page-1/#comment-416</link>
		<dc:creator>billrain</dc:creator>
		<pubDate>Wed, 12 Oct 2011 11:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1952#comment-416</guid>
		<description>hahahaha ding!</description>
		<content:encoded><![CDATA[<p>hahahaha ding!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Robin 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-398</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Wed, 24 Aug 2011 06:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-398</guid>
		<description>请在 Data input method 里面把“perl”修改为绝对路径。比如“/usr/local/bin/perl”。</description>
		<content:encoded><![CDATA[<p>请在 Data input method 里面把“perl”修改为绝对路径。比如“/usr/local/bin/perl”。</p>
]]></content:encoded>
	</item>
	<item>
		<title>myl 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-397</link>
		<dc:creator>myl</dc:creator>
		<pubDate>Wed, 24 Aug 2011 04:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-397</guid>
		<description>你好，我tomcat 4个监控图都是-nan

是怎么回事呢，直接执行脚本时是有数据的，就是显示不到图上

perl /var/www/html/scripts/tomcatstats.pl 10.8.60.201:80 admin admin http-80
jvm_memory_free:2639307856 jvm_memory_max:4278190080 jvm_memory_total:4278190080 connector_max_time:7185188 connector_error_count:209489 connector_bytes_sent:21931788757 connector_processing_time:228373660 connector_request_count:1124901 connector_bytes_received:2296686340 connector_current_thread_count:483 connector_min_spare_threads:25 connector_max_threads:1024 connector_max_spare_threads:75 connector_current_threads_busy:401</description>
		<content:encoded><![CDATA[<p>你好，我tomcat 4个监控图都是-nan</p>
<p>是怎么回事呢，直接执行脚本时是有数据的，就是显示不到图上</p>
<p>perl /var/www/html/scripts/tomcatstats.pl 10.8.60.201:80 admin admin http-80<br />
jvm_memory_free:2639307856 jvm_memory_max:4278190080 jvm_memory_total:4278190080 connector_max_time:7185188 connector_error_count:209489 connector_bytes_sent:21931788757 connector_processing_time:228373660 connector_request_count:1124901 connector_bytes_received:2296686340 connector_current_thread_count:483 connector_min_spare_threads:25 connector_max_threads:1024 connector_max_spare_threads:75 connector_current_threads_busy:401</p>
]]></content:encoded>
	</item>
	<item>
		<title>cwalet 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-391</link>
		<dc:creator>cwalet</dc:creator>
		<pubDate>Wed, 17 Aug 2011 13:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-391</guid>
		<description>php poller.php查看到一些信息，不知道是不是poller的日志，但其中也只有关于locale的WARN信息，并没有你提到的那些。我的Q:770328785，还有其他方法吗，是不是数据库没有保存实时数据才没有生成图？</description>
		<content:encoded><![CDATA[<p>php poller.php查看到一些信息，不知道是不是poller的日志，但其中也只有关于locale的WARN信息，并没有你提到的那些。我的Q:770328785，还有其他方法吗，是不是数据库没有保存实时数据才没有生成图？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Robin 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-390</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Wed, 17 Aug 2011 03:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-390</guid>
		<description>你的是中文版的吗？具体的那个值如何翻译我就不知道了。你看看相关图像模板的参数都有什么，然后告诉我，poller的日志不是cacti的日志，poller一般是通过linux主机上的crontab运行的，一般情况下，我们都把poller的输出重定向到了null设备，所以你最好先把这个输出重定向到一个文本文件中，然后查看poller日志。</description>
		<content:encoded><![CDATA[<p>你的是中文版的吗？具体的那个值如何翻译我就不知道了。你看看相关图像模板的参数都有什么，然后告诉我，poller的日志不是cacti的日志，poller一般是通过linux主机上的crontab运行的，一般情况下，我们都把poller的输出重定向到了null设备，所以你最好先把这个输出重定向到一个文本文件中，然后查看poller日志。</p>
]]></content:encoded>
	</item>
	<item>
		<title>cwalet 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-388</link>
		<dc:creator>cwalet</dc:creator>
		<pubDate>Tue, 16 Aug 2011 08:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-388</guid>
		<description>但是4张图都没有数据显示啊？还有就是你所写的这一点：“如果出现不出图像的问题，那么请尝试把 相关图像模板的 “Unit Grid Value (–unit/–y-grid)”值清空或设为0。”在CactiEZ中文版中并没有，请问具体是哪一项？此外，poller的日志是否就是cacti的日志？我在日志中并没有看到你列出的那一项</description>
		<content:encoded><![CDATA[<p>但是4张图都没有数据显示啊？还有就是你所写的这一点：“如果出现不出图像的问题，那么请尝试把 相关图像模板的 “Unit Grid Value (–unit/–y-grid)”值清空或设为0。”在CactiEZ中文版中并没有，请问具体是哪一项？此外，poller的日志是否就是cacti的日志？我在日志中并没有看到你列出的那一项</p>
]]></content:encoded>
	</item>
	<item>
		<title>Robin 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-387</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Tue, 16 Aug 2011 02:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-387</guid>
		<description>我大概知道你的问题了，这个不是因为出图没数据，而是 error 数据的值过大，而其他值过低，所以你只能看到 error 的数值！至于为什么会有 error 数据，就视情况而定了。</description>
		<content:encoded><![CDATA[<p>我大概知道你的问题了，这个不是因为出图没数据，而是 error 数据的值过大，而其他值过低，所以你只能看到 error 的数值！至于为什么会有 error 数据，就视情况而定了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>cwalet 对《在 Cacti 下实现对 Tomcat 的监控》的评论</title>
		<link>http://www.chenjunlu.com/2011/05/how-to-monitor-tomcat-server-by-using-cacti/comment-page-1/#comment-382</link>
		<dc:creator>cwalet</dc:creator>
		<pubDate>Thu, 11 Aug 2011 11:26:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1798#comment-382</guid>
		<description>hI,我安装之后perl /scripts/tomcatstats.pl :8080 admin passwords http-8080有XML解析的结果，可出的图没数据，但是看实时数据图时又有数据，其中connection rate中还有error的数据，请教如何解决！
使用的CentOS6.0&amp;&amp;CactiEZ&amp;&amp;tomcat6.0</description>
		<content:encoded><![CDATA[<p>hI,我安装之后perl /scripts/tomcatstats.pl :8080 admin passwords http-8080有XML解析的结果，可出的图没数据，但是看实时数据图时又有数据，其中connection rate中还有error的数据，请教如何解决！<br />
使用的CentOS6.0&amp;&amp;CactiEZ&amp;&amp;tomcat6.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>&#187; MONO＆MONODEVELOP CENTOS 5.5 &#38; 6 部署手册 在路上 对《理解 pkg-config 工具》的评论</title>
		<link>http://www.chenjunlu.com/2011/03/understanding-pkg-config-tool/comment-page-1/#comment-378</link>
		<dc:creator>&#187; MONO＆MONODEVELOP CENTOS 5.5 &#38; 6 部署手册 在路上</dc:creator>
		<pubDate>Tue, 02 Aug 2011 08:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=1461#comment-378</guid>
		<description>[...]  理解 pkg-config 工具 [...]</description>
		<content:encoded><![CDATA[<p>[...]  理解 pkg-config 工具 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>iakuf 对《Perl 模块的军火库 &#8212; CPAN》的评论</title>
		<link>http://www.chenjunlu.com/2011/07/comprehensive-perl-archive-network/comment-page-1/#comment-376</link>
		<dc:creator>iakuf</dc:creator>
		<pubDate>Sat, 30 Jul 2011 13:20:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.chenjunlu.com/?p=2024#comment-376</guid>
		<description>使用 cpanm 来安装 Perl 模块吧。。。cpan 太落后了</description>
		<content:encoded><![CDATA[<p>使用 cpanm 来安装 Perl 模块吧。。。cpan 太落后了</p>
]]></content:encoded>
	</item>
</channel>
</rss>

