服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Centos - centos 6.7 下安装 redis-3.2.5的步骤

centos 6.7 下安装 redis-3.2.5的步骤

2022-01-19 17:30CentOS教程网 Centos

这篇文章主要介绍了centos 6.7 下安装 redis-3.2.5的步骤,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

前期准备:

1. 操作系统需要安装 gcc 包 与  TCL 库, 通过配置本地 yum 源 ,yum -y install gcc 、 yum -y install tcl安装

2. 下载 redis 安装包,上传至 linux 下。 网址: http://download.redis.io/releases/

?
1
2
[root@mysql ~]# ll redis-3.2.5.tar.gz
-rw-r--r--. 1 root root 1544040 Jun 1 22:57 redis-3.2.5.tar.gz

说明:centos7配置本地yum源的方法,请参考 http://www.zzvips.com/article/217756.html

正式安装

3. 解压

?
1
[root@mysql ~]# tar -xzvf redis-3.2.5.tar.gz

4. 编译安装

?
1
2
[root@mysql ~]# cd redis-3.2.5
[root@mysql redis-3.2.5]# make && make install

说明:逐次执行上述命令,这样 Redis 会安装在/usr/local/bin/路径下。

5. 修改配置文件

在 redis-3.2.5路径下有一个 redis.conf 文件,需要拷贝并创建到/etc 路径下,命令如下

所示:

?
1
2
[root@mysql redis-3.2.5]# mkdir -p /etc/redis
[root@mysql redis-3.2.5]# mv redis.conf /etc/redis/

6. 修改配置文件

?
1
2
3
4
5
[root@mysql redis-3.2.5]#vim /etc/redis/redis.conf
[root@mysql redis-3.2.5]# cat /etc/redis/redis.conf
daemonize yes           
pidfile /var/run/redis_6379.pid
port 6379

7. 运行/ 停止 Redis

-- 启动

?
1
2
3
4
[root@mysql redis-3.2.5]# redis-server /etc/redis/redis.conf
[root@mysql redis-3.2.5]# ps -ef|grep redis
root    5845   1 0 23:29 ?    00:00:00 redis-server *:6379       
root    5854  2553 0 23:30 pts/1  00:00:00 grep redis

说明:第一条命令表示启动 redisserver,第二条命令表示查看 redis 服务是否启动正常。

-- 关闭

?
1
2
3
[root@mysql redis-3.2.5]# redis-cli shutdown
[root@mysql redis-3.2.5]# ps -ef|grep redis
root    5861  2553 0 23:31 pts/1  00:00:00 grep redis

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/andy6/p/6929350.html?utm_source=tuicool&utm_medium=referral

延伸 · 阅读

精彩推荐