美文网首页
1.redis快速安装

1.redis快速安装

作者: 3517a85fd522 | 来源:发表于2019-01-29 16:31 被阅读0次

    1.redis安装

    2.redis可执行文件说明

    • redis-server -> redis服务器
    • redis-cli -> redis客户端
    • redis-benchmark -> redis性能测试工具
    • redis-check-aof -> aof文件修复工具(涉及到redis持久化方式,后续讲解)
    • redis-check-dump ->RDB文件修复工具(涉及到redis持久化方式,后续讲解)
      redis-sentinel -> sentinel服务器(2.8以后)

    3.redis三种启动方法

    • 最简启动 (按照默认配置启动,不推荐)
      redis-server
    • 动态参数启动
      redis-server --port 6379
    • 配置文件启动(推荐)
      redis-server configPath

    4.启动验证

    • ps -ef | grep redis
    • netstat -antpl | grep redis
    • redis-cli -h ip -p port ping

    5.客户端连接方式

    redis-cli -h 192.168.1.10 -p 6379 如果连接本机直接用redis-cli即可

    6.redis客户端返回值

    • 状态回复
      ping > pong
    • 错误回复
      hget hello field > (error) WRONGTYPE OPeration against
    • 整数回复
      incr hello > 1
    • 字符串回复
      get hello > "world"
    • 多行字符串回复
      mget hello foo > "world" \n "bar"

    相关文章

      网友评论

          本文标题:1.redis快速安装

          本文链接:https://www.haomeiwen.com/subject/tsixsqtx.html