CentOS 6.5 64位下安装Redis3.0.2的具体步骤
系统环境: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
[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/ #复制配置文件
如果需自定义配置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的服务。
总结
以上所述是小编给大家介绍的centos 6.5 64位下安装redis3.0.2的具体步骤,希望对大家有所帮助
推荐阅读
-
centos6.5 Linux下用安装包方式安装MySQL的步骤教程
-
centos 6.5下安装oracle 11gR2与Oracle自动启动的配置
-
CentOS 6.5 64位下安装Redis3.0.2的具体步骤
-
CentOS6.5下源码安装 PHP(Unix 系统下的 Nginx)教程
-
Linux(centOS6.5)下SVN的安装、配置及开机启动
-
Linux(centOS6.5)下SVN的安装、配置及开机启动
-
centos6.5 Linux下用安装包方式安装MySQL的步骤教程
-
关于VMware12 下安装与配置CentOS 6.5 64位 的方法图文教程
-
Centos 6.5下PHP 5.3安装ffmpeg扩展的步骤详解
-
centos6.5下vsftpd服务的安装及配置并通过pam认证实现虚拟用户文件共享