使用rpm包安装redis的方法
背景说明
公司环境处于内网,某同事需要安装redis,如果使用通过源码编译安装redis,很多编译工具如gcc就需要先安装,但处于内网安装起来不太方便,当然也不是不可以。我们此处就选用通过redis的rpm包进行安装。
rpm包查找及下载
找一台可以上互联网的服务器,由于使用rpm包进行安装时,redis也是有一定依赖的,可以通过yumdownloader添加resolve参数下载相关的依赖。
[root@k8s-m3 ~]# yumdownloader --resolve redis --destdir=/tmp Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile epel/x86_64/metalink | 7.8 kB 00:00:00 * base: mirrors.aliyun.com * centos-gluster9: mirrors.aliyun.com * elrepo: mirrors.tuna.tsinghua.edu.cn * epel: mirror.nyist.edu.cn * extras: mirrors.ustc.edu.cn * updates: mirrors.ustc.edu.cn base | 3.6 kB 00:00:00 centos-gluster9 | 3.0 kB 00:00:00 docker-ce-stable | 3.5 kB 00:00:00 elrepo | 3.0 kB 00:00:00 epel | 4.7 kB 00:00:00 extras | 2.9 kB 00:00:00 kubernetes | 1.4 kB 00:00:00 mysql-connectors-community | 2.6 kB 00:00:00 mysql-tools-community | 2.6 kB 00:00:01 mysql57-community | 2.6 kB 00:00:00 updates | 2.9 kB 00:00:00 (1/3): epel/x86_64/updateinfo | 1.0 MB 00:00:01 (2/3): epel/x86_64/primary_db | 7.0 MB 00:00:02 (3/3): docker-ce-stable/7/x86_64/primary_db | 117 kB 00:00:04 --> Running transaction check ---> Package redis.x86_64 0:3.2.12-2.el7 will be installed --> Processing Dependency: libjemalloc.so.1()(64bit) for package: redis-3.2.12-2.el7.x86_64 --> Running transaction check ---> Package jemalloc.x86_64 0:3.6.0-1.el7 will be installed --> Finished Dependency Resolution (1/2): jemalloc-3.6.0-1.el7.x86_64.rpm | 105 kB 00:00:01 (2/2): redis-3.2.12-2.el7.x86_64.rpm | 544 kB 00:00:01
通过上面可以看到,如果要使用rpm安装redis,jemalloc这个rpm包是需要的。将上面两个包拷贝至内网服务器,就可以愉快的安装了。
内网安装redis
#可以看到,先安装redis包时会提示依赖 [root@k8s-m1 ~]# rpm -ivh redis-3.2.12-2.el7.x86_64.rpm error: Failed dependencies: libjemalloc.so.1()(64bit) is needed by redis-3.2.12-2.el7.x86_64 #先安装依赖,再安装redis即可 [root@k8s-m1 ~]# rpm -ivh jemalloc-3.6.0-1.el7.x86_64.rpm Preparing... ################################# [100%] Updating / installing... 1:jemalloc-3.6.0-1.el7 ################################# [100%] [root@k8s-m1 ~]# rpm -ivh redis-3.2.12-2.el7.x86_64.rpm Preparing... ################################# [100%] Updating / installing... 1:redis-3.2.12-2.el7 ################################# [100%]
通过上面可以看到,其实我们也可以通过yundownloader下载gcc的相关依赖以及其他编译过程需要的工具包,然后通过源码编译安装redis。大家可以根据自己实际的需求进行选择。
到此这篇关于使用rpm包安装redis的方法的文章就介绍到这了,更多相关rpm包安装redis内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Windows环境下Redis Cluster环境搭建(图文)
这篇文章主要介绍了Windows环境下Redis Cluster环境搭建(图文),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-07-07
最新评论