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

redisdump.rdb/小さなファイルの保存

    もう少し役立つように...redisがdump.rdbファイル(ubuntuサーバー)を保存している場所を検索または設定する方法:最初にredis.confファイルを検索します:ターミナルで実行:

    ps -e aux | grep redis
    

    redis.confファイルを次の場所で見つけました:

    var/etc/redis/
    

    同じ場所にある場合は、次のコマンドでファイルを開きます。

    pico var/etc/redis/redis.conf
    

    探してください:

    # The filename where to dump the DB
    dbfilename dump.rdb
    
    # The working directory.
    #
    # The DB will be written inside this directory, with the filename specified
    # above using the 'dbfilename' configuration directive.
    #
    # Also the Append Only File will be created inside this directory.
    #
    # Note that you must specify a directory here, not a file name.
    dir /var/lib/redis
    

    「dbfilename」と「dir」の設定に応じて、redisdump.rdbファイルが見つかります。

    更新 :redis構成を確認するには、次のコマンドを実行してください:

    redis-cli CONFIG GET *
    


    1. Spring-data-Redisを使用してRedisMulti-Execを実装する方法

    2. ネストされた構造体をmgoで保存する

    3. Mongodb配列$pushおよび$pull

    4. MongoDBのセキュリティレベルとそれらを回避する方法