Windows10にRedis3.0.504環境を構築する方法

1. インストール方法
(1).「Redis-x64-3.0.504.msi」をダブルクリックします。

(2).「Next」ボタンをクリックします。

(3).「I accept the terms in the License Agreement」にチェックを入れて、「Next」ボタンをクリックします。

(4).インストールパス:C:\Program Files\Redis\
「Add the Redis installation folder to the PATH environment variable」チェックを入れて、「Next」をクリックします。

(5).ポート番号:6379
「Next」をクリックします。

(6).「Install」をクリックします。

(7).ユーザアカウント制御確認ダイアログが表示され、「OK」をクリックします。

(8).「Finish」をクリックします。

2.redis起動方法
実行コマンド
>cd C:\Program Files\Redis
>redis-server redis.windows.conf
[3500] 19 Jan 11:17:16.227 # Creating Server TCP listening socket *:6379: bind: No error

C:\Program Files\Redis>redis-cli.exe
127.0.0.1:6379> shutdown
not connected>exit

>redis-server redis.windows.conf
_._
_.-“__ "-._
_.-“ `. `_. "-._ Redis 3.0.504 (00000000/0) 64 bit
.-“ .-“`. “`\/ _.,_ "-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-…-` __…-.“-._|’` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 3468
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'

[3468] 19 Jan 11:19:03.925 # Server started, Redis version 3.0.504
[3468] 19 Jan 11:19:03.930 * DB loaded from disk: 0.005 seconds
[3468] 19 Jan 11:19:03.931 * The server is now ready to accept connections on port 6379

3.エラー現象の解決対策
現象1
>redis-server
Warning: no config file specified, using the default config. In order to specify a config file
対策
>redis-server redis.windows.conf

現象2
>redis-server redis.windows.conf
Creating Server TCP listening socket *:6379: bind: No error
対策
>redis-cli.exe
>shutdown
>exit
>redis-server redis.windows.conf

Redis

Posted by arkgame