官方下載和安裝文檔:http://www.lepus.cc/page/product
創(chuàng)新互聯(lián)建站服務(wù)項(xiàng)目包括貢井網(wǎng)站建設(shè)、貢井網(wǎng)站制作、貢井網(wǎng)頁(yè)制作以及貢井網(wǎng)絡(luò)營(yíng)銷策劃等。多年來(lái),我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,貢井網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到貢井省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
由于參考官方的文檔,讓安裝天兔時(shí)受挫不少,于是有了這篇手記:
環(huán)境 CentOS 6.5 + xampp-linux-x64-1.8.2-5-installer.run + Lepus數(shù)據(jù)庫(kù)企業(yè)監(jiān)控系統(tǒng)3.8 Beta
安裝 xampp:
#wget http://cdn.lepus.cc/cdncache/software/xampp-linux-x64-1.8.2-5-installer.run
#chmod +x xampp-linux-x64-1.8.2-5-installer.run
#./xampp-linux-x64-1.8.2-5-installer.run -- 一路yes就可以了
#ln -s /opt/lampp/xampp /sbin/xampp --創(chuàng)建軟鏈接,方便啟動(dòng)xampp
#ln -s /opt/lampp/bin/MySQL /sbin/mysql --創(chuàng)建軟鏈接,方便啟動(dòng)mysql客戶端
-----------------------------------------------------------------------------------------------------------------------
安裝python 2.7 --官方未提供
#yum install -y openssl openssl-devel --安裝python for mysql時(shí)需要
#wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tar.xz
#xz -d Python-2.7.13.tar.xz
#tar xvf Python-2.7.13.tar
#cd Python-2.7.13
#./configure --enable-optimizations
#vim Modules/Setup.dist -- configure之后才有Modules 文件夾
把下面幾行前的#去掉:
#SSL=/usr/local/ssl
#_ssl _ssl.c \
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
# -L$(SSL)/lib -lssl -lcrypto
改成:
SSL=/usr/local/ssl
_ssl _ssl.c \
-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
-L$(SSL)/lib -lssl -lcrypto
保存退出。
-------------------------------------------------------------------------------------------------------------------------
安裝python for mysql模塊
#wget http://cdn.lepus.cc/cdncache/software/MySQLdb-python.zip
#unzip MySQLdb-python.zip
#cd MySQLdb1-master --MySQLdb-python.zip 解壓后的目錄
#find / -name mysql_config --官方指導(dǎo)里用的是which mysql_config ,可能是安裝方式不同,我是找不到這個(gè)文件的
/opt/lampp/bin/mysql_config
#vim site.cfg 添加一行:
mysql_config = /usr/local/mysql/bin/mysql_config
# python setup.py build --找不到mysql_config文件
EnvironmentError: /usr/local/mysql/bin/mysql_config not found
#ln -s /opt/lampp/bin/mysql_config /usr/local/mysql/bin/mysql_config --創(chuàng)建鏈接
# python setup.py install
Finished processing dependencies for MySQL-python==1.2.4 --python from mysql 安裝成功
-------------------------------------------------------------------------------------------------------------------------
安裝天兔 Lepus數(shù)據(jù)庫(kù)企業(yè)監(jiān)控系統(tǒng)3.8 Beta.zip
-- 天兔需要在windows端下載,然后上傳到linux服務(wù)器
#unzip Lepus數(shù)據(jù)庫(kù)企業(yè)監(jiān)控系統(tǒng)3.8 Beta.zip
#mv Lepus數(shù)據(jù)庫(kù)企業(yè)監(jiān)控系統(tǒng)3.8 Beta lepus3.8
建立lepus 數(shù)據(jù)庫(kù):
#msyql
mysql> create database lepus default character set utf8;
Query OK, 1 row affected (0.01 sec)
mysql> grant select,insert,update,delete,create on lepus.* to 'lepus'@'localhost' identified by '123456';
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
mysql>exit;
#mysql lepus < sql/lepus_table.sql --導(dǎo)入數(shù)據(jù)表
#mysql -uroot lepus < sql/lepus_data.sql --導(dǎo)入數(shù)據(jù)
-------------------------------------------------------------------------------------------------------------------------
------------------------------
安裝Lepus程序:
#cd python --Lepus3.8程序包內(nèi)的目錄
# chmod +x install.sh --授權(quán)執(zhí)行
# ./install.sh --執(zhí)行
[root@slave 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 配置文件
# cd /usr/local/lepus/
# vim etc/config.ini
###監(jiān)控機(jī)MySQL數(shù)據(jù)庫(kù)連接地址###
[monitor_server]
host="127.0.0.1"
port=3306
user=" lepus " --輸入天兔數(shù)據(jù)庫(kù)的用戶名
passwd="xxxxxx" --輸入天兔數(shù)據(jù)庫(kù)的用戶lepus的密碼
dbname="lepus"
# lepus start --測(cè)試是否可以啟動(dòng)天兔
lepus server start fail!
#cat logs/lepus.log
ImportError: libmysqlclient.so.18: cannot open shared object file: No such file or directory --缺少文件libmysqlclient.so.18
# yum install -y libmysqlclient.so.18
# lepus start --測(cè)試是否可以啟動(dòng)天兔
lepus server start fail!
# cat /usr/local/lepus/logs/lepus.log
ImportError: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory --缺少文件 libcrypto.so.1.0.0
#find / -name libcrypto.so.1.0.0
/opt/lampp/lib/libcrypto.so.1.0.0
# ln -s /opt/lampp/lib/libcrypto.so.1.0.0 /usr/lib64 ---建立軟鏈接
# ln -s /opt/lampp/lib/libcrypto.so.1.0.0 /usr/lib ---建立軟鏈接
#lepus start --測(cè)試是否可以啟動(dòng)天兔
lepus server start success! --終于啟動(dòng)了
-------------------------------------------------------------------------------------------------------------------------
------------------------------
安裝WEB管理臺(tái)
#cp -rf /root/lepus3.8/php/* /opt/lampp/htdocs/ --復(fù)制天兔安裝包里的PHP文件夾內(nèi)的文件到 apache主頁(yè)目錄
# vim /opt/lampp/htdocs/application/config/database.php --修改PHP的database.php文件
$db['default']['username'] = 'lepus'; --把用戶名加進(jìn)去
$db['default']['password'] = '123456'; --把用戶密碼加進(jìn)去
登錄進(jìn)行添加主機(jī)和監(jiān)控
通過瀏覽器輸入IP地址或域名打開監(jiān)控界面,即可登錄系統(tǒng)。.默認(rèn)管理員賬號(hào)密碼admin/Lepusadmin登錄后請(qǐng)修改管理員密碼,增加普通賬號(hào)。
-------------------------------------------------------------------------------------------------------------------------
------------------------------
添加被監(jiān)控端
在被控端mysql添加一個(gè)mysql帳號(hào),然后在登錄天兔系統(tǒng),在天兔里添加:
被控端:
mysql> grant all on *.* to 'lepus'@'%' identified by '123456';
Query OK, 0 rows affected, 1 warning (0.25 sec)
天兔:
其他更多功能要自己琢磨了,官方也沒文檔
全文完
新聞標(biāo)題:天兔的安裝配置
分享路徑:http://aaarwkj.com/article22/igjdcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、做網(wǎng)站、微信公眾號(hào)、網(wǎng)站策劃、網(wǎng)站排名、App開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)