MongoDB日誌輪轉

來源:互聯網
上載者:User

MongoDB日誌輪轉

MongoDB可使用標準的方法實現日誌輪轉,即擷取到當前日誌並開啟一個新的。為了實現它,mongod執行個體通過在檔案名稱末尾添加UTC(GMT)時間戳記的方式重新命名當前的記錄檔,然後開啟這個新的log檔案,關閉之前舊的log    檔案,並發送所有新的日誌資訊到新的log檔案中。

Rotation Setps

MongoDB標準的日誌輪轉方法是通過日誌輪轉命令,或者讓mongod進程接受到一個SIGUSER1訊號,以下具體的實現方法

1 開啟mongod進程,保證appending enabled

mongod -v --logpath /var/log/mongodb/server1.log --logappend

2 在終端查看是否有mongo記錄檔

ls /var/log/mongodb/server1.log*

3 如果是Windows系統,開啟mongo shell,進入admin資料庫並敲入輪轉命令,即

use admin

db.runCommand( { logRotate : 1 } )

如果是Linux系統,則在終端運行 kill -SIGUSR1 <mongod process id>

4 再次查看結果是否有新的mongo記錄檔產生

ls /var/log/mongodb/server1.log*

My auto script and crontab

以下是我用python寫的定時指令碼,每天產生一個新的log,超過10天的log自行刪除

#!/bin/env python
import sys
import os
import commands
import datetime,time

#get mongo pid
mongo_pid = commands.getoutput("/sbin/pidof mongod")
print mongo_pid

#send Sig to mongo
if mongo_pid != '':
    cmd = "/bin/kill -USR1 %s" %(mongo_pid)
    print cmd
    mongo_rotate = commands.getoutput(cmd)
else:
    print "mongod is not running..."

#clean log which > 10 days
str_now = time.strftime("%Y-%m-%d")
dat_now = time.strptime(str_now,"%Y-%m-%d")
array_dat_now = datetime.datetime(dat_now[0],dat_now[1],dat_now[2])
lns = commands.getoutput("/bin/ls --full-time /var/log/mongodb/|awk '{print $6, $9}'")
for ln in lns.split('\n'):
    ws = ln.split()
    if len(ws) != 2:
        continue
    ws1 = time.strptime(ws[0],"%Y-%m-%d")
    ws2 = datetime.datetime(ws1[0],ws1[1],ws1[2])
    if (array_dat_now - ws2).days > 10:
        v_del = commands.getoutput("/bin/rm -rf /var/log/mongodb//%s" % (ws[1]))

在root下crontab -e查看定時任務

0 2 * * * /home/jiangjianjian/mongo_log_rotate.py >/home/jiangjianjian/null 2>&1

CentOS編譯安裝MongoDB

CentOS 編譯安裝 MongoDB與mongoDB的php擴充

CentOS 6 使用 yum 安裝MongoDB及伺服器端配置

Ubuntu 13.04下安裝MongoDB2.4.3

MongoDB入門必讀(概念與實戰並重)

Ubunu 14.04下MongoDB的安裝指南

《MongoDB 權威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]

Nagios監控MongoDB分區叢集服務實戰

基於CentOS 6.5作業系統搭建MongoDB服務

MongoDB 的詳細介紹:請點這裡
MongoDB 的:請點這裡

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.