免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1685 | 回复: 0
打印 上一主题 下一主题

perl 安装DBD [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-02-22 21:40 |只看该作者 |倒序浏览
监控平台: /usr/local/nagios/libexec/check_nrpe -H 被监控机 出错如下.
CHECK_NRPE: Error - Could not complete SSL handshake.
在被监控机# /usr/local/nagios/libexec/check_nrpe -H 127.0.0.1 也会出错.
http://www.monitoringexchange.org/inventory/Check-Plugins/Database/MySQL
http://www.monitoringexchange.org/inventory/Check-Plugins/Database/MySQL/check_mysql_perf
http://labs.consol.de/lang/de/nagios/check_mysql_health/
http://www.consol.com/opensource/nagios/check-mysql-perf
http://www.docin.com/p-27670744.html#docTitle
(good)
cd check_mysql_health-2.1
mkdir -p /usr/local/nagios/mysql_health/states
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios  \
            --with-nagios-group=nagios --with-perl  \
            --with-statefiles-dir=/usr/local/nagios/mysql_health/states
            
        ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-perl --with-statefiles-dir=/usr/local/nagios/mysql_health/states            
make
make install
###
./check_mysql_health --hostname proxy1.kdb --port 3306 --username root --password ipo2008mimi --mode threads-connected
CRITICAL - cannot connect to information_schema. install_driver(mysq
l) failed: Can't locate DBD/mysql.pm in        
下载perl dbi/dbd
http://dev.mysql.com/downloads/dbi.html
http://dag.wieers.com/rpm/packages/perl-DBD-mysql/
(rpm包)
##处理
http://search.cpan.org/~capttofu/DBD-mysql-4.013/
http://search.cpan.org/dist/DBI/
或者
perl -e shell -MCPAN
cpan> install DBI
cpan> install DBD::mysql
cpan> install DBD::mysql  which will also check for (other Perl modules) dependencies
###DBD
vim mysql_config  #socket='/var/lib/mysql/mysql.sock' -->socket='/data/var/mysql.sock'
perl Makefile.PL --mysql_config=/usr/bin/mysql_config
Perl-DBI版本:DBI-1.56
Step 1:  #  cp  DBI-1.56.tar.gz  /usr/local/
Step 2:  #  cd  /usr/local/
Step 3:  #  tar xvzf DBI-1.56.tar.gz
Step 4:  #  cd DBI-1.56
Step 5:  #  perl Makefile.PL
Step 6:  #  make
Step 7:  #  make test
Step 8:  #  make install
Step 9:   #    perl -MDBI –el (测试是否安装成功,若不报错则成功)
3、 Perl-DBD-MySQL 模块安装
Step 1:  #  cp DBD-mysql-4.00.tar.gz /usr/local/
Step 2:  #  cd  /usr/local/
Step 3:  #  tar xvzf DBD-mysql-4.00.tar.gz
Step 4:  #  cd DBD-mysql-4.00
Step 5:  #  perl Makefile.PL
Step 6:  #  make
Step 7:  #  make test
Step 8:  #  make install

perl Makefile.PL \
      --libs="-L/mysql目录/lib/mysql -lmysqlclient -lz" \
      --cflags=-I/mysql目录/include/mysql
    make
    make test
    make install
   
   
   
#!/bin/perl
use DBI;
# Connect to target DB
my $dbh = DBI->connect("DBI:mysql atabase=fb;host=puma.kdb","ipo2008","meiguiyuan", {'RaiseError' => 1});
# query
my $sqr = $dbh->prepare("show databases");
$sqr->execute();
while(my $ref = $sqr->fetchrow_hashref()) {
    print "$ref->{'Database'}\n";
}
$dbh->disconnect();


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/107145/showart_2184199.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP