sql >> データベース >  >> NoSQL >> MongoDB

Linuxでエラーmongodが停止しているのに、サブシステムがロックされ、ジャーナルファイル用の空き領域が不足しているのはなぜですか?

    mongod --config mongod.confの実行時に提供される構成ファイルに以下を追加できます

    MongoDBの場合3.x (最新バージョン)

    storage:
       mmapv1:
          smallFiles: true
    

    バージョン2.6以降の場合

    storage:
       smallFiles: true
    

    バージョン2.4の場合 以下

    smallfiles = true
    

    次に、mongodを実行して構成ファイルを受け入れます(ここでは、構成の場所が /etc/mongodb.confであると想定しています。 ):

    mongod -f /etc/mongodb.conf
    

    小さなファイルのドキュメント パラメータ:

    Set to true to modify MongoDB to use a smaller default data file size. 
    Specifically, smallfiles reduces the initial size for data files and
    limits them to 512 megabytes. The smallfiles setting also reduces the
    size of each journal files from 1 gigabyte to 128 megabytes.
    


    1. Redisに保存されている値を参照/表示するにはどうすればよいですか?

    2. Redisクラスターシャーディングの概要–利点、制限、デプロイ、クライアント接続

    3. マングースベースのアプリアーキテクチャ

    4. pymongoでmongodbをソートする方法