您好,登錄后才能下訂單哦!
小編給大家分享一下搭建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環境的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。