redis相容大部分posix系統,包括linux、os x和bsd等。
redis約定次版本號(即第乙個小數點後的數字)為偶數的版本是穩定版(如2.8版、3.0版),奇數版本是非穩定版(如2.7版、2.9版)
完整命令如下:
wget
tar xzf redis-stable.tar.gz
cd redis-stable
make
然後稍等一會就好了。
下面把幾個檔案複製到/usr/local/bin中
cp redis-server /usr/local/bin
cp redis-benchmark /usr/local/bin
cp redis-cli /usr/local/bin
cp redis.conf /usr/local/bin
cd /usr/local/bin
然後啟動服務
redis-server redis.conf
redis-server redis伺服器
redis-cli redis命令列客戶端
redis-benchmark redis效能測試工具
redis-check-aof aof檔案修復工具
redis-check-dump rdb檔案檢查工具
redis-sentinel sentinel伺服器(僅在2.8版以後)
新建乙個控制端,輸入
redis-cli -h 127.0.0.1 -p 6379
redis 提供了ping命令來測試客戶端與redis的連線是否正常,如果正常會收到pong。如:
redis-cli ping
pong
第二種方式是不附帶引數執行redis-cli,這樣會進入互動模式,可以自由輸入命令,例如:
[root@localhost 桌面]# redis-cli
127.0.0.1:6379> ping
pong
127.0.0.1:6379> echo hi
「hi」
輸入 ?可以檢視幫助資訊,例如:
127.0.0.1:6380> ?
redis-cli 3.2.8
to get help about redis commands type:
「help @」 to get a list of commands in
「help 」 for help on
「help 」 to get a list of possible help topics
「quit」 to exit
to set redis-cli perferences:
「:set hints」 enable online hints
「:set nohints」 disable online hints
set your preferences in ~/.redisclirc
修改redis伺服器的埠,預設為6379(6379是手機鍵盤上merz對應的數字,merz是一名義大利歌女的名字)。$ redis-server –port 6380
$ redis-cli shutdown
在centos7中為php7安裝redis擴充套件
wget tar xzf redis 4.0.6.tar.gz cd redis 4.0.6 make make prefix usr local redis install 安裝到指定目錄 現在去剛剛tar包解壓出來的原始碼目錄中,拷貝乙個redis.conf配置檔案,放到 usr local r...
linux系統下php原始碼安裝redis擴充套件
安裝redis 版本 2.2.4 進入 usr local src目錄 wget 2 解壓 安裝 tar zxvf phpredis 2.2.4.tar.gz cd phpredis 2.2.4 進入安裝目錄 usr local php bin phpize 用phpize生成configure配置...
在CentOS系統中安裝字型
前置背景 系統環境 centos6.5系統 jdk1.7 apache tomcat7.5 進入windows系統下的字型庫目錄 c windows fonts 把需要的宋體檔案 simsun.ttc 大小為10m 檔案複製乙份到新資料夾,把他重新命名為 simsun.ttf 參考圖1 拷貝sims...