CentOS7 安装Redis6.0.6

  • 安装常用的工具集
# 便于上传、下载命令操作
yum install lrzsz

# 便于网络命令操作
yum install net-tools

安装gcc(redis必须要有gcc环境)

yum install gcc -y

查看gcc的版本(CentOS7默认为4.8.5)

gcc -v
[root@localhost ~]# gcc -v
使用内建 specs。
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
目标:x86_64-redhat-linux
配置为:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
线程模型:posix
gcc 版本 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
[root@localhost ~]#

升级gcc版本(发现Redis6.0版本需要将gcc版本升级到5.3以上这里直接升级到gcc最新的9.0版本)

yum -y install centos-release-scl
yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils
scl enable devtoolset-9 bash

再次查看gcc版本

[root@localhost ~]# scl enable devtoolset-9 bash
[root@localhost ~]# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-9/root/usr/libexec/gcc/x86_64-redhat-linux/9/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-9/root/usr --mandir=/opt/rh/devtoolset-9/root/usr/share/man --infodir=/opt/rh/devtoolset-9/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-9.3.1-20200408/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 9.3.1 20200408 (Red Hat 9.3.1-2) (GCC) 
[root@localhost ~]# 

这里gcc的版本切换仅本次有效,如果重启服务器就会还原成原来的4.8.5的版本,如果要永久生效可以执行下面的命令

echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile

下载最新稳定版Redis(中文官网:http://www.redis.cn,英文官网:https://redis.io

上传Redis的压缩文件到服务器,并解压文件

[root@localhost ~]# cd /opt/
[root@localhost opt]# rz

[root@localhost opt]# ls
redis-6.0.6_(1).tar.gz  rh
[root@localhost opt]# tar -zxvf redis-6.0.6_\(1\).tar.gz
[root@localhost opt]# ls
redis-6.0.6  redis-6.0.6_(1).tar.gz  rh
[root@localhost opt]# 

编译

[root@localhost opt]# cd redis-6.0.6/
[root@localhost redis-6.0.6]# make install

修改redis.conf配置文件

[root@localhost redis-6.0.6]# vi redis.conf 

这里修改 bind 10.137.107.17(IP换成自己服务器的IP)如果需要密码可以配置连接密码,不需要就不用配置了,其他配置项可自行百度。

启动redis

redis-server /usr/local/soft/redis-6.0.6/redis.conf

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值