gpt4 book ai didi

redis dump.rdb/保存小文件

转载 作者:IT王子 更新时间:2023-10-29 05:54:32 28 4
gpt4 key购买 nike

上下文

  • 我正在使用 Redis。数据库 < 100 MB。
  • 但是,我想每天备份一次。
  • 我也在 Ubuntu Server 12.04 上运行

当输入时:

redis-cli save

我不知道 dump.rdb 保存到哪里(因为 redis 是作为服务启动的,而不是在我的本地目录中)。

问题:

  1. 我如何找到 redis 将我的 dump.rdb 保存到哪里?

  2. 有没有什么办法可以指定一个文件名来“保存”,所以我输入如下内容:

    redis-cli save ~/db-2012-06-24.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”的设置,您可以在那里找到您的 redis dump.rdb 文件。


更新:要查看您的 Redis 配置,只需运行:

redis-cli CONFIG GET *

关于redis dump.rdb/保存小文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11180999/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com