首頁  >  文章  >  資料庫  >  單機Redis環境搭建方法

單機Redis環境搭建方法

藏色散人
藏色散人轉載
2020-09-05 09:30:552300瀏覽

以下由Redis教學專欄為大家介紹單機Redis環境搭建方法,希望對需要的朋友有幫助!

單機Redis環境搭建方法

序言

在實際開發專案過程中, 如果說要用到快取, 那麼第一個想到的一定是Redis, 但是為什麼選Redis大多數人都不會去了解, 也不會去思考, 只知道它能當緩存使用, 比數據庫快一點, 恰好我也是這樣的一個人;所以, 當我想寫一篇關於Redis介紹的時候, 我竟然無從說起; 這也是對於Redis以及主流內存數據庫不熟的原因; 不過, 在以後的日子裡, 一定增加自己對於框架的思考與深入, 讓自己在後面的技術道路上有所沉澱, 希望以後有人讓我簡要介紹Redis的時候, 我不會無從說起;這或許就是我想寫Redis系列博客的目的所在吧!

一、Redis環境搭建

下載redis穩定版本

curl -o redis.tar.gz http://download.redis.io/releases/redis-stable.tar.gz

解壓縮redis套件

tar -zxvf redis-stable.tar.gz -C ./ // 此指令表示解壓縮tar.gz套件到目前目錄

編譯安裝redis

進入到解壓縮的Redis的目錄下, 使用如下指令編譯安裝Redis

sudo make && make install PREFIX=/usr/local/redis

編輯設定Redis設定檔

sudo cp redis.conf /usr/local/redis/conf/

啟動Redis服務

./redis-server ../conf/redis.conf & //启动的时候后台运行

啟動輸出日誌:

45894:C 02 Nov 2018 22:11:19.922 # Redis version=5.0.0, bits=64, commit=00000000, modified=0, pid=45894, just started
45894:C 02 Nov 2018 22:11:19.922 # Configuration loaded
45894:M 02 Nov 2018 22:11:19.924 * Increased maximum number of open files to 10032 (it was originally set to 256).
                _._                                                  
           _.-``__ ''-._                                             
      _.-``    `.  `_.  ''-._           Redis 5.0.0 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._                                   
 (    '      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 45894
  `-._    `-._  `-./  _.-'    _.-'                                   
 |`-._`-._    `-.__.-'    _.-'_.-'|                                  
 |    `-._`-._        _.-'_.-'    |           http://redis.io        
  `-._    `-._`-.__.-'_.-'    _.-'                                   
 |`-._`-._    `-.__.-'    _.-'_.-'|                                  
 |    `-._`-._        _.-'_.-'    |                                  
  `-._    `-._`-.__.-'_.-'    _.-'                                   
      `-._    `-.__.-'    _.-'                                       
          `-._        _.-'                                           
              `-.__.-'                                               
45894:M 02 Nov 2018 22:11:19.933 # Server initialized
45894:M 02 Nov 2018 22:11:19.933 * Ready to accept connections

驗證Redis服務

使用網路工具telnet驗證

terrydeMacBook-Air:bin terrylmay$ telnet 127.0.0.1 6379
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

使用系統進程ps 驗證

terrydeMacBook-Air:bin terrylmay$ ps -ef | grep redis
  501 45894 44430   0 10:11下午 ttys000    0:00.04 ./redis-server 127.0.0.1:6379 //一个是Redis服务
  501 45897 44430   0 10:11下午 ttys000    0:00.00 grep redis //ps查询进程自己

到這裡, 一個單機版的Redis服務就搭建完成了!

##二、使用Redis儲存資料##Redis CLI連接Redis服務

terrydeMacBook-Air:bin terrylmay$ ./redis-cli
127.0.0.1:6379> 
127.0.0.1:6379> set name terrylmay
OK
127.0.0.1:6379> get name 
"terrylmay"
127.0.0.1:6379>

到此, 我們可以使用Redis系統來儲存資料字串資料了​​.

以上是單機Redis環境搭建方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除