`

redis note

 
阅读更多
10.1.64.100

info replication

ps -ef|grep redis

./redis-server redis.conf

./redis-sentinel sentinel.conf &

./redis-cli shutdown

实例2
redis>
slaveof no one

实例1
redis>
slaveof 10.1.64.99 6379

./redis-cli -h 10.1.64.98 -p 6379
./redis-cli -h 10.1.64.98 -p 26379

./redis-cli -h 10.1.64.99 -p 6379
./redis-cli -h 10.1.64.99 -p 26379

./redis-cli -h 10.1.64.100 -p 6379
./redis-cli -h 10.1.64.100 -p 26379

查看全部
info
info server
查看哨兵
info sentinel
查看主
sentinel masters
sentinel master mymaster
查看副
sentinel slaves mymaster
查看名字mymaster的主服务器IP和port
sentinel get-master-addr-by-name mymaster

强制选举
sentinel failover mymaster
sentinel get-master-addr-by-name mymaster

登陆操作
-------------------------
./redis-cli
auth "password"

key value 操作
-------------------------
查看所有key
keys *
分享到:
评论

相关推荐

    Redis-Note-20230315

    Redis笔记

    redis-3.0-annotated-cmake-in-clion

    NOTE: CLion调试redis源码 背景 CLion使用CMake来管理编译,而redis源码本身使用make,因此直接将redis源码导入CLion无法直接运行,需要配置CMake。 由于学习过程中参考的书籍为,因此源码版本也跟本书保持一致。 ...

    Linux上redis单机安装+集群安装笔记_redis-cluster-note.zip

    Linux上redis单机安装+集群安装笔记_redis-cluster-note

    Centos开机自启动redis.txt

    # Note that Redis will write a pid file in /var/run/redis.pid when daemonized. daemonize yes ``` 将`daemonize yes`这一行取消注释,表示Redis将以守护进程的方式运行,这样就不需要手动维护进程了。 2. ...

    dappFinance#Note#【Redis】Redis执行Lua脚本Demo1

    1. 减少网络开销:本来多次网络请求的操作,可以用一个请求完成,原先多次请求的逻辑放在redis服务器上完成 2. 原子操作:Redis会将整个脚本作为一个整体

    redis-note:Redis学习笔记

    Redis是一款高性能的键值对数据库,常用于数据缓存、消息队列以及分布式计算等多种...在`redis-note-master`这个压缩包中,你可能会找到关于这些知识点的详细解释、示例代码和实战案例,帮助你更好地理解和应用Redis。

    codersm#note#Redis入门系列一初识Redis(todo)1

    1、纯内存访问,Redis将_x0008_所有数据放在内存中,内存_x0008_响应时长大约为100纳秒,这是Redis_x0008_达到每秒万级别访问的重要基

    Syske#person-learning-note#Redis数据类型1

    Redis 数据类型Redis支持五种数据类型:String(字符串)string是redis最基本的类型,你可以理解成与Memcached一模一样的类型,一个

    perrynzhou#nosql-note#redis源码调试环境1

    redis源码调试系统GCC要求redis6.x需要gcc 5.3以上的版本,因此需要升级gcc版本$ scl enable devtoolset-9 bash

    JingyuTongdlut#book-note#redis实战1

    串行的缺点:相对多线程程序,没有充分利用到多核 CPU,为了同时享受串行以及多核的优点,redis 支持了 io thread,具体来说,让计算串行化,但是,对

    Google Go 客户端和 Redis 连接器.zip

    Google Go 客户端和 Redis 连接器Go-RedisRedis的Go客户端和连接器。初始版本提供了使用同步调用语义支持 (~) 当前 Redis 命令全集的接口和实现。...(请始终参考 compliance_note.txt 来了解特定分支的当前

    yangc91#note#redis在windows下注册为服务1

    redis在windows下注册为服务下载, windows版地址安装服务#安装服务#指定服务名称#指定端口卸载服务启动服务停止服务。

    swoole + redis 实现短信异步发送

    上述代码创建了一个Swoole服务器,该服务器启动一个子进程来监听Redis的`note_list`频道。每当有新的验证码消息发布时,都会触发自定义函数`f`,并将验证码保存到文件中。 2. **启动Swoole进程** 通过命令行执行...

    完美解决linux上启动redis后配置文件未生效的问题

    修改redis.conf后,重启redis,...# Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf 所以问题就在这

    redis for windows

    Redis是一款开源、高性能的键值对存储系统,它支持多种数据结构,如字符串、哈希、列表、集合、有序集合等。"redis for windows" 是 Redis 在微软操作系统上的实现,使得Windows用户也能方便地利用Redis的强大功能。...

    PHP Redis扩展无法加载的问题解决方法

    最近在工作中需要使用PHP访问Redis,从https://github.com/phpredis/phpredis下载了phpredis,并且按照官方的说明进行了安装 phpize ./configure [--enable-redis-igbinary] make && make install 但是在重启...

    API SpringBoot + Shiro + Java-Jwt + Redis(Jedis).zip

    Herottps: //github.com/wang926454/VueStudy/tree/master/VueStudy08-JWT问题#14 重复请求会不会生成多个token#19 跨域sso问题#29 Token刷新并发...实现Shiro的Cache(Redis)功能 https: //note.dolyw.com/shirojwt/S

    Redis 漏洞利用工具.zip

    Redis Vulnerability Exploitation Tool Redis Vulnerability Exploitation Tool declares that this tool is only for personal security research and study. The user shall be responsible for any direct or ...

    Redis 文档源代码(包括 markdown 和元数据文件、转换脚本等).zip

    Redis documentation source code (including markdown and metadata files, conversion scripts, etc.) Redis documentation Important note This repository has been replaced by the new Redis documentation ...

Global site tag (gtag.js) - Google Analytics