Redis 安装

选择在Linux下安装redis,现在采用虚拟机安装的centos7 进行安装的

1.安装gcc

yum install gcc-c++

2.下载redis安装包,在root目录下执行

wget http://download.redis.io/releases/redis-3.0.7.tar.gz

3.解压redis安装包

tar -zxvf redis-3.0.7.tar.gz

4.进入redis目录

cd redis-3.0.7

5.编译

 make

6.安装:

make PREFIX=/usr/local/redis install

7.拷贝redis.conf到安装目录:

cp redis.conf /usr/local/redis

8.进入 /usr/local/redis目录

cd /usr/local/redis/

9.编辑redis.conf,将daemonize on修改为 daemonize yes

 vim redis.conf

enter image description here

10.后端启动redis:

./bin/redis-server ./redis.conf 

11.查看是否启动成功:

ps -ef |grep -i redis

enter image description here

12.开始使用redis :

 ./bin/redis-cli

13.操作如下
enter image description here
14.关闭redis进程

./bin/redis-cli shutdown
虚拟机设置
  • 查看虚拟机的ip
ifconfig

enter image description here

  • 将虚拟机的6379端口打开
#运行下面的命令 如果是新建的一个新的 文件,你需要先安装 iptables,再打开
vim /etc/sysconfig/iptables

## 安装命令
yum install -y iptables-services

enter image description here

  • 重启服务
service iptables restart
  • 关闭防火墙(亲测有效)
##很多天之后,我再次访问项目还是不行,直接关闭防火墙吧
## 我的centos 7 使用下面的命令
systemctl disable firewalld

## 关闭后重启
service iptables restart

这样你可以下载个redis的客户端,在win下尝试连接下。成功了。就可以在程序中建立连接访问了

玩的开心!

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐