1.先到Redis官网(redis.io)下载redis安装包 wget http://download.redis.io/releases/redis-5.0.4.tar.gztar xzf redis-5.0.4.tar.gzcd redis-5.0.4cd srcmake install PREFIX=/usr/local/redis为了方便管理,将Redis文件中的conf配置文件和常用命令移动到统一文件中 mkdir -p /usr/local/redis/etc mv redis.c…
扩展包的下载地址:https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz tar xf phpredis-2.2.4.tar.gz cd phpredis-2.2.4 /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make && make install 看到下图表示安装成功: echo "ex…
服务器开放了6379端口 redis默认配置是只允许本地连接,我们需要修改redis配置文件 配置文件找到 bind 127.0.0.1 这一行注释掉 在找到 protected-mode yes 修改成 no 这样可以远程连接redis了, 另附:配置redis密码  找到 #requirepass foobared  这一行,把foobared替换成你的密码,打开注释就好了…
一.百度下载并安装VMware 二.下载centos 打开https://www.centos.org,点击“get centos now”,点击“DVD ISO”下载(也可以下滑点击“more download choice”/“list of current mirrors”,选择更多) 三.创建新的虚拟机 1.打开VMware 2.点击“创建新的虚拟机” 3.选择“自定义”后下一步 4.因为虚拟机硬件向下兼容,这里硬件兼容性选择默认后“下一步” 5.选择“稍后安装操作系统”后“下一步” 6…
1. CentOS机器上面按住那ansible yum install ansible 2. 安装 pywinrm  如果不安装 这个的话  ansible 会提示 没有 winrm 模块 注意需要先安装epelyum install epel-release yum install python-pip pip2 install --ignore-installed pywinrm 3. windows 的设置 参照转帖的blog 这里面修改 ansible 的host 文件 vim /etc…
1. 安装epel库,否则无法安装xrdp yum install epel-release 2.安装 xrdp yum install xrdp 3. 安装tigervnc-server yum install tigervnc-server 4. 配置xrdp.ini文件 vim /etc/xrdp/xrdp.ini 把max_bpp=32 改成24 5.配置selinux chcon -t bin_t /usr/sbin/xrdp chcon -t bin_t /usr/sbin/xrdp…
检查了网络适配器是NAT模式没问题,按照网友的方法成功解决: 1.vi /etc/sysconfig/network-scripts/ifcfg-ens123(不是每个主机都是ens123)  把ONBOOT=no,改为ONBOOT=yes 2.重启网络:service network restart 完美解决…
要点总结: 使用DBeaver Enterprise连接redis集群可以通过SQL语句查看key对应的value,但是没法查看key. 使用RedisDesktopManager连接redis集群可以通过SQL语句查看key对应的value,也可以查看key. DBeaver Enterprise版本信息: Redis集群是采用Docker方式部署的,版本是6.0.8 在配置连接的时候勾选这个,表示的是连接的是redis集群: 但是呢,连接后查看信息,没找到redis集群中存储的key名称等信…
Java连接Redis Jedis连接Redis,Lettuce连接Redis Jedis连接Redis 1. 创建maven项目 2. 引入依赖 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</sco…
摘要:如何通过springboot来集成操作Redis. 本文分享自华为云社区<SpringBoot连接Redis操作教程>,作者: 灰小猿. 今天来和大家分享一个如何通过springboot来集成操作Redis. 一.SpringBoot连接Redis springboot连接Redis时需要在pom文件中导入所需的jar包依赖,依赖如下: <!-- 加入jedis依赖 --> <dependency> <groupId>redis.clients<…