系统环境:CentOS 6.5 64位
安装方式:编译安装
防火墙:开启
Redis版本:Redis 3.0.2
一、环境准备
1、安装 gcc gcc-c++
[[email protected] ~]# yum install gcc gcc-c++ -y
2、下载redis-3.0.2.tar.gz
[[email protected] ~]# wget http://download.redis.io/releases/redis-3.0.2.tar.gz
二、安装Redis
[[email protected] ~]# tar xf redis-3.0.2.tar.gz #解压
[[email protected] ~]# cd redis-3.0.2
[[email protected] redis-3.0.2]# make
[[email protected] 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
[[email protected] redis-3.0.2]# make test
[[email protected]]# cp redis.conf /etc/ #复制配置文件
如果需自定义配置redis,可修改其配置文件/etc/redis.conf
三、在redis3.0.2文件夹下,安装redis的最后一步:
[[email protected] redis-3.0.2]# ls
[[email protected] redis-3.0.2]# cd src
[[email protected] src]# make install
四、启动redis
[[email protected] ~]# 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,覆盖原来的内容(如果有的话)。
[[email protected] ~]# service iptables start #启动防火墙
[[email protected] ~]# iptables -I INPUT 1 -p tcp --dport6379 -j ACCEPT #开启6379端口
[[email protected] ~]# service iptables save #保存防火墙的配置
六、设置开机启动
[[email protected]~]# 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中 查看当前目录:[[email protected] redis-3.0.2]# ls ;
找到redis.conf配置文件,编辑redis.conf: [[email protected] 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:
[[email protected] bin]# pkill redis
如果需要开启redis:
[[email protected] bin]# redis-server &
加&符号的作用是为了让此进程转换为后台进程,不占用shell的服务。
。。。。。。。。。
不煮米饭的电饭锅
原文地址:https://www.cnblogs.com/myspring10/p/9445272.html