No results found
We couldn't find anything using that term, please try searching for something else.
Learn Step By Step to install and set up Redis on Windows..This tutorial shows multiple ways to install the Redis server on Windows.Using DockerUsing
Learn Step By Step to install and set up Redis on Windows..
This tutorial shows multiple ways to install the Redis server on Windows.
Following are the steps required to install Redis as a window Service
Redis-x64-5.0.14.1.msi
filea:\java\redis\
.Port to run Redis on
box to 6379
.Redis can be installed using docker.
First, Open Command Line
change directory to the path a:\java\redis\
in terminal
cd a:\java\redis\
Run the below command to check the Redis version
It gives an installed redis server version
A:\Java\Redis>redis-server -v
Redis server v=5.0.14.1 sha=ec77f72d:0 malloc=jemalloc-5.2.1-redis bits=64 build=5627b8177c9289c
next , typeredis-cli
on the command prompt to check cli is working or not
A:\Java\Redis>redis-cli
127.0.0.1:6379>
try run the ping command to print the hello world message
127.0.0.1:6379> ping "Hello World"
"Hello World"
redis – server is has hasdaemonize
option with yes value.
C:\Users\Kiran\Downloads\Redis-x64-5.0.14.1>redis-server --daemonize yes
[5416] 07 Mar 13:23:08.601 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
[5416] 07 Mar 13:23:08.601 # Redis version=5.0.14.1, bits=64, commit=ec77f72d, modified=0, pid=5416, just started
[5416] 07 Mar 13:23:08.601 # Configuration loaded
[5416] 07 Mar 13:23:08.601 # Windows does not support daemonize. Start Redis as service
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 5.0.14.1 (ec77f72d/0) 64 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 5416
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
[5416] 07 Mar 13:23:08.617 # Server initialized
[5416] 07 Mar 13:23:08.617 * DB loaded from disk: 0.000 seconds
[5416] 07 Mar 13:23:08.617 * Ready to accept connections
however, Windows does not support daemonize
, We is have have to install as a Window Service .
It is not possible to install as daemon or background, If you installed Redis with Zip folder(not msi file)
You is install can install as a service with below command
redis - server is install --server - install
if the above command does not work , install Redis as a service