一. 安装环境
系统环境:centos6.5 IP:192.168.30.242 hostname:vpn.org
软件:LAMP均已安装。(请确保这些正常安装,并能使用)。
系统核心包:(摘自官方数据)
1.MySQL 5.0及以上(必须,用来存储监控系统采集的数据) 2.Apache 2.2及以上 (必须,WEB服务器运行服务器) 3.PHP 5.3以上 (必须,提供WEB界面支持) 4.Python2 (必须,推荐2.6及以上版本,执行数据采集和报警任务,不支持Python3) 5.Python连接和监控数据库的相关驱动模块包: MySQLdb for python (Python连接MySQl的接口,用于监控MySQL,此模块必须安装) cx_oracle for python (Python连接Oracle的接口,非必须,如果需要监控oracle此模块必须安装) Pymongo for python (Python连接MongoDB的接口,非必须,如果需要监控MongoDB此模块必须安装) redis-py for python (Python连接Redis的接口,非必须,如果需要监控Redis此模块必须安装)
二.安装(先安装python基础模块)
- 安装Python 基础模块(Linux 中默认是安装了Python的。)
MySQLdb模块作为Python连接和操作mysql的类库,想要lepus系统监控mysql数据库,这个模块必须安装.[[email protected] ~]# mkdir lepus [[email protected] lepus]# wget http://cdn.lepus.cc/cdncache/software/MySQLdb-python.zip [[email protected] lepus]# unzip MySQLdb-python.zip [[email protected] lepus]# cd MySQLdb1-master/ [[email protected] lepus]# which mysql_config (此处查找mysql_config命令的所在,不同方式安装的mysql,可能存在不同的地方!) /usr/bin/mysql_config [[email protected] MySQLdb1-master]# pwd /root/lepus/MySQLdb1-master [[email protected] MySQLdb1-master]# vi site.cfg mysql_config = /usr/bin/mysql_config (位置填写上一个查找到的位置)
本次是在root 目录下创建 lepus,之后关于本机所需要下载的软件都在此目录存放。配置ok后,下面就是对模块的编译和安装
[[email protected] MySQLdb1-master]# python setup.py build [[email protected] MySQLdb1-master]# python setup.py install
安装Redis模块(监控Redis所需)
[[email protected] MySQLdb1-master]# cd .. [[email protected] lepus]# pwd /root/lepus [[email protected] lepus]# wget http://cdn.lepus.cc/cdncache/software/redis-py-2.10.3.tar.gz [[email protected] lepus]# tar zxvf redis-py-2.10.3.tar.gz [[email protected] lepus]# cd redis-2.10.3/ [[email protected] redis-2.10.3]# python setup.py install
安装pymongo模块(监控Mongodb所需)
[[email protected] redis-2.10.3]# cd .. [[email protected] lepus]# pwd /root/lepus [root[email protected] lepus]# wget http://cdn.lepus.cc/cdncache/software/pymongo-2.7.tar.gz [[email protected] lepus]# tar zxvf pymongo-2.7.tar.gz [[email protected] lepus]# cd pymongo-2.7 [[email protected] pymongo-2.7]# python setup.py install
- 测试各个模块安装是否正常运行(测试文件在 /root/lepus/lepus_v3.7/python/下)
[[email protected] pymongo-2.7]# cd /root/lepus/lepus_v3.7/python/ [[email protected] pymongo-2.7]# pwd /root/lepus/lepus_v3.7/python [[email protected] python]# python test_driver_mysql.py MySQL python drivier is ok! [[email protected] python]# python test_driver_redis.py Redis python drivier is ok! [[email protected] python]# python test_driver_mongodb.py MongoDB python drivier is ok!
- 安装lepus软件(中文又称天兔),先去官网下载,放到/root/lepus目录下
[[email protected] lepus]# unzip Lepus数据库企业监控系统3.7版本官方下载.zip
然后在去创建数据库,并授权
[[email protected] lepus]# mysql mysql> create database lepus default character set utf8; mysql> grant select,insert,update,delete,create on lepus.* to ‘lepus_user‘@‘localhost‘ identified by ‘xxxxxxxxx‘; mysql> flush privileges;
导入SQL文件夹里的SQL文件(表结构和数据文件)
[[email protected] lepus]# mysql -uroot –p lepus < sql/lepus_table.sql [[email protected] lepus]# mysql -uroot –p lepus < sql/lepus_data.sql
安装lpeus主程序
[[email protected] lepus]# pwd /root/lepus [[email protected] lepus]# cd lepus_v3.7/python/ [[email protected] python]# chmod +x install.sh [[email protected] 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.
修改lepus配置文件
[[email protected] python]# cd /usr/local/lepus/ [[email protected] lepus]# vim etc/config.ini ###监控机MySQL数据库连接地址### [monitor_server] host="127.0.0.1" port=3306 user="lepus_user" passwd="xxxxx" 此处密码是授权时用的密码 dbname="lepus"
好了,如果以上没有出现问题,现在就可以启动Lepus了,
[[email protected] lepus]# lepus start
现在lepus已经安装完了,但是我们需要web可视化管理,还要安装一个web管理台
- 安装web管理台
复制php文件夹里的文件到apache网站的根目录下(安装方式不一样,目录也是不一样的,本机的LAMP环境是yum安装,默认文档在/var/www/html)[[email protected] ~]# cd /root/lepus/lepus_v3.7/ [[email protected] lepus_v3.7]# cp -rf php/* /var/www/html/
然后修改database.php文件,填写一些用于连接监控服务器的数据库信息
[[email protected] lepus_v3.7]# vim /var/www/html/php/application/config/database.php $db[‘default‘][‘hostname‘] = ‘localhost‘; $db[‘default‘][‘port‘] = ‘3306‘; $db[‘default‘][‘username‘] = ‘lepus_user‘; $db[‘default‘][‘password‘] = ‘xxxxxxx‘; $db[‘default‘][‘database‘] = ‘lepus‘; $db[‘default‘][‘dbdriver‘] = ‘mysql‘; $db[‘default‘][‘dbprefix‘] = ‘‘; $db[‘default‘][‘pconnect‘] = TRUE; $db[‘default‘][‘db_debug‘] = TRUE; $db[‘default‘][‘cache_on‘] = FALSE; $db[‘default‘][‘cachedir‘] = ‘‘; $db[‘default‘][‘char_set‘] = ‘utf8‘; $db[‘default‘][‘dbcollat‘] = ‘utf8_general_ci‘; $db[‘default‘][‘swap_pre‘] = ‘‘; $db[‘default‘][‘autoinit‘] = TRUE; $db[‘default‘][‘stricton‘] = FALSE;
现在可以打开浏览器,输入ip地址,默认页面是http://ip/php,即可登录系统,默认的管理员账号是admin,密码Lepusadmin,记得修改密码哈。
- 展示一下监控系统的页面
监控屏还是挺不错的。
作为一个运维新手,搭建这个还是比较简单上手的。感谢这个软件的开发者。不错。本文有些内容参考文档:http://www.lepus.cc/manual/index。
时间: 2024-10-01 10:56:57