質問編集履歴
1
補足情報追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,4 +78,42 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
+
redis.confの修正について(マスター、スレーブ×1)
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
bind 127.0.0.1→#bind 127.0.0.1
|
86
|
+
|
87
|
+
protected-mode yes→protected-mode no
|
88
|
+
|
81
|
-
|
89
|
+
timeout 0→timeout 60
|
90
|
+
|
91
|
+
tcp-keepalive 300→tcp-keepalived 0
|
92
|
+
|
93
|
+
stop-writes-on-bgsave-error yes→stop-writes-on-bgsave-error no
|
94
|
+
|
95
|
+
↑変更した記憶がないのでredisが自分で変更したのではないかと(かつ2台中マスター側のみ)
|
96
|
+
|
97
|
+
slave-read-only yes→slave-read-only no
|
98
|
+
|
99
|
+
slaveof (スレーブ側のみ)
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
redis-sentinel.confの設定について(redisとは別サーバ×1)
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
protected-mode no
|
108
|
+
|
109
|
+
daemonize no
|
110
|
+
|
111
|
+
sentinel monitor redis_www_session (マスターIP) 6379 1
|
112
|
+
|
113
|
+
sentinel down-after-milliseconds redis_www_session 3000
|
114
|
+
|
115
|
+
# Generated by CONFIG REWRITE
|
116
|
+
|
117
|
+
sentinel failover-timeout redis_www_session 90000
|
118
|
+
|
119
|
+
sentinel known-slave redis_www_session (スレーブIP) 6379
|