mirror of https://github.com/dunwu/db-tutorial.git
9 lines
227 B
Batchfile
9 lines
227 B
Batchfile
|
@echo off
|
||
|
SET redis_server=..\..\bin\windows\redis-server
|
||
|
SET redis_sentinel=..\..\bin\windows\redis-server
|
||
|
|
||
|
pushd ..
|
||
|
start %redis_server% server-6382/redis.conf
|
||
|
start %redis_sentinel% server-6382/sentinel.conf --sentinel
|
||
|
popd
|