標籤:
redis安裝二 redis-2.8.19
建立目錄 mkdir redis_7000
解壓縮到目錄redis_7000, tar -xzvf redis-2.8.19 -C redis_7000
進入目錄redis_7000/redis-2.8.19,把目前的目錄下的所有檔案以及子目錄移動到目前的目錄的父目錄,cp * ../
刪除redis-2.8.19目錄,rm -rf redis-2.8.19。
回到目錄redis_7000,執行make,此時,在目前的目錄的src目錄總多了redis-server檔案。不著急,先修改一下設定檔。
拷貝一個redis.conf 的副本,儲存為7000.conf,開啟7000.conf,修改兩個參數,分別為:
port
# Accept connections on the specified port, default is 6379.# If port 0 is specified Redis will not listen on a TCP socket.port 7000
daemonize
# By default Redis does not run as a daemon. Use ‘yes‘ if you need it.# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.daemonize yes
在vim中使用尋找命令尋找指定字串
在命令模式下輸入
/word 這個是尋找檔案中“word”這個單詞,是從檔案上面到下面尋找
?word 這個是尋找檔案中“word”這個單詞,是從檔案下面到上面尋找
按下Enter鍵後,vim將搜尋指定的 pattern,並將游標定位在pattern的第一個字元處。
要搜尋pattern的其他匹配,請按 n 或 N:
n,繼續朝同一方向搜尋 place。
N,反方向進行搜尋。
現在啟動redis伺服器,[[email protected] redis_7000]# ./src/redis-server 7000.conf
開啟用戶端,
[[email protected] redis_7000]# ./src/redis-cli -p 7000127.0.0.1:7000>
ok,在7000連接埠上啟動成功了。這是一種比較簡單的安裝方式。
redis安裝二