- 論壇徽章:
- 0
|
自己總結(jié)的安裝文檔,附帶截圖。平常都用的是cacti ,可是cacti 檢測(cè)服務(wù)太麻煩。不過(guò)cacti 對(duì)系統(tǒng)信息的檢測(cè)的卻很牛插。今天下午找了
另類的檢測(cè)工具。 big brother 的妹妹--big sister,網(wǎng)上的中文安裝文檔得卻很少,生氣之余,總結(jié)了一下。奉獻(xiàn)給熱愛(ài)監(jiān)控的同志們。
另外,由于上傳附件的大小限制,不能給各位上傳截圖了。
big brother 和cacti 的功能差不多。 都是以plugin 方式加載,不過(guò)現(xiàn)有的plugin (windows/linux/unix /services )的監(jiān)控已經(jīng)加入到了源碼中。 很方便了。
0. install perl
1. install apache 支持so
cp /usr/local/apache/bin/apxs /usr/bin /usr/sbin/ /usr/local/bin /usr/local/sbin
2. install gd 按照INSTALL.txt
3. install SNMP_Session-1.08.tar.tar
tar xvfz SNMP_Session-1.08.tar.tar
perl Makefile.PL
make ; make install;
4. install CGI-SpeedyCGI-2.22.tar.gz
tar xvfz CGI-SpeedyCGI-2.22.tar.gz
perl Makefile.PL
選擇yes.
make;
make install;
觀察apache httpd.conf 是否加入了
LoadModule speedycgi_module libexec/mod_speedycgi.so
5. install rrdtool-1.0.50.tar.gz
tar xvfz rrdtool-1.0.50.tar.gz;
./configure --prefix=/usr/local/rrdtool
make ; make install; make site-perl-install;
————
安裝netsnmp ,我的版本是:
NET-SNMP version: 5.0.9
Web: http://www.net-snmp.org/
Email: net-snmp-coders@lists.sourceforge.net
-------------------------
6. INSTALL big-sister-1.02.tar.gz
useradd bs;
tar xvfz big-sister-1.02.tar.gz;
./configure --prefix=/usr/local/bigsister
make ; make install ;
下面有幾個(gè)選項(xiàng)可提供安裝的組建。
Once you have run configure and you are happy with the configuration
it generated you can run
make install
to install the whole Big Sister package or
make install-agent
to just install the agent, or
make install-server
to just install the server.
7. configure apache server;
vi httpd.conf 加入類似的選項(xiàng)。
ScriptAlias /cgi-bin/ "/usr/local/apache1331/cgi-bin/"
ScriptAlias /cgi/ "/usr/local/bigsister/cgi/"
<Directory "/usr/local/bigsister/cgi">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
8. 加入 軟連接:
cd /usr/local/apache/htdocs;
ln -s /usr/local/bigsister/www bs
ln -s /usr/local/bigsister/www www
9. apache graceful
http://192.168.2.131/www/index.html
啟動(dòng) bigsister : /usr/local/bigsister/bin/bb_start start
10 bigsister agent 配置文件:
主要看它的幫助文檔.
推薦幾個(gè)bigsister 的網(wǎng)站:L
http://bigsister.graeff.com 官網(wǎng)。
http://bigsister.graeff.com/pdoc/CONFIG.html#5 配置指南。
恭祝各位安裝成功。
希望國(guó)內(nèi)的programmer也能寫出自己的監(jiān)控系統(tǒng)來(lái)。呵呵。
我的msn : liutaostdio@hotmail.com |
|