Redis是經常使用基於內存的Key-Value數據庫,比Memcache更先進,支持多種數據結構,高效,快速。用Redis能夠很輕鬆解決高併發的數據訪問問題;作爲時時監控信號處理也很是不錯。mysql
//在終端中安裝Redis服務器端 sudo apt-get install redis-server
安裝完成後,Redis服務器會自動啓動,咱們檢查Redis服務器程序linux
//在終端中檢查Redis服務器系統進程 ps -aux|grep redis
能夠看到:
nginx
//在終端中經過啓動命令檢查Redis服務器狀態 netstat -nlt|grep 6379
顯示: tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTENredis
//經過啓動命令檢查Redis服務器狀態 sudo /etc/init.d/redis-server status
顯示: redis-server is running算法
安裝Redis服務器,會自動地一塊兒安裝Redis命令行客戶端程序。sql
在本機輸入redis-cli命令就能夠啓動,客戶端程序訪問Redis服務器。數據庫
~ redis-cli
redis 127.0.0.1:6379> # 命令行的幫助 redis 127.0.0.1:6379> help redis-cli 2.2.12 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 # 查看全部的key列表 redis 127.0.0.1:6379> keys * (empty list or set)
基本的Redis客戶端命令操做安全
# 增長一條記錄key1 redis 127.0.0.1:6379> set key1 "hello" OK # 打印記錄 redis 127.0.0.1:6379> get key1 "hello"
2 . 增長一條數字記錄key2bash
# 增長一條數字記錄key2 set key2 1 OK # 讓數字自增 redis 127.0.0.1:6379> INCR key2 (integer) 2 redis 127.0.0.1:6379> INCR key2 (integer) 3 # 打印記錄 redis 127.0.0.1:6379> get key2 "3"
3. 增長一條列表記錄key3服務器
# 增長一個列表記錄key3 redis 127.0.0.1:6379> LPUSH key3 a (integer) 1 # 從左邊插入列表 redis 127.0.0.1:6379> LPUSH key3 b (integer) 2 # 從右邊插入列表 redis 127.0.0.1:6379> RPUSH key3 c (integer) 3 # 打印列表記錄,按從左到右的順序 redis 127.0.0.1:6379> LRANGE key3 0 3 1) "b" 2) "a" 3) "c"
4.增長一條哈希表記錄key4
# 增長一個哈希記表錄key4 redis 127.0.0.1:6379> HSET key4 name "John Smith" (integer) 1 # 在哈希表中插入,email的Key和Value的值 redis 127.0.0.1:6379> HSET key4 email "abc@gmail.com" (integer) 1 # 打印哈希表中,name爲key的值 redis 127.0.0.1:6379> HGET key4 name "John Smith" # 打印整個哈希表 redis 127.0.0.1:6379> HGETALL key4 1) "name" 2) "John Smith" 3) "email" 4) "abc@gmail.com"
5.增長一條哈希表記錄key5
# 增長一條哈希表記錄key5,一次插入多個Key和value的值 redis 127.0.0.1:6379> HMSET key5 username antirez password P1pp0 age 3 OK # 打印哈希表中,username和age爲key的值 redis 127.0.0.1:6379> HMGET key5 username age 1) "antirez" 2) "3" # 打印完整的哈希表記錄 redis 127.0.0.1:6379> HGETALL key5 1) "username" 2) "antirez" 3) "password" 4) "P1pp0" 5) "age" 6) "3"
6.刪除記錄
# 查看全部的key列表 redis 127.0.0.1:6379> keys * 1) "key2" 2) "key3" 3) "key4" 4) "key5" 5) "key1" # 刪除key1,key5 redis 127.0.0.1:6379> del key1 (integer) 1 redis 127.0.0.1:6379> del key5 (integer) 1 # 查看全部的key列表 redis 127.0.0.1:6379> keys * 1) "key2" 2) "key3" 3) "key4"
一、 使用Redis的訪問帳號
默認狀況下,訪問Redis服務器是不須要密碼的,爲了增長安全性咱們須要設置Redis服務器的訪問密碼。設置訪問密碼爲redis。
用vi打開Redis服務器的配置文件redis.conf
~ sudo vi /etc/redis/redis.conf #取消註釋requirepass requirepass redis
二、 讓Redis服務器被遠程訪問
默認狀況下,Redis服務器不容許遠程訪問,只容許本機訪問,因此咱們須要設置打開遠程訪問的功能。
用vi打開Redis服務器的配置文件redis.conf
~ sudo vi /etc/redis/redis.conf
#註釋bind #bind 127.0.0.1
修改後,重啓Redis服務器。
~ sudo /etc/init.d/redis-server restart Stopping redis-server: redis-server. Starting redis-server: redis-server.
未使用密碼登錄Redis服務器
~ redis-cli
redis 127.0.0.1:6379> keys * (error) ERR operation not permitted
發現能夠登錄,但沒法執行命令了。
登錄Redis服務器,輸入密碼
~ redis-cli -a redis redis 127.0.0.1:6379> keys * 1) "key2" 2) "key3" 3) "key4"
登錄後,一切正常。
咱們檢查Redis的網絡監聽端口
//檢查Redis服務器佔用端口 ~ netstat -nlt|grep 6379 tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN
咱們看到從之間的網絡監遵從 127.0.0.1:6379 變成 0 0.0.0.0:6379,表示Redis已經容許遠程登錄訪問。
咱們在遠程的另外一臺Linux訪問Redis服務器
~ redis-cli -a redis -h 192.168.1.199 redis 192.168.1.199:6379> keys * 1) "key2" 2) "key3" 3) "key4"
遠程訪問正常。經過上面的操做,咱們就把Redis數據庫服務器,在Linux Ubuntu中的系統安裝完成。