系統環境:CentOS 6.5 64位 安裝方式:編譯安裝 防火牆:開啟 Redis版本:Redis 3.0.2 一、環境準備 1、安裝 gcc gcc-c++ [root@iZ94ebgv853Z ~]# yum install gcc gcc-c++ -y 2、下載redis-3.0.2.tar ...
系統環境:CentOS 6.5 64位
安裝方式:編譯安裝
防火牆:開啟
Redis版本:Redis 3.0.2
一、環境準備
1、安裝 gcc gcc-c++
[root@iZ94ebgv853Z ~]# yum install gcc gcc-c++ -y
2、下載redis-3.0.2.tar.gz
[root@iZ94ebgv853Z ~]# wget http://download.redis.io/releases/redis-3.0.2.tar.gz
二、安裝Redis
[root@iZ94ebgv853Z ~]# tar xf redis-3.0.2.tar.gz #解壓
[root@iZ94ebgv853Z ~]# cd redis-3.0.2
[root@iZ94ebgv853Z redis-3.0.2]# make
[root@iZ94ebgv853Z redis-3.0.2]# make test
報錯如下:
cd src&& make test
make[1]:Entering directory `/root/redis-3.0.2/src'
You needtcl 8.5 or newer in order to run the Redis test
make[1]:*** [test] Error 1
make[1]:Leaving directory `/root/redis-3.0.2/src'
make: *** [test] Error 2
原因:需要安裝tcl
[[email protected]]# yum install tcl –y
[root@iZ94ebgv853Z redis-3.0.2]# make test
[[email protected]]# cp redis.conf /etc/ #複製配置文件
如果需自定義配置redis,可修改其配置文件/etc/redis.conf
三、在redis3.0.2文件夾下,安裝redis的最後一步:
[root@localhost redis-3.0.2]# ls
[root@localhost redis-3.0.2]# cd src
[root@localhost src]# make install
四、啟動redis
[root@iZ94ebgv853Z ~]# redis-server /etc/redis.conf
五、設置防火牆
######################################
# Firewall configuration written bysystem-config-firewall
# Manual customization of this file is notrecommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --stateESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp--dport 22 -j ACCEPT
-A INPUT -j REJECT --reject-withicmp-host-prohibited
-A FORWARD -j REJECT --reject-withicmp-host-prohibited
COMMIT
#####################################
把文本框內容寫入到/etc/sysconfig/iptables,覆蓋原來的內容(如果有的話)。
[root@iZ94ebgv853Z ~]# service iptables start #啟動防火牆
[root@iZ94ebgv853Z ~]# iptables -I INPUT 1 -p tcp --dport6379 -j ACCEPT #開啟6379埠
[root@iZ94ebgv853Z ~]# service iptables save #保存防火牆的配置
六、設置開機啟動
[root@iZ94ebgv853Z~]# chkconfig iptables on #設置iptables開機啟動
設置redis開機啟動:
在/etc/rc.local中添加:/usr/local/bin/redis-server /etc/redis.conf > /dev/null &
(Linux的redis服務的開啟關閉
1.啟動:redis-server(redis-server redis.conf)
2.登陸:redis-cli(redis-cli -p 6379)
3.關閉:redis-cli shutdown
查看redis進程:ps aux | grep redis
殺死進程的方式:kill -9 PID )
七、redis密碼設置
首先關閉redis服務,上面有;
然後去解壓後的redis-3.0.2中 查看當前目錄:[root@localhost redis-3.0.2]# ls ;
找到redis.conf配置文件,編輯redis.conf: [root@localhost redis-3.0.2]# vim redis.conf
找到內容#requirepass foobared 去掉註釋,foobared改為自己的密碼,我在這裡改為:requirepass 123456
然後 保存 退出 重啟redis服務
(註意:由於redis中配置內容多而雜,不容易找到註釋#requirepass foobared ,但
1、
註釋#requirepass foobared在
################################ LUA SCRIPTING ###############################此註釋的下麵第十三行處;
2、註釋#requirepass foobared在
################################ LIMITS ###############################此註釋的上面第二十行處;
3、redis-3.0.2此版本的redis.conf配置文件 共有937行內容此#requirepass foobared註釋即在第391行
)
八、Jedis連接redis
java 代碼方式
//連接redis伺服器,192.168.0.100:6379
jedis = new Jedis("ip", 6379);
//許可權認證
jedis.auth("password");
配置文件方式
<bean id=”jedisConnectionFactory”
class=”org.springframework.data.redis.connection.jedis.JedisConnectionFactory”>
<property name=”hostName” value=”${redis.host}” />
<property name=”port” value=”${redis.port}” />
<property name=”password” value=”${redis.pass}” />
</bean>
redis的其他命令。
如果需要關閉redis:
[root@iZ94jzcra1hZ bin]# pkill redis
如果需要開啟redis:
[root@iZ94jzcra1hZ bin]# redis-server &
加&符號的作用是為了讓此進程轉換為後臺進程,不占用shell的服務。
。。。。。。。。。
不煮米飯的電飯鍋