maptail同时监控多台web访问日志
原本maptail可以在web服务器主机上部署进行实时查看web服务的访问日志,现在有多台web都需要进行监控,有点麻烦,所以就使用一台机器同时监控多台,由于maptail的实质是tail -f的一个展示,所以结合这一点,也就是说maptail只需要有access_log即可,所以只需要把其他web机器上的访问日志同步过来即可,然后inotify+rsync讲是一个不错的选择,rsync常用方式是“分发”,这次使用的是他的“汇聚”。大致结构如下:
配置整个过程:
一、升级Python到2.6~2.7
- # mkdir /root/sourcesoft;cd !$
- # wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz
- # yum install gcc*
- # tar -zxvf Python-2.7.3.tgz
- # cd Python-2.7.3
- # ./configure
- # make;make install
- # cd /usr/bin
- # mv python python.bak
- # ln -s /usr/local/bin/python python
二、安装nodeJS
- # cd /root/sourcesoft
- # wget http://nodejs.org/dist/v0.8.16/node-v0.8.16.tar.gz
- # tar -zxvf node-v0.8.16.tar.gz
- # cd node-v0.8.16
- # ./configure
- # make;make install
如果上述过程出现问题,可以有一下解决方式:
1.yum无法安装软件,提示一下错误:
注:如果升级过Python的话,此处可能会提示There was a problem importing one of the Python modules required to run yum.
- 解决方法:
- 查找yum文件,并编辑此py文件
- # which yum
- /usr/bin/yum
- # vi /usr/bin/yum
- 将
- #!/usr/bin/python
- 改为:
- whereis python出来的结果
- #!/usr/bin/python2.4
2.安装nodejs的时候提示以下错误:
ImportError: No module named bz2
- 解决方法:
- 1.
- # yum install -y bzip2*
- 2.
- # cd Python-2.7/Modules/zlib
- # ./configure ;make;make install
- 3.
- # cd Python-2.7/
- # python2.7 setup.py install
三、安装maptail模块并启动
- # npm install maptail -g
启动:
- # nohup /usr/bin/tail -f /var/log/httpd/access_log | /usr/local/bin/node /usr/local/bin/maptail -h 192.168.158.216 -p 8080 &
四、浏览:
在浏览器中输入:http://192.168.158.216:8080即可访问
相关推荐
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
pythonjw 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16