mongodb的系統日誌啟動切割實現方法

來源:互聯網
上載者:User

標籤:logrotate   mongos   mongodb日誌   

        在做mongodb分區時,當啟用mongos路由服務,我們會指定一個日誌的存放位置:

mongos --configdb 127.0.0.1:27019 --logpath /var/log/mongodb/mongos.log  --pidfilepath /var/run/mongodb/mongos.pid --logappend --logRotate reopen --fork

以上我們指定了日誌的存放位置在/var/log/mongodb/mongos.log檔案裡面,當系統資料量比較大,已耗用時間久了之後,mongos.log檔案會變成幾個G的大小,這樣肯定會影響mongos路由的效能。

        在此情況下我們可以借用系統的logrotate日誌自動切割服務,來改變mongos.log檔案的大小,進入到cd /etc/logrotate.d/目錄,建立一個檔案:touch mongos,編輯添加如下內容:

/var/log/mongodb/mongos.log{    rotate 1    daily    dateext    size 200M    postrotate        /bin/kill -SIGUSR1 `cat /var/run/mongodb/mongos.pid 2> /dev/null` 2> /dev/null || true    endscript}

正對以上配置的簡單說明:

        size:指定當mongos.log檔案超過200M時,自動切割檔案

        dateext:指定切割檔案時,備份檔案的命名方式

        rotate 5:一次將儲存5個歸檔日誌。對於第六個歸檔,時間最久的歸檔將被刪除。

        daily:記錄檔將按天輪詢

        postrotate/endscript: 其它命令執行完成後,執行這個裡面的命令

本文出自 “隨網互聯” 部落格,請務必保留此出處http://suiwnet.blog.51cto.com/2492370/1630994

mongodb的系統日誌啟動切割實現方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.