7 lines
277 B
Bash
7 lines
277 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
sed -i "s/\$SENTINEL_QUORUM/$SENTINEL_QUORUM/g" /redis/sentinel.conf
|
||
|
sed -i "s/\$SENTINEL_DOWN_AFTER/$SENTINEL_DOWN_AFTER/g" /redis/sentinel.conf
|
||
|
sed -i "s/\$SENTINEL_FAILOVER/$SENTINEL_FAILOVER/g" /redis/sentinel.conf
|
||
|
|
||
|
redis-server /redis/sentinel.conf --sentinel
|