共计 3657 个字符,预计需要花费 10 分钟才能阅读完成。
1、前言
Redis 是常用基于内存的 Key-Value 数据库,比 Memcache 更先进,支持多种数据结构,高效,快速。用 Redis 可以很轻松解决高并发的数据访问问题;做为时时监控信号处理也非常不错。
2、安装
// 在 Ubuntu Linux 终端中安装 Redis 服务器端
sudo apt-get install redis-server
安装完成后,Redis 服务器会自动启动,我们检查 Redis 服务器程序
// 在终端中检查 Redis 服务器系统进程
ps -aux|grep redis
可以看到:
// 在终端中通过启动命令检查 Redis 服务器状态
netstat -nlt|grep 6379
显示: tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN
// 通过启动命令检查 Redis 服务器状态
sudo /etc/init.d/redis-server status
显示: redis-server is running
3、通过命令行客户端访问 Redis
安装 Redis 服务器,会自动地一起安装 Redis 命令行客户端程序。
在本机输入 redis-cli 命令就可以启动,客户端程序访问 Redis 服务器。
~ redis-cli
redis 127.0.0.1:6379>
# 命令行的帮助
redis 127.0.0.1:6379> help
redis-cli 2.2.12
Type: "help @" to get a list of commands in
"help" for help on
"help" to get a list of possible help topics
"quit" to exit
# 查看所有的 key 列表
redis 127.0.0.1:6379> keys *
(empty list or set)
基本的 Redis 客户端命令操作
- 增加一条字符串记录 key1
# 增加一条记录 key1
redis 127.0.0.1:6379> set key1 "hello"
OK
# 打印记录
redis 127.0.0.1:6379> get key1
"hello"
2 . 增加一条数字记录 key2
# 增加一条数字记录 key2
set key2 1
OK
# 让数字自增
redis 127.0.0.1:6379> INCR key2
(integer) 2
redis 127.0.0.1:6379> INCR key2
(integer) 3
# 打印记录
redis 127.0.0.1:6379> get key2
"3"
3. 增加一条列表记录 key3
# 增加一个列表记录 key3
redis 127.0.0.1:6379> LPUSH key3 a
(integer) 1
# 从左边插入列表
redis 127.0.0.1:6379> LPUSH key3 b
(integer) 2
# 从右边插入列表
redis 127.0.0.1:6379> RPUSH key3 c
(integer) 3
# 打印列表记录,按从左到右的顺序
redis 127.0.0.1:6379> LRANGE key3 0 3
1) "b"
2) "a"
3) "c"
4. 增加一条哈希表记录 key4
# 增加一个哈希记表录 key4
redis 127.0.0.1:6379> HSET key4 name "John Smith"
(integer) 1
# 在哈希表中插入,email 的 Key 和 Value 的值
redis 127.0.0.1:6379> HSET key4 email "abc@gmail.com"
(integer) 1
# 打印哈希表中,name 为 key 的值
redis 127.0.0.1:6379> HGET key4 name
"John Smith"
# 打印整个哈希表
redis 127.0.0.1:6379> HGETALL key4
1) "name"
2) "John Smith"
3) "email"
4) abc@gmail.com
5. 增加一条哈希表记录 key5
# 增加一条哈希表记录 key5,一次插入多个 Key 和 value 的值
redis 127.0.0.1:6379> HMSET key5 username antirez password P1pp0 age 3
OK
# 打印哈希表中,username 和 age 为 key 的值
redis 127.0.0.1:6379> HMGET key5 username age
1) "antirez"
2) "3"
# 打印完整的哈希表记录
redis 127.0.0.1:6379> HGETALL key5
1) "username"
2) "antirez"
3) "password"
4) "P1pp0"
5) "age"
6) "3"
6. 删除记录
# 查看所有的 key 列表
redis 127.0.0.1:6379> keys *
1) "key2"
2) "key3"
3) "key4"
4) "key5"
5) "key1"
# 删除 key1,key5
redis 127.0.0.1:6379> del key1
(integer) 1
redis 127.0.0.1:6379> del key5
(integer) 1
# 查看所有的 key 列表
redis 127.0.0.1:6379> keys *
1) "key2"
2) "key3"
3) "key4"
4、修改 Redis 的配置
1、使用 Redis 的访问账号
默认情况下,访问 Redis 服务器是不需要密码的,为了增加安全性我们需要设置 Redis 服务器的访问密码。设置访问密码为 redis。
用 vi 打开 Redis 服务器的配置文件 redis.conf
~ sudo vi /etc/redis/redis.conf
# 取消注释 requirepass
requirepass redis
2、让 Redis 服务器被远程访问
默认情况下,Redis 服务器不允许远程访问,只允许本机访问,所以我们需要设置打开远程访问的功能。
用 vi 打开 Redis 服务器的配置文件 redis.conf
~ sudo vi /etc/redis/redis.conf
# 注释 bind
#bind 127.0.0.1
修改后,重启 Redis 服务器。
~ sudo /etc/init.d/redis-server restart
Stopping redis-server: redis-server.
Starting redis-server: redis-server.
未使用密码登陆 Redis 服务器
~ redis-cli
redis 127.0.0.1:6379> keys *
(error) ERR operation not permitted
发现可以登陆,但无法执行命令了。
登陆 Redis 服务器,输入密码
~ redis-cli -a redisredis
redis 127.0.0.1:6379> keys *
1) "key2"
2) "key3"
3) "key4"
登陆后,一切正常。
我们检查 Redis 的网络监听端口
// 检查 Redis 服务器占用端口
~ netstat -nlt|grep 6379
tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN
我们看到从之间的网络监听从 127.0.0.1:6379 变成 0 0.0.0.0:6379,表示 Redis 已经允许远程登陆访问。
我们在远程的另一台 Linux 访问 Redis 服务器
~ redis-cli -a redisredis -h 192.168.1.199
redis 192.168.1.199:6379> keys *
1) "key2"
2) "key3"
3) "key4"
远程访问正常。通过上面的操作,我们就把 Redis 数据库服务器,在 Ubuntu Linux 中的系统安装完成。
下面关于 Redis 的文章您也可能喜欢,不妨参考下:
Ubuntu 14.04 下 Redis 安装及简单测试 http://www.linuxidc.com/Linux/2014-05/101544.htm
Redis 主从复制基本配置 http://www.linuxidc.com/Linux/2015-03/115610.htm
Redis 集群明细文档 http://www.linuxidc.com/Linux/2013-09/90118.htm
Ubuntu 16.04 环境中安装 PHP7.0 Redis 扩展 http://www.linuxidc.com/Linux/2016-09/135631.htm
CentOS 7.0 安装 Redis 3.2.1 详细过程和使用常见问题 http://www.linuxidc.com/Linux/2016-09/135071.htm
Ubuntu 16.04 环境中安装 PHP7.0 Redis 扩展 http://www.linuxidc.com/Linux/2016-09/135631.htm
Ubuntu 15.10 下 Redis 集群部署文档 http://www.linuxidc.com/Linux/2016-06/132340.htm
Redis 实战 中文 PDF http://www.linuxidc.com/Linux/2016-04/129932.htm
Redis 的详细介绍:请点这里
Redis 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-01/139075.htm