報錯Address already in use 表示redis 埠被佔用
- 解決方法
輸入
ps -ef | grep -i redis
複製程式碼
檢視redis程式,出現如下顯示
[root@bisnow-01 redis-5.0.3]# ps -ef | grep -i redis
root 1153 1 0 22:21 ? 00:00:00 redis-server *:6379
root 1160 1125 0 22:25 pts/0 00:00:00 grep -i redis
複製程式碼
使用kill -9 強制殺掉redis-server程式即可
kill -9 1153
複製程式碼
- redis 配置密碼
在redis安裝目錄下修改 redis.conf 檔案
vim redis.conf
複製程式碼
找到 requirepass 欄位放開 可以自定義密碼
然後重啟服務即可