單機版Redis的安裝、搭建
Redis是c語言開發的。
安裝redis需要c語言的編譯環境。如果沒有gcc需要線上安裝。
執行下面的命令:
yum install gcc-c++
----------------------安裝步驟------------------------
第一步:redis的原始碼包上傳到linux系統。
第二步:解壓縮redis。
第三步:編譯。進入redis原始碼目錄。make
第四步:安裝。make install PREFIX=/usr/local/redis
PREFIX引數指定redis的安裝目錄。一般軟體安裝到/usr目錄下
----------------------配置步驟------------------------
redis的啟動:
前端啟動:在 /redis/bin 目錄下直接啟動redis-server
[[email protected] bin]# ./redis-server
這種啟動方式啟動後,終端不能進行操作,不推薦使用。
後臺啟動:
把安裝時,redis解壓目錄裡的 redis.conf 檔案複製到 /redis/bin 目錄下
[[email protected] redis-3.0.0]# cp redis.conf /usr/local/redis/bin/
修改配置檔案: vim redis.conf
紅框處的no改成yes,就可以後臺啟動redis了。
啟動命令:(需要加上配置檔案啟動)
[[email protected]
檢視redis程序:
[[email protected] bin]# ps aux|grep redis
root 5190 0.1 0.3 33936 1712 ? Ssl 18:23 0:00 ./redis-server *:6379
root 5196 0.0 0.1 4356 728 pts/0 S+ 18:24 0:00 grep redis
----------------------連線步驟------------------------
連線命令:
本地連線:
[[email protected]
預設連線localhost執行在6379埠的redis服務。
遠端連線:
[[email protected] bin]# ./redis-cli -h 192.168.25.129 -p 6379
-h:連線的伺服器的地址
-p:服務的埠號
關閉redis:
[[email protected] bin]# ./redis-cli shutdown