一.安裝redis
linux上直接yum安裝
yum install redis
二.配置檔案修改
1.密碼修改
vi /etc/redis.conf
#修改密碼requirepass 123456888888
2.開啟遠端訪問
#注釋掉下面這行,否則繫結本地ip#bind
127.0.0.1
3.關閉保護模式,否則無法遠端訪問
# by defaultprotected mode is enabled. you should disable it only if
protected-mode no
三.啟動redis
redis-server /etc/redis.conf &
redis遠端連線配置
解決redis遠端連線不上的問題 redis現在的版本開啟redis server後,redis cli只能訪問到127.0.0.1,因為在配置檔案中固定了ip,因此需要修改redis.conf 有的版本不是這個檔名,只要找到相對應的conf字尾的檔案即可 檔案以下幾個地方。1.bind 127.0...
redis 安裝 配置
redis的安裝 配置 安裝步驟如下 wget wget tar zxvf redis 2.6.14.tar.gz cd redis 2.6.14 直接make就行了 make 執行完後,執行 make test 如果報如下錯誤 cd src make test you need tcl 8.5 o...
redis安裝配置
安裝環境 ubuntu 16.04.3 64位 wget io releases redis 4.0 6.tar gztar zxvf redis 4.0 6.tar gz2.安裝redis 進入解壓目錄執行 make 命令即可安裝 cd redis 4.0.6 make 注 執行 make 前需安...