看了網上很多redis的安裝和連線,有點很複雜,不適合剛接觸linux的新手,所以這是簡化版的,但保證能用。
1、linux上安裝redis步驟:
如果make不成功,要自己安裝gcc,這個命令yum
-y install
gccmake成功後在redis-2.8.17中會看到如下目錄:
[root@localhost redis-2.8.17]# ll
總用量 136
-rw-rw-r--. 1 root root 27587 9月 19 2014 00-releasenotes
-rw-rw-r--. 1 root root 52 9月 19 2014 bugs
-rw-rw-r--. 1 root root 1439 9月 19 2014 contributing
-rw-rw-r--. 1 root root 1487 9月 19 2014 copying
drwxrwxr-x. 6 root root 4096 7月 26 23:58 deps
-rw-r--r--. 1 root root 29 7月 27 01:01 dump.rdb
-rw-rw-r--. 1 root root 11 9月 19 2014 install
-rw-rw-r--. 1 root root 151 9月 19 2014 makefile
-rw-rw-r--. 1 root root 4223 9月 19 2014 manifesto
-rw-rw-r--. 1 root root 4404 9月 19 2014 readme
-rw-rw-r--. 1 root root 34017 7月 27 01:06 redis.conf
-rwxrwxr-x. 1 root root 271 9月 19 2014 runtest
-rwxrwxr-x. 1 root root 281 9月 19 2014 runtest-sentinel
-rw-rw-r--. 1 root root 7110 9月 19 2014 sentinel.conf
drwxrwxr-x. 2 root root 4096 7月 26 23:58 src
drwxrwxr-x. 9 root root 4096 9月 19 2014 tests
drwxrwxr-x. 3 root root 4096 9月 19 2014 utils
將no改為yes,因為這個將其進入後台啟動,啟動後才能進入操作。
儲存退出後,輸入: src/redis-server redis.conf 這是從配置檔案啟動,然後輸入命令:src/redis-cli,這是用客戶端操作,然後就會出現下面的畫面:
[root@localhost redis-2.8.17]# src/redis-server redis.conf
[root@localhost redis-2.8.17]# src/redis-cli
127.0.0.1:6379> ping
pong
127.0.0.1:6379> set foo bar
ok127.0.0.1:6379> get foo
"bar"
ok,只要按照以上步驟,有一點linux基礎的小夥伴都可以玩起來redis
redis安裝和基本介紹
redis簡介 redis是乙個開源 bsd許可 記憶體儲存的資料結構伺服器,可用作資料庫,快取記憶體和訊息佇列 它支援字串 雜湊表 列表 集合 有序集合,位圖,hyperloglogs等資料型別。內建複製 lua指令碼 lru收回 事務以及不同級別磁碟持久化功能,同時通過redis sentine...
redis 基本介紹和安裝
redis 簡介 remote dictionary server redis 是乙個由salvatore sanfilippo寫的key value儲存系統。redis是乙個開源的使用ansi c語言編寫 遵守bsd協議 支援網路 可基於記憶體亦可持久化的日誌型 key value資料庫,並提供多...
redis安裝和使用
1 安裝redis 上傳檔案到固定目錄下 版本為 redis 3.2.0 tar xzvf redis 3.2 0.tar gzcd redis 3.2 0make make install2 啟動redis redis server redis.conf3 一般不會在原配置檔案上進行修改,原配置檔...