windows 安装 Redis

本文安装的是 免安装版本:

1:

https://github.com/MicrosoftArchive/redis/releases

下载Redis-x64-3.2.100.zip

设置密码

redis.windows.conf:

################################## SECURITY ###################################

# Require clients to issue AUTH <PASSWORD> before processing any other
# commands.  This might be useful in environments in which you do not trust
# others with access to the host running redis-server.
#
# This should stay commented out for backward compatibility and because most
# people do not need auth (e.g. they run their own servers).
#
# Warning: since Redis is pretty fast an outside user can try up to
# 150k passwords per second against a good box. This means that you should
# use a very strong password otherwise it will be very easy to break.
#
# requirepass foobared

requirepass 123456 这就是密码

解压到你的目录下;

2:

D:\soft\Redis>redis-server.exe redis.windows.conf

3:

再新打开一个cmd(不要关闭之前打的Cmd窗口),启动Redis客户端:

D:\soft\Redis>redis-cli.exe

4 :获取Redis中某个key的值,提示无权限。

127.0.0.1:6379> get name
(error) NOAUTH Authentication required.
127.0.0.1:6379>

5:

通过密码进入访问,使用 auth + 密码,如下:

127.0.0.1:6379> get name
(error) NOAUTH Authentication required.
127.0.0.1:6379> auth 123456
OK
127.0.0.1:6379> get name
"ok"
127.0.0.1:6379>
6、Spring整合Redis的一些配置(JedisPool单机版):

Spring.xml文件配置的JedisPool池:
Java代码  收藏代码

    <bean id="jedisPool" class="redis.clients.jedis.JedisPool">
            <constructor-arg name="poolConfig" ref="jedisPoolConfig"></constructor-arg>
            <constructor-arg name="host" value="${redis.host}" />
            <constructor-arg name="port" value="${redis.port}" type="int" />
            <constructor-arg name="timeout" value="${redis.timeout}" type="int" />
            <constructor-arg name="password" value="#{‘${redis.password}‘!=‘‘?‘${redis.password}‘:null}" />
            <!-- <constructor-arg name="database" value="${redis.db.index}" type="int" /> -->
        </bean>  

redis.properties配置文件
Java代码  收藏代码

    #*****************jedis连接参数设置*********************#
    #redis服务器ip#
    redis.host=192.168.100.66
    #redis服务器端口号#
    redis.port=6379
    #超时时间:单位ms#
    redis.timeout=3000
    #授权密码,没有密码则不设置,但属性要保留#
    redis.password=123456  

7、如果不是安装版的Redis,又想让Redis自启动的时候,可以向Windows添加自启动服务:

  1、进入到Redis的安装目录

    D:\soft\Redis>  

   2、执行命令:

    redis-server --service-install redis.windows.conf --loglevel notice --service-name Redis  

  3、完整示例:

    D:\soft\Redis>redis-server --service-install redis.windows.conf --loglevel notice --service-name Redis  

 --service-install redis.windows.conf  指定redis配置文件

--loglevel notice 指定日志级别

--service-name Redis 指定服务名称

运行结果如下( Redis successfully installed as a service.):

    D:\soft\Redis>redis-server --service-install redis.windows.conf --loglevel notice --service-name Redis
    [7176] 12 Jul 09:34:50.730 # Granting read/write access to ‘NT AUTHORITY\NetworkService‘ on: "D:\soft\Redis" "D:\soft\Redis\"
    [7176] 12 Jul 09:34:50.730 # Redis successfully installed as a service.  

  4、安装服务后,默认不是马上启动的,但启动类型是自启动,如果想马上启动,请执行命令:
    redis-server --service-start  

    服务成功启动显示如下:
    [9876] 12 Jul 09:57:41.251 # Redis service successfully started.  

或者重启电脑。

停止服务:

    redis-server --service-stop  

5、删除Redis服务:

    redis-server --service-uninstall
时间: 2024-11-05 06:07:15

windows 安装 Redis的相关文章

Linux及Windows安装Redis(详细)

Linux及Windows安装Redis 1.Windows安装教程 1.1下载 https://github.com/MSOpenTech/redis/releases 进入github里下载redis Windows版压缩包 将我们下载好的文件放进新建的一个Redis文件夹(我在C盘创建了一个redis的文件夹) 1.2启动服务 打开我们Windows版的dos命令的窗口 将你命令窗口切换到你redis文件夹的目录 运行命令redis-server.exe redis.windows.con

C#中使用Redis学习一 windows安装redis服务器端和客户端

学习背景 今天是2015年1月2日,新年刚开始的第二天,先祝大家元旦快乐啦(迟到的祝福吧^_^).前段时间一直写Jquery插件开发系列博文,这个系列文章暂停一段时间,最近一直在看redis,我将把redis作为一个系列写一下我的学习历程.正好现在项目中使用了redis,本着学习探索的精神,准备写一下我对redis的一个学习历程和自己的一点感悟.在学习过程中也走了很多弯路,希望能对看这篇博文的朋友们带来点帮助.也算是写这边博文的最大目的了. 我在认识redis之前没有接触过任何NoSql思想.对

windows安装redis并为php5.4添加redis扩展

第一步 安装包下载 首先下载php5.4对应版本的php_igbinary.dll,php_redis.dll扩展.(php7以后可不需要php_igbinary.dl这个文件了) 链接:https://pan.baidu.com/s/1Zc3P1BcGwtc4-A0GorgBQQ 提取码:ic3o 复制这段内容后打开百度网盘手机App,操作更方便哦 第二步 安装redis扩展 将指定的php_igbinary.dll,php_redis.dll文件放入到对应php版本的ext目录下 修改对应p

Windows安装Redis并添加本地自启动服务并解决客户端dll报错

参考文章:https://blog.csdn.net/realjh/article/details/82026160 Redis下载: https://github.com/MicrosoftArchive/redis/releases https://github.com/microsoftarchive/redis/releases/tag/win-3.2.100 注:. msi方式可以直接安装,方便快捷,不过需要在redis.windows.conf设置密码.手动配置请下载.zip压缩包.

windows安装redis

下载安装包,由于redis不提供windows版本,但是通过官网了解,如下: The Redis project does not officially support Windows. However, the Microsoft Open Tech group develops and maintains this Windows port targeting Win64. Learn more 通过提示,找到下载链接:https://github.com/MSOpenTech/redis/

WINDOWS 安装Redis

step1:下载redis包:连接地址https://git.oschina.net/bingoPureLife/phpRedisFiles/raw/master/redis-server.zip step2:解压进入目录:根据系统选择32 或者 64bit step3:双击redis-server.exe step4:cmd 进入本目录:执行redis-cli.exe 测试

windows 安装 redis软件

访问   https://github.com/MSOpenTech/redis 点击 进入

Docker for windows : 安装Redis

一.创建并运行容器 docker run -d -it --name redis d4f259423416 PS C:\Users\K-Jso> docker images -a REPOSITORY TAG IMAGE ID CREATED SIZE docker4w/nsenter-dockerd latest cae870735e91 4 months ago 187kB hub.c.163.com/library/php 7.1 6cd3037a948f 6 months ago 371

php安装redis扩展

1.windows安装redis扩展 php_redis.dll (for windows) 的下载地址:http://windows.php.net/downloads/pecl/snaps/redis/2.2.5/ 根据php_info()显示出来的php版本信息选择对应的dll下载. 例如:我的PHP版本是5.4,VC9编译,PHP扩展TS(Thread Safe 线程安全),那么我就需要选择 php_redis-2.2.5-5.4-ts-vc9-x86.zip 将php_redis.dl