Linux安装redis

Linux安装redis,第1张

http://redis.io/download 或

wget http://download.redis.io/releases/redis-5.0.0.tar.gz

yum -y install gcc automake autoconf libtool make

注意: 运行yum时出现/var/run/yum.pid已被锁定,PID为xxxx的另一个程序正在运行的问题解决

rm -f /var/run/yum.pid

tar zxvf redis-5.0.8.tar.gz -C /opt

cd /opt/redis-5.0.8 &&make MALLOC=libc

make PREFIX=/usr/local/redis install

cd /usr/local/redis

启动Redis服务端 ./bin/redis-server

以配置文件启动Redis服务端 ./bin/redis-server ./redis.conf

启动Redis客户端 ./bin/redis-cli

启动Redis 客户端命令语法: redis-cli –h IP地址 –p 端口 //默认IP本机 端口6379

检测是否服务端启动 redis 127.0.0.1:6379>PING

客户端退出 shutdown

显示redis的情况 ps -ef |grep redis

杀死redis进程 kill -9 8169

错误 ./bin/redis-cli -h 127.0.0.1 -p 6379 -u wc19981220

报错: Invalid URI scheme 将-u换成-a即可

正确 ./bin/redis-cli -h 127.0.0.1 -p 6379 -a wc19981220

1.直接启动

进入redis根目录,执行命令:

#加上‘&’号使redis以后台程序方式运行

./redis-server &

2.通过指定配置文件启动

可以为redis服务启动指定配置文件,例如配置为/etc/redis/6379.conf

进入redis根目录,输入命令:

./redis-server /etc/redis/6379.conf

#如果更改了端口,使用`redis-cli`客户端连接时,也需要指定端口,例如:

redis-cli -p 6380

后台方式启动

修改redis.conf,把daemonize no修改成daemonize yes

停止:redis-cli shutdown

查找进程号

ps -ef | grep redis

杀进程

kill -6 pid

redis快照问题错误信息如下:

MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.

排查与解决步骤:

进入redis使用info命令查看,会发现最后一次快照失败的信息

rdb_last_bgsave_status:err

处理方法:

1.进入redis临时关闭配置(如果需要,要再redis.conf上写上该配置,不然下次重启redis配置会失效)

config set stop-writes-on-bgsave-error no


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12079272.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存