Ubuntu16.04安裝Redis

前言

Redis是經常使用基於內存的Key-Value數據庫,比Memcache更先進,支持多種數據結構,高效,快速。用Redis能夠很輕鬆解決高併發的數據訪問問題;做爲實時監控信號處理也很是不錯。redis

環境

Ubuntu 16.04數據庫

安裝Redis服務器端

~ sudo apt-get install redis-server

安裝完成後,Redis服務器會自動啓動,咱們檢查Redis服務器程序安全

檢查Redis服務器系統進程

~ ps -aux|grep redis redis 4162 0.1 0.0 10676 1420 ? Ss 23:24 0:00 /usr/bin/redis-server /etc/redis/redis.conf conan 4172 0.0 0.0 11064 924 pts/0 S+ 23:26 0:00 grep --color=auto redis

經過啓動命令檢查Redis服務器狀態

~ netstat -nlt|grep 6379 tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN

經過啓動命令檢查Redis服務器狀態

複製代碼
~$ sudo /etc/init.d/redis-server status ● redis-server.service - Advanced key-value store Loaded: loaded (/lib/systemd/system/redis-server.service; enabled; vendor preset: enabled) Active: active (running) since 四 2017-11-09 12:22:09 CST; 59s ago Docs: http://redis.io/documentation, man:redis-server(1) Main PID: 5394 (redis-server) CGroup: /system.slice/redis-server.service └─5394 /usr/bin/redis-server 127.0.0.1:6379 11月 09 12:22:09 zzf systemd[1]: Starting Advanced key-value store... 11月 09 12:22:09 zzf run-parts[5388]: run-parts: executing /etc/redis/redi...le 11月 09 12:22:09 zzf run-parts[5395]: run-parts: executing /etc/redis/redi...le 11月 09 12:22:09 zzf systemd[1]: Started Advanced key-value store. Hint: Some lines were ellipsized, use -l to show in full.
複製代碼

經過命令行客戶端訪問Redis

安裝Redis服務器,會自動地一塊兒安裝Redis命令行客戶端程序。服務器

在本機輸入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"
複製代碼

增長一條數字記錄併發

複製代碼
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"
複製代碼

增長一個列表記錄key3tcp

複製代碼
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"
複製代碼

增長一個哈希記表錄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"
複製代碼

增長一條哈希表記錄key5ui

複製代碼
# 增長一條哈希表記錄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"
複製代碼

刪除記錄

複製代碼
# 查看全部的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服務器的訪問密碼。設置訪問密碼爲redisredis。

用vi打開Redis服務器的配置文件redis.conf

~ sudo vi /etc/redis/redis.conf #取消註釋requirepass requirepass redisredis

讓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 redisredis

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:3306 變成 0 0.0.0.0:3306,表示Redis已經容許遠程登錄訪問。

咱們在遠程的另外一臺Linux訪問Redis服務器

複製代碼
~ redis-cli -a redisredis -h 192.168.1.199 redis 192.168.1.199:6379> keys * 1) "key2" 2) "key3" 3) "key4"
複製代碼

遠程訪問正常。經過上面的操做,咱們就把Redis數據庫服務器,在Linux Ubuntu中的系統安裝完成。

原文連接:http://blog.csdn.net/qq_30242609/article/details/52913145

相關文章
相關標籤/搜索