码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下Redis的基本使用

时间:2017-06-14 20:15:22      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:com   解决   shutdown   art   pre   span   chown   启动文件   emc   

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的基本使用

标签:com   解决   shutdown   art   pre   span   chown   启动文件   emc   

原文地址:http://www.cnblogs.com/hzl6255/p/7010541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!