感谢支持
我们一直在努力

安装Redis报错:undefined reference to `__sync_add_and_fetch_4′

在VMware的Linux系统上安装Redis

具体过程如下:

下载,解压和编译:

$ wget http://redis.googlecode.com/files/redis-2.6.14.tar.gz
$ tar xzf redis-2.6.14.tar.gz
$ cd redis-2.6.14
$ make

在执行make的时候报错,具体报错信息如下:

zmalloc.o: In function `zmalloc_used_memory’:
/usr/local/redis-2.6.14/src/zmalloc.c:223: undefined reference to `__sync_add_and_fetch_4′
collect2: ld returned 1 exit status
make[1]: *** [redis-server] Error 1
make[1]: Leaving directory `/usr/local/redis-2.6.14/src’
make: *** [all] Error 2

网上查了下资料,主要是因为我的linux是32位的,所以会报这个错,解决方案如下:

在make操作的时候加一个执行参数:make CFLAGS=”-march=i686″

然后就不报错了。

附:启动并运行Redis

编译的可执行文件在src目录中,使用以下命令运行Redis:

[root@localhost redis-2.6.14]# src/redis-server

启动成功后控制台打印如下信息:

[2918] 03 Jul 09:05:01.011 # Warning: no config file specified, using the default config. In order to specify a config file use src/redis-server /path/to/redis.conf
[2918] 03 Jul 09:05:01.017 * Max number of open files set to 10032
[2918] 03 Jul 09:05:01.024 # Warning: 32 bit instance detected but no memory limit set. Setting 3 GB maxmemory limit with ‘noeviction’ policy now.
                _._                                                 
          _.-“__ ”-._                                           
      _.-“    `.  `_.  ”-._          Redis 2.6.14 (00000000/0) 32 bit
  .-“ .-“`.  “`\/    _.,_ ”-._                                 
 (    ‘      ,      .-`  | `,    )    Running in stand alone mode
 |`-._`-…-` __…-.“-._|’` _.-‘|    Port: 6379
 |    `-._  `._    /    _.-‘    |    PID: 2918
  `-._    `-._  `-./  _.-‘    _.-‘                                 
 |`-._`-._    `-.__.-‘    _.-‘_.-‘|                                 
 |    `-._`-._        _.-‘_.-‘    |          http://redis.io       
  `-._    `-._`-.__.-‘_.-‘    _.-‘                                 
 |`-._`-._    `-.__.-‘    _.-‘_.-‘|                                 
 |    `-._`-._        _.-‘_.-‘    |                                 
  `-._    `-._`-.__.-‘_.-‘    _.-‘                                 
      `-._    `-.__.-‘    _.-‘                                     
          `-._        _.-‘                                         
              `-.__.-‘                                             

[2918] 03 Jul 09:05:01.029 # Server started, Redis version 2.6.14
[2918] 03 Jul 09:05:01.030 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add ‘vm.overcommit_memory = 1’ to /etc/sysctl.conf and then reboot or run the command ‘sysctl vm.overcommit_memory=1’ for this to take effect.
[2918] 03 Jul 09:05:01.030 * The server is now ready to accept connections on port 6379

附2:把Redis作为Linux服务开机启动

这里只提供一种最简单的方式,最好的是通过编写开机启动脚本来做。
 
如果要开机启动redis,我们需要把redis设置为daemon后台启动(如果不设置为后台启动,则linux启动后图形界面会卡在一个空白的页面),而redis只有1个启动参数,就是redis的配置文件路径。redis的默认配置文件redis.conf位于redis的安装目录下。我们可以把该文件copy到/etc目录下

[root@localhost redis-2.6.14]# cp redis.conf /etc/

redis的默认配置文件中daemonize参数的值为no,代表为非后台启动,所以我们需要把该参数的值修改为yes。至于其它的参数在这里就不详细说了,具体可以参见:http://www.linuxidc.com/Linux/2013-11/92524.htm

修改完daemonize参数之后,redis就能够通过daemon方式启动了,那么下一步就是把redis加入到linux开机启动服务配置中了,具体步骤如下:

使用VI编辑器打开Linux开机启动服务配置文件/etc/rc.local,并在其中加入下面的一行代码:

/usr/local/redis-2.6.14/src/redis-server /etc/redis.conf

编辑完后保存,然后重启系统就OK了。
 
停止Redis服务:

src/redis-cli shutdown

Ubuntu 14.04下Redis安装及简单测试 http://www.linuxidc.com/Linux/2014-05/101544.htm

Redis集群明细文档 http://www.linuxidc.com/Linux/2013-09/90118.htm

Ubuntu 12.10下安装Redis(图文详解)+ Jedis连接Redis http://www.linuxidc.com/Linux/2013-06/85816.htm

Redis系列-安装部署维护篇 http://www.linuxidc.com/Linux/2012-12/75627.htm

CentOS 6.3安装Redis http://www.linuxidc.com/Linux/2012-12/75314.htm

Redis配置文件redis.conf 详解 http://www.linuxidc.com/Linux/2013-11/92524.htm

Redis 的详细介绍:请点这里
Redis 的下载地址:请点这里

本文永久更新链接地址:http://www.linuxidc.com/Linux/2014-05/101980.htm

赞(0) 打赏
转载请注明出处:服务器评测 » 安装Redis报错:undefined reference to `__sync_add_and_fetch_4′
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏