Redis集群報錯

2021-10-13 07:41:49 字數 2256 閱讀 7581

搭建redis集群報錯

原因:經過排查,發現配置檔案中監聽的ip位址不可以有127.0.0.1的存在,只能監聽各本機的ip位址

經過修改並重啟服務後再次建立集群立刻成功

[root@localhost opt]# vi /etc/redis/

6379.conf '//修改配置檔案'

[root@localhost opt]# /etc/init.d/redis_6379 restart '//重啟'

stopping ...

waiting for redis to shutdown ...

redis stopped

starting redis server...

[root@localhost opt]# netstat -antp |grep 6379

tcp 0

0192.168

.233

.128

:16379

0.0.0.0:

* listen 76973

/redis-server

tcp 0

0192.168

.233

.128

:6379

0.0.0.0:

* listen 76973

/redis-server

[root@localhost opt]# redis-cli --cluster create --cluster-replicas 1

192.168

.158

.10:

6379

192.168

.158

.20:

6379

192.168

.158

.30:

6379

192.168

.158

.40:

6379

192.168

.158

.50:

6379

192.168

.158

.60:

6379

'//重新建立集群'

解決redis報錯

最近想學學redis,於是在虛擬機器搭了乙個環境 安裝好了redis,3.0.0版本。正常啟動,本地連線測試,竟然報了乙個錯誤 redi ception protocol error,got n as reply type byte,查了一下,原來是 啟動 redis server的時候 沒有加上配...

redis搭建集群(偽集群)

1 建立6個資料夾 2 複製redis.conf檔案,並修改redis.conf 配置檔案 3 建立集群 4 連線客戶端 5 檢視狀態 建立 6個資料夾來存放redis.conf,因為redis集群最小需要的是,三組三從,每個資料夾代表一台伺服器,6007跟6008可忽略 先複製乙個到6001資料夾...

搭建redis集群

sudo apt get install git python python pip sudo pip install redis sudo pip install e git sudo pip install e git git clone ll binaries total 19m 173582...