溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CentOS 6.5 64位下安裝Redis3.0.2的具體步驟

發(fā)布時(shí)間:2020-09-04 20:02:26 來源:腳本之家 閱讀:152 作者:沐春秋 欄目:數(shù)據(jù)庫

系統(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)站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI