1.安裝redis
2.啟動redis
redis-server redis.conf
3.登入redis
redis-cli -p 6379 -a ***x
4.退出redis失敗
可能原因是:dump.rdb檔案沒有指定路徑
解決方法是:做如下設定
# the filename where to dump the db
dbfilename dump.rdb
# the working directory.
## the db will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.##
# note that you must specify a directory here, not a file name.
dir /home/bl/data/redis
5.登入redis失敗
可能原因是:linux防火牆沒關
解決辦法是:關閉linux防火牆
6. redis.conf
aof配置
b.redis 支援三種同步 aof 檔案的策略 :
no: 不進行同步,系統去操作 . faster.
always: always 表示每次有寫操作都進行同步 . slow, safest.
everysec: 表示對寫操作進行累積,每秒同步一次 . compromise.
在某些 linux 配置中會阻止過長的 fsync() 請求。注意現在沒有任何修復,即使 fsync 在另外乙個執行緒進行處理
為了減緩這個問題,可以設定這個引數
Redis安裝配置以及開機啟動
2.編譯完成後,在src目錄下,有四個可執行檔案redis server redis benchmark redis cli和redis.conf。然後拷貝到乙個目錄下 mkdir usr redis cp redis server usr redis cp redis benchmark usr ...
Redis 啟動 配置AOF
rdb 預設開啟,aof 需手動開啟,他們生成的檔案都在redis service目錄下。如果資料無所謂,可以單獨使用rdb。如果只做為快取使用,rdb和aof都不需要開啟。其他情況官方建議都開啟。資料檔案位置示例 開啟配置檔案 重啟 redis 生效 可在配置檔案裡設定同步頻率 始終同步,每次 r...
Redis安裝以及配置
tar zxvf redis 2.8.17.tar.gz12 34cd redis 2.8.17 make cd src make install prefix usr local redis 進入redis目錄,建立etc資料夾 mv redis.conf usr local redis etc1...