系統(tǒng)環(huán)境:CentOS 6.5 64位
安裝方式:編譯安裝
防火墻:開啟
Redis版本:Redis 3.0.2
一、環(huán)境準(zhǔn)備
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
報(bào)錯(cuò)如下:
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
[root@iZ94ebgv853Zredis-3.0.2]# yum install tcl –y
[root@iZ94ebgv853Z redis-3.0.2]# make test
[root@iZ94ebgv853Zredis-3.0.2]# cp redis.conf /etc/ #復(fù)制配置文件
如果需自定義配置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
四、啟動(dòng)redis
[root@iZ94ebgv853Z ~]# redis-server /etc/redis.conf
五、設(shè)置防火墻
######################################
# 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
#####################################
把文本框內(nèi)容寫入到/etc/sysconfig/iptables,覆蓋原來的內(nèi)容(如果有的話)。
[root@iZ94ebgv853Z ~]# service iptables start #啟動(dòng)防火墻
[root@iZ94ebgv853Z ~]# iptables -I INPUT 1 -p tcp --dport6379 -j ACCEPT #開啟6379端口
[root@iZ94ebgv853Z ~]# service iptables save #保存防火墻的配置
六、設(shè)置開機(jī)啟動(dòng)
[root@iZ94ebgv853Z~]# chkconfig iptables on #設(shè)置iptables開機(jī)啟動(dòng)
設(shè)置redis開機(jī)啟動(dòng):
在/etc/rc.local中添加:/usr/local/bin/redis-server /etc/redis.conf > /dev/null
(Linux的redis服務(wù)的開啟關(guān)閉
1.啟動(dòng):redis-server(redis-server redis.conf)
2.登陸:redis-cli(redis-cli -p 6379)
3.關(guān)閉:redis-cli shutdown
查看redis進(jìn)程:ps aux | grep redis
殺死進(jìn)程的方式:kill -9 PID )
七、redis密碼設(shè)置
首先關(guān)閉redis服務(wù),上面有;
然后去解壓后的redis-3.0.2中 查看當(dāng)前目錄:[root@localhost redis-3.0.2]# ls ;
找到redis.conf配置文件,編輯redis.conf: [root@localhost redis-3.0.2]# vim redis.conf
找到內(nèi)容#requirepass foobared 去掉注釋,foobared改為自己的密碼,我在這里改為:requirepass 123456
然后 保存 退出 重啟redis服務(wù)
(注意:由于redis中配置內(nèi)容多而雜,不容易找到注釋#requirepass foobared ,但
1、
注釋#requirepass foobared在
################################ LUA SCRIPTING ###############################此注釋的下面第十三行處;
2、注釋#requirepass foobared在
################################ LIMITS ###############################此注釋的上面第二十行處;
3、redis-3.0.2此版本的redis.conf配置文件 共有937行內(nèi)容此#requirepass foobared注釋即在第391行
)
八、Jedis連接redis
java 代碼方式
//連接redis服務(wù)器,192.168.0.100:6379
jedis = new Jedis("ip", 6379);
//權(quán)限認(rèn)證
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的其他命令。
如果需要關(guān)閉redis:
[root@iZ94jzcra1hZ bin]# pkill redis
如果需要開啟redis:
[root@iZ94jzcra1hZ bin]# redis-server
加符號的作用是為了讓此進(jìn)程轉(zhuǎn)換為后臺(tái)進(jìn)程,不占用shell的服務(wù)。
總結(jié)
以上所述是小編給大家介紹的CentOS 6.5 64位下安裝Redis3.0.2的具體步驟,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
您可能感興趣的文章:- CentoS6.5環(huán)境下redis4.0.1(stable)安裝和主從復(fù)制配置方法
- 詳解CentOS 6.5搭建Redis3.2.8單機(jī)分布式集群
- CentOS6.5下Redis安裝與配置詳細(xì)步驟
- CentOS6.5下Tomcat7 Nginx Redis配置步驟教程詳解
- Centos下配置Redis開機(jī)啟動(dòng)腳本
- 詳解在Redis在Centos7上的安裝部署
- CentOS系統(tǒng)安裝Redis及Redis的PHP擴(kuò)展詳解
- 詳解Centos7下配置Redis并開機(jī)自啟動(dòng)