centos7 安裝部署執行 Redis5
阿新 • • 發佈:2019-01-31
Redis5 安裝(先安裝gcc依賴)
安裝依賴:yum install gcc
安裝依賴:yum install gcc-c++
進入目錄:cd redis-5.0.0
安裝命令:make
Redis5 後臺執行
不推薦直接在前臺執行Redis,如果用 ctrl+z 將 redis 切換到後臺後,此時 redis 將被掛起,不能被連線。所以推薦以下方式執行Redis。不僅可以後臺執行,載入自己的配置檔案,還可以輸入日誌到 info.log 中。
進入目錄:cd redis-5.0.0 執行命令:nohup src/redis-server redis.conf > info.log 2>&1 &
Redis5 關閉服務
進入目錄:cd redis-5.0.0
關閉命令:src/redis-cli shutdown
Redis5 允許遠端連線
redis 預設只允許自己的電腦(127.0.0.1)連線。如果想要其他電腦進行遠端連線,將 配置檔案 redis.conf 中的 bind 127.0.0.1 註釋即可。然後重新執行redis服務。
redis.conf 中修改:
# bind 127.0.0.1
Redis5 增加密碼
redis 增加密碼需要修改 redis.conf 配置檔案,將 requirepass 的註釋解除掉,在後面加上自己的密碼。然後重新執行 redis 服務。
redis.conf 中修改:
requirepass mypassword
增加密碼後連線命令:src/redis-cli -a mypassword
增加密碼後關閉命令:src/redis-cli -a mypassword shutdown