redis故障处理 process is already running or crashed

今天线上的一台测试库的redis,增加auth 密码验证后,我想重启一下redis,不重启不生效。结果不管怎么弄都是(error) NOAUTH Authentication required。redis-cli -a 123456 shutdown 竟然没有用,一怒之下,强制关闭了,kill -9 redis的pid号。

结果启动的时候。一致报错/var/run/redis_6379.pid exists, process is already running or crashed。

由于是测试库,里面的数据不是太重要,解决的方法比较粗暴。

我就直接把dump.rdb文件备份一下到别的目录,

然后删除掉(rm -rf /var/run/redis_6379.pid)redis的pid号

直接启动[root@localhost  6379]# /etc/init.d/redis_6379 start

启动正常了。

那么问题来了,要是数据比较重要呢?把dump.rdb文件拷贝回来就行了吗?

no kill no die

原文地址:http://blog.51cto.com/sf1314/2156481

时间: 2024-10-18 01:37:21

redis故障处理 process is already running or crashed的相关文章

If no other git process is currently running, this probably means a git process crashed in this repo

今天git突然崩溃,崩溃时正在使用创建的新分支.等到重新进入,用git checkout master命令显示 If no other git process is currently running, this probably means agit process crashed in this repository earlier. Make sure no other gitprocess is running and remove the file manually to contin

git 复位出现If no other git process is currently running, this probably means a git process crashed in this repo

复位到A节点的时候点了取消(终止),又去复位另外个节点,结果每次不管复位哪个都会报这个错误 fatal: Unable to create 'XXXXXXXXX' : File exists. If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is run

git报错---If no other git process is currently running...

今天帮同事上传一个代码(预生产环境),当我执行到git add 文件 的时候,出现了如下错误: If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is running and remove the file manually to continue. 网上

Redis+keepalived实现双机热备

一. 简介 安装使用centos 5.6(64) Master 192.168.2.235 Slave 192.168.2.236 Vip 192.168.2.200 编译环境 yum -y install gcc gcc+ gcc-c++ openssl openssl-devel pcre pcre-devel 当 Master 与 Slave 均运作正常时, Master负责服务,Slave负责Standby: 当 Master 挂掉,Slave 正常时, Slave接管服务,同时关闭主从

搭建jeesz分布式架构-- Redis分布式缓存安装(单节点)

安装环境:CentOS 6.6Redis 版本:redis-3.0 (因为 Redis3.0 在集群和性能提升方面的特性,rc 版为正式版的候选版,请在安装时去官网选用最新版)用户:root安装目录:/usr/local/redis下面我们针对于Redis安装做下详细的记录:编译和安装所需的包:# yum install gcc tcl提醒:下载 3.0 版 Redis(当前最新版 redis-3.0.0-rc5.tar.gz,请在安装时去官网选用最新版)# cd /usr/local/src#

centos6.5配置redis服务 很好用谢谢

1.下载Redis3.2.5安装包 wget http://download.redis.io/releases/redis-3.2.5.tar.gz 2.解压.编译.安装redis-3.2.5: tar -zxvf redis-3.2.5.tar.gz -C /usr/src/ cd /usr/src/redis-3.2.5/ make && make install 3.创建redis相关目录: mkdir -p /home/redis/bin mkdir -p /home/redis

Redis的安装部署教程文档

IP:192.168.4.111 环境:CentOS 6.6 Redis版本:redis-3.0 (考虑到Redis3.0在集群和性能提升方面的特性,rc版为正式版的候选版,而且很快就出正式版) 安装目录:/usr/local/redis 用户:root 编译和安装所需的包: # yum install gcc tcl 下载3.0版Redis(当前最新版redis-3.0.0-rc5.tar.gz,请学员们在安装时自行选用最新版) # cd /usr/local/src # wget https

Linux下redis的安装

第一部分:安装redis 希望将redis安装到此目录 1 /usr/local/redis 希望将安装包下载到此目录 1 /usr/local/src 那么安装过程指令如下: 1 2 3 4 5 6 7 $ mkdir /usr/local/redis   $ cd /usr/local/src   $ wget http://redis.googlecode.com/files/redis-2.6.14.tar.gz   $ tar xzf redis-2.6.14.tar.gz    $

redis单机安装

echo 1 > /proc/sys/vm/overcommit_memory echo vm.overcommit_memory=1 >> /etc/sysctl.conf sysctl vm.overcommit_memory=1 sysctl -p tar zxvf redis-2.8.20.tar.gz cd redis-2.8.20 make PREFIX=/opt/redis install make cp /opt/soft/redis/utils/redis_init_s