Redis安装以及Java客户端jedis连接不上相关问题解决

安装步骤

1.由于Redis是由C 语言编写的 所以虚拟机编译需要C的编译环境

用命令 yum install gcc-c++

2.用SFTP上传Redis安装包并解压

3.进入Redis源码目录 bin

4.用命令 make install PREFIX=/usr/local/redis ( prefix:参数制定Redis安装目录-一般装到、/usr目录下/)

启动两种方式:

前端启动:

5.在安装目录下直接启动:./redis-server

后端启动:

6.用命令 cd ~/redis-3.0.0/redis.conf  /usr/local/redis/bin 复制redis.conf到 /usr/local/redis/bin 目录下

修改配置文件redis.conf

找到 daemonize no 并修改成 daemonize  yes

7.启动redis:在安装目录bin下:./redis-server redis.conf

8.查看进程:[root@localhost bin]#  ps aux|grep redis

root      5190  0.1  0.3  33936  1712 ?        Ssl  18:23   0:00 ./redis-server *:6379

root      5196  0.0  0.1   4356   728 pts/0    S+   18:24   0:00 grep redis

9.安装成功

10. redis-cli 启动:redis-cli -h 192.168.19.131 -p 6379 启动

-h:连接的服务器的地址

-p:服务的端口号

11.最重要的一点通过jedis 连接如果连接失败的情况下,修改一下

①.关闭服务 service iptables stop

②.防火墙开放端口 vi /etc/sysconfig/iptables

添加一条:

-A INPUT -p tcp -m tcp --dport 6379 -j ACCEPT
即可

上一篇:一些经典===>>用SQL语句操作数据


下一篇:shell 读取配置文件的方法