Linux下Redis的基本使用

Posted 北落不吉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下Redis的基本使用相关的知识,希望对你有一定的参考价值。

1. 简介

REmote DIctionary Server(Redis) 是一个由Salvatore Sanfilippo写的key-value存储系统.

2. 安装

安装方法如下:

# yum install redis hiredis hiredis-devel

3. 启动

先要修改启动文件

# vi /usr/lib/systemd/system/redis.service ExecStart=/usr/bin/redis-server /etc/redis.conf --daemonize no ==> ExecStart=/bin/redis-server /etc/redis.conf --daemonize no ExecStop=/usr/bin/redis-shutdown ==> ExecStop=/bin/redis-shutdown

 

# systemctl start redis.service
# systemctl enable redis.service

 

启动失败解决办法

# chown redis:redis -R /var/log/redis/

4. 命令

Redis 客户端的基本语法为

$ redis-cli

 

参考:
<
Redis教程>
<Redis Command>

以上是关于Linux下Redis的基本使用的主要内容,如果未能解决你的问题,请参考以下文章

手把手教你在Windows和Linux下安装Redis及了解Redis基本操作

Linux下安装redis

Linux安装Redis与部署

linux中怎么查看mysql数据库版本

Linux下memcache编译安装与基本使用

一篇搞定学会Redis基本使用(万字长篇)