ganglia 3.2.0 redhat linux 5.5 AS安装

 ganglia 3.2.0 redhat linux 5.5 AS安装

可能遇到的问题:

redhat 5.5AS,总是出现以下错误:

/usr/bin/ld: /usr/local/lib/libconfuse.a(confuse.o):relocation R_X86_32 against 'a symbol' can not be used when making a shre object ;recompile with -fPIC 
/usr/local/lib/libconfuse.a:could not read symbols :Bad value 

我重新编译了confuse-2.7.tar.gz 

./configure CFLAGS=-Fpic –disable-nls ;make;make install ;

 

解决办法:

调整lib库的位置:

vi /etc/ld.so.conf.d/libconfuse.conf,添加:/usr/local/lib,然后/sbin/ldconfig -v 

然后重新编译即可

 

RRDTool的安装:

1.    wget http://oss.oetiker.ch/rrdtool/pub/rrdtool- 1.4.5 .tar.gz 

2.    tar -zxvf rrdtool- 1.4.5 .tar.gz 

3.    cd rrdtool- 1.4.5  

4.    ./configure --prefix=/usr/local 

5.    make && make install 

调整lib库的位置:

vi /etc/ld.so.conf.d/librrd.conf,添加:/usr/local/lib,然后/sbin/ldconfig -v 

 

 

你可能感兴趣的:(linux,职场,休闲,ganglia)