内容简介:官方网站:http://www.lepus.cc 开源企业级数据库监控系统 简洁、直观、强大的开源数据库监控系统,MySQL/Oracle/MongoDB/Redis一站式性能监控,让数据库监控更简单 Git仓库地址:https://gitee.com/ruzuojun/Lepus简单介绍:Lepus(天兔)数据库企业监控系统是一套由专业DBA针对互联网企业开发的一款专业、强大的企业数据库监控管理系统,企业通过Lepus可以对数据库的实时健康和各种性能指标进行全方位的监控。目前已经支持MySQL、Orac
官方网站:http://www.lepus.cc 开源企业级数据库监控系统 简洁、直观、强大的开源数据库监控系统,MySQL/Oracle/MongoDB/Redis一站式性能监控,让数据库监控更简单 Git仓库地址:https://gitee.com/ruzuojun/Lepus
简单介绍:Lepus(天兔)数据库企业监控系统是一套由专业DBA针对互联网企业开发的一款专业、强大的企业数据库监控管理系统,企业通过Lepus可以对数据库的实时健康和各种性能指标进行全方位的监控。目前已经支持 MySQL 、Oracle、 MongoDB 、 Redis 数据库的全面监控. Lepus可以在数据库出现故障或者潜在性能问题时,根据用户设置及时将数据库的异常进行报警通知到数据库管理员进行处理和优化,帮助企业解决数据库性能监控问题,及时发现性能和瓶颈,避免由数据库潜在问题造成的直接经济损失。Lepus能够查看各种实时性能状态指标,并且对监控、性能数据进行统计分析,从运维者到决策者多个层面的视角,查看相关报表。帮助决策者对未来数据库容量进行更好的规划,从而降低了硬件成本。
1.1:安装所需的LAMP环境
1.1.1:下载软件:Xampp下载地址:https://www.apachefriends.org/download.html
[root@mysql-m ~]# ll 1 total 781780 -rw-r--r-- 1 root root 6760286 Dec 11 2017 Lepus数据库企业监控系统3.7版本官方下载.zip -rw-r--r-- 1 root root 139708140 Dec 11 2017 xampp-linux-x64-5.6.32-0-installer.run 复制代码
准备好相关软件
1.1:2:官方提供的集成环境脚本安装
[root@mysql-m ~]# chmod +x ./xampp-linux-x64-5.6.32-0-installer.run [root@mysql-m ~]# ll xampp-linux-x64-5.6.32-0-installer.run -rwxr-xr-x 1 root root 139708140 Dec 11 2017 xampp-linux-x64-5.6.32-0-installer.run [root@mysql-m ~]# ./xampp-linux-x64-5.6.32-0-installer.run 复制代码
1.2:安装 python 模块
https://github.com/farcepest/MySQLdb1/archive/master.zip 下载地址 1.2.1:安装依赖包
[root@mysql-m ~]# yum install gcc gcc-c++ python-devel -y-y 复制代码
安装依赖包
1.2.2:安装python-mysql模块注:此模块也可以在后面配置监控MYSQL时安装
[root@mysql-m ~]# unzip MySQLdb1-master.zip [root@mysql-m ~]# cd MySQLdb1-master [root@mysql-m MySQLdb1-master]# which mysql_config /usr/local/mysql/bin/mysql_config [root@mysql-m MySQLdb1-master]# vim site.cfg [options] # The path to mysql_config. # Only use this if mysql_config is not on your PATH, or you have some weird # setup that requires it. mysql_config = /usr/local/mysql/bin/mysql_config 修改配置同上 [root@mysql-m MySQLdb1-master]# python setup.py build Traceback (most recent call last): File "setup.py", line 7, in <module> import setuptools ImportError: No module named setuptools 复制代码
1.2.3:安装过程报错解决方案http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz 下载setuptols安装
[root@mysql-m ~]# tar zxf setuptools-0.6c11.tar.gz [root@mysql-m ~]# cd setuptools-0.6c11 [root@mysql-m setuptools-0.6c11]# python setup.py install 复制代码
继续安装即可
1.3:安装天兔监控软件
1.3.1:创建数据库并授权用户
mysql> create database lepus default character set utf8; Query OK, 1 row affected (0.06 sec) mysql> grant all privileges on lepus.* to lepus@"192.168.22.%" identified by '123456'; Query OK, 0 rows affected, 1 warning (0.09 sec) mysql> flush privileges; Query OK, 0 rows affected (0.09 sec) 复制代码
1.3.2:初始化数据库
[root@mysql-m ~]# unzip Lepus数据库企业监控系统3.7版本官方下载.zip [root@mysql-m sql]# mysql -uroot -p lepus < ./lepus_table.sql Enter password: [root@mysql-m sql]# mysql -uroot -p lepus < ./lepus_data.sql Enter password: 复制代码
各数据库说明:http://www.dbarun.com/docs/lepus/appendix/database/
1.3.3:安装Lepus软件
[root@mysql-m lepus_v3.7]# cd python/ [root@mysql-m python]# python test_driver_mysql.py libmysqlclient.so.20: cannot open shared object file: No such file or directory [root@mysql-m python]# find / -name "libmysqlclient.so.20" /usr/local/mysql-5.7.17-linux-glibc2.5-x86_64/lib/libmysqlclient.so.20 [root@mysql-m python]# ln -s /usr/local/mysql/lib/libmysqlclient.so.20 /usr/lib64/ 复制代码
测试连接
[root@mysql-m python]# python test_driver_mysql.py MySQL python drivier is ok! 复制代码
安装Lepus
[root@mysql-m ~]# cd lepus_v3.7/ [root@mysql-m lepus_v3.7]# cd python/ [root@mysql-m python]# chmod +x install.sh [root@mysql-m python]# ./install.sh [note] lepus will be install on basedir: /usr/local/lepus [note] /usr/local/lepus directory does not exist,will be created. [note] /usr/local/lepus directory created success. [note] wait copy files....... [note] change script permission. [note] create links. [note] install complete. 复制代码
1.3.4:修改配置文件
[root@mysql-m python]# cd /usr/local/lepus/ [root@mysql-m python]# vim etc/config.ini ###监控机MySQL数据库连接地址### [monitor_server] host="192.168.22.171" port=3306 user="lepus" passwd="123456" dbname="lepus" 复制代码
启动服务
[root@mysql-m lepus]# lepus start nohup: appending output to `nohup.out' lepus server start success! 复制代码
1.4:安装WEB管理端
1.4.1:拷贝 PHP 程序文件
[root@mysql-m lepus_v3.7]# cp -ra php/* /opt/lampp/htdocs/ cp: overwrite `/opt/lampp/htdocs/index.php'? y [root@mysql-m lepus_v3.7]# cd /opt/lampp/htdocs/ [root@mysql-m htdocs]# ll total 72 drwxr-xr-x 15 root root 4096 Feb 9 2015 application -rw-r--r-- 1 root root 3607 Feb 27 2017 applications.html -rw-r--r-- 1 root root 177 Feb 27 2017 bitnami.css drwxr-xr-x 20 root root 4096 Dec 8 08:07 dashboard -rw-r--r-- 1 root root 30894 May 11 2007 favicon.ico drwxr-xr-x 2 root root 4096 Dec 8 08:07 img -rw-r--r-- 1 root root 6605 Feb 9 2015 index.php -rw-r--r-- 1 root root 2547 Feb 9 2015 license.txt drwxr-xr-x 8 root root 4096 Feb 9 2015 system drwxr-xr-x 2 daemon daemon 4096 Dec 8 08:07 webalizer 复制代码
1.4.2:配置数据库连接配置文件
[root@mysql-m htdocs]# vim application/config/database.php $active_group = 'default'; $active_record = TRUE; $db['default']['hostname'] = '192.168.22.171'; $db['default']['port'] = '3306'; $db['default']['username'] = 'lepus'; $db['default']['password'] = '123456'; $db['default']['database'] = 'lepus'; $db['default']['dbdriver'] = 'mysql'; 复制代码
1.4.3:登陆WEB管理后台
Admin/Lepusadmin 登录后进行修改
以上所述就是小编给大家介绍的《强大的开源企业级数据监控利器Lepus安装与配置管理》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 开源其 AIOps 落地三大利器
- 开源ETL利器——Kettle的实战教程
- 开源 Docker 管理利器 DockerFly v20170526 发布
- 重磅开源|AOP for Flutter开发利器——AspectD
- 开源诊断利器Arthas ByteKit 深度解读(1):基本原理介绍
- Golang 数据可视化利器 go-echarts 开源啦
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Out of their Minds
Dennis Shasha、Cathy Lazere / Springer / 1998-07-02 / USD 16.00
This best-selling book is now available in an inexpensive softcover format. Imagine living during the Renaissance and being able to interview that eras greatest scientists about their inspirations, di......一起来看看 《Out of their Minds》 这本书的介绍吧!