zoukankan      html  css  js  c++  java
  • Redis Can't handle RDB format version 9

    Redis Can't handle RDB format version 9

    刚开始编译安装,有如下操作:

    cp redis-benchmark redis-cli redis-server /usr/bin/
    

    后来用dnf install redis,然后启动redis 报错:

    marco@pc01:~$ redis-server
    11700:C 18 Apr 08:18:52.007 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
    11700:C 18 Apr 08:18:52.007 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, 
    pid=11700, just started
    11700:C 18 Apr 08:18:52.007 # Warning: no config file specified, using the default config. In 
    order to specify a config file use redis-server /path/to/redis.conf
    11700:M 18 Apr 08:18:52.007 * Increased maximum number of open files to 10032 (it was 
    originally set to 1024).
                    _._
               _.-``__ ''-._
          _.-``    `.  `_.  ''-._           Redis 4.0.9 (00000000/0) 64 bit
      .-`` .-```.  ```/    _.,_ ''-._
     (    '      ,       .-`  | `,    )     Running in standalone mode
     |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
     |    `-._   `._    /     _.-'    |     PID: 11700
      `-._    `-._  `-./  _.-'    _.-'
     |`-._`-._    `-.__.-'    _.-'_.-'|
     |    `-._`-._        _.-'_.-'    |           http://redis.io
      `-._    `-._`-.__.-'_.-'    _.-'
     |`-._`-._    `-.__.-'    _.-'_.-'|
     |    `-._`-._        _.-'_.-'    |
      `-._    `-._`-.__.-'_.-'    _.-'
          `-._    `-.__.-'    _.-'
              `-._        _.-'
                  `-.__.-'
    
    11700:M 18 Apr 08:18:52.008 # Server initialized
    11700:M 18 Apr 08:18:52.008 # Can't handle RDB format version 9
    11700:M 18 Apr 08:18:52.008 # Fatal error loading the DB: Invalid argument. Exiting.
    

    解决办法:

    在整个文件系统中搜索dump.rdb:

    sudo find / -name * .rdb

    删除dump.rdb文件。

    注意:rdb格式版本9在文件开头将带有以下字符串-REDIS0009

  • 相关阅读:
    parted分区
    gitlab的还原
    hadoop2.7.3+spark2.0.1+scala2.11.8集群部署
    Daily record-September
    三次握手和四次挥手【转】
    “梅西式”程序员 【转】
    C++解析十-数据封装
    客户端、服务器代码实例
    网络整理
    C++解析九-数据抽象
  • 原文地址:https://www.cnblogs.com/Neroi/p/13069900.html
Copyright © 2011-2022 走看看