zoukankan      html  css  js  c++  java
  • Windows 下面的 redis GUI操作工具

    1. 下载地址

    redisdesktop

    https://redisdesktop.com/download

    2. 下载windows版本并且进行安装

    处理redis 的参数 

    根据上面的一篇博客 采取了 自动启动的redis 的处置

    参数文件也变成了 /etc/redis/6379.conf

    所以修改这个配置文件

    vim /etc/redis/6379.conf
    #修改点1 bind
    将bind 修改为 0.0.0.0
    这样其他机器都可以远程访问
    
    增加requirepass 参数 保证redis 不是随机访问的 必须私用密码
    
    requirepass Test6530

    修改点

    # If the master is password protected (using the "requirepass" configuration
    # directive below) it is possible to tell the slave to authenticate before
    # starting the replication synchronization process, otherwise the master will
    # refuse the slave request.
    #
    # masterauth <master-password>
    requirepass Test6530
    # When a slave loses its connection with the master, or when the replication
    # is still in progress, the slave can act in two different ways:

    以及

    # ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
    # internet, binding to all the interfaces is dangerous and will expose the
    # instance to everybody on the internet. So by default we uncomment the
    # following bind directive, that will force Redis to listen only into
    # the IPv4 lookback interface address (this means Redis will be able to
    # accept connections only from clients running into the same computer it
    # is running).
    #
    # IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
    # JUST COMMENT THE FOLLOWING LINE.
    # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    bind 0.0.0.0

    将保护模式关掉

    protected-mode yes
    将yes 修改为 no .

    3. 安装redisdesktop

    过程简单 略过

     操作界面

  • 相关阅读:
    Unity制作地形的常用插件之GAIA
    JetBrains套装免费学生授权申请(IntelliJ, ReSharper, WebStorm...)
    Unity2D游戏开发之保卫萝卜
    Unity制作出《超级马里奥》的2D和3D混合效果
    Unity2019.1中文技术手册离线版
    暗黑战神! Unity3D网游ARPG实战案例
    Unity移动端入门
    win10如何查看电脑端口使用情况
    自制FastDFS文件服务器虚拟机分享
    MySQL:使用SQL语句删除所有索引
  • 原文地址:https://www.cnblogs.com/jinanxiaolaohu/p/9279103.html
Copyright © 2011-2022 走看看