Centos安装redis6.0.6报错怎么解决

编辑: admin 分类: mysql 发布时间: 2023-06-10 来源:互联网

报错内容如下

In file included from server.c:31:0:
server.c:4999:59: error: ‘struct redisServer’ has no member named ‘cluster’
             (server.cluster_enabled && nodeIsMaster(server.cluster->myself)));
。。。。。。
登录后复制

原因:

自 redis 6.0.0+ 之后的版本中,编译 redis 需要支持 C11 特性,C11 特性在 4.9 中被引入。
Centos7 默认 gcc 版本为 4.8.5,所以需要升级gcc版本。

执行如下命令

yum -y install gcc gcc-c++ make tcl
yum -y install centos-release-scl
yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils
scl enable devtoolset-9 bash
登录后复制

完美解决:

Centos安装redis6.0.6报错怎么解决

【感谢龙石为本站提供数据治理平台技术支撑 http://www.longshidata.com/pages/government.html】