Redis 安装及部署

1.使用yum安装redis

yum install redis

2.修改 redis.conf 文件

vim /etc/redis.conf

修改内容如下:

# 将`daemonize`由`no`改为`yes` 
daemonize yes

# 默认绑定的是回环地址,默认不能被其他机器访问 
# bind 127.0.0.1

# 是否开启保护模式,由yes该为no 
protected-mode no

3.启动redis服务

./redis-server /etc/redis.conf

4.本地打开客户端测试

[root@10 bin]# ./redis-cli
127.0.0.1:6379> set name test
OK
127.0.0.1:6379> get name
"test"
127.0.0.1:6379> exit
[root@10 bin]#

5.远程测试

root@bogon ~ % telnet 17.167.45.217 6379
Trying 17.167.45.217...
Connected to bogon.
Escape character is '^]'.
quit
+OK
Connection closed by foreign host.
root@bogon ~ %

6.关闭后端启动的redis服务

./redis-cli shutdown

7.其他命令说明

  • redis-server :启动 redis 服务
  • redis-cli :进入 redis 命令客户端
  • redis-benchmark : 性能测试的工具
  • redis-check-aof : aof 文件进行检查的工具
  • redis-check-dump : rdb 文件进行检查的工具
  • redis-sentinel : 启动哨兵监控服务

猜你喜欢

转载自blog.csdn.net/yu97271486/article/details/120326052