shell脚本:MySQL监控软件mytop的安装

发布时间:2020-11-15编辑:脚本学堂
本文分享一例shell脚本,用于安装mysql的监控软件mytop,有兴趣的朋友可以参考研究下。

本节主要内容:
shell/ target=_blank class=infotextkey>shell脚本安装mytop监控工具

脚本内容:
 

复制代码 代码示例:
#!/bin/bash 
#site: www.jb200.com
# mysql监控软件 mytop
#function   install mysql monitor   -----mytop 
mkdir  data 
cd  data 
wget http://search.cpan.org/CPAN/authors/id/J/JS/JSTOWE/TermReadKey-2.30.tar.gz 
tar zxvf   TermReadKey-2.30.tar.gz  
cd TermReadKey-2.30 
perl  Makefile.PL 
make 
make test 
make install 
cd .. 
wget   http://cpan.uwinnipeg.ca/cpan/authors/id/T/TI/TIMB/DBI-1.616.tar.gz 
tar zxvf   DBI-1.616.tar.gz 
cd    DBI-1.616 
perl   Makefile.PL 
make  
make test 
make intall 
cd .. 
yum -y  install perl-DBD-MySQL  perl-DBI 
wget http://jeremy.zawodny.com/mysql/mytop/mytop-1.6.tar.gz 
tar zxvf  mytop-1.6.tar.gz 
cd mytop-1.6 
perl  Makefile.PL 
make 
make test 
make install 
./mytop -u admin -p "12345678" -h 127.0.0.1:3306