博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Redis]windows下redis的安装和启动
阅读量:6850 次
发布时间:2019-06-26

本文共 1368 字,大约阅读时间需要 4 分钟。

官方的下载地址是: 

在win64一栏中能够看到redis原本是没有windows版本号的,windows版本号是Microsoft Open Tech团队开的

给出了一个github的链接地址: 

下载:

在  页面的右下角有  Download Zip的字样,点击之后就能够下载源代码的zip包了。

然后就是解压: 这里解压的文件夹是D:\devsofts\redis

启动的程序在子文件夹 D:\devsofts\redis\bin\release 下,一个是32位。一个是64位的。

配置和启动:

在dos命令行环境下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
D:\devsofts\redis>D:\devsofts\redis\bin\release\redis-server.exe redis.conf
                
_._
           
_.-``__ 
''
-._
      
_.-``    `.  `_.  
''
-._           Redis 2.6.12 (00000000
/0
) 64 bit
  
.-`` .-```.  ```\/    _.,_ 
''
-._
 
(    '      ,       .-`  | `,    )     Running 
in 
stand alone mode
 
|`-._`-...-` __...-.``-._|
'` _.-'
|     Port: 6379
 
|    `-._   `._    /     _.-'    |     PID: 3792
  
`-._    `-._  `-./  _.-
'    _.-'
 
|`-._`-._    `-.__.-
'    _.-'
_.-'|
 
|    `-._`-._        _.-
'_.-'    
|           http:
//redis
.io
  
`-._    `-._`-.__.-
'_.-'    
_.-'
 
|`-._`-._    `-.__.-
'    _.-'
_.-'|
 
|    `-._`-._        _.-
'_.-'    
|
  
`-._    `-._`-.__.-
'_.-'    
_.-'
      
`-._    `-.__.-
'    _.-'
          
`-._        _.-'
              
`-.__.-'
 
[3792] 01 May 23:58:25.400 
# Server started, Redis version 2.6.12
[3792] 01 May 23:58:25.401 * The server is now ready to accept connections on po
rt 6379

命令行所在的文件夹是redis的根文件夹

启动的命令是bin下exe命令。这里能够把

1
D:\devsofts\redis\bin\release\

加入到系统路径中去。

測试:

使用client程序訪问:

1
2
3
4
5
6
D:\devsofts\redis>D:\devsofts\redis\bin\release\redis-cli.exe -h 
192.168
.
0.106 
-
6379
redis 
192.168
.
0.106
:
6379
set 
admin orangleliu
OK
redis 
192.168
.
0.106
:
6379
get 
admin
"orangleliu"

后面開始学习简单的使用。python连接redis的操作。

转载地址:http://lorul.baihongyu.com/

你可能感兴趣的文章