redis編譯報錯處理

2021-10-20 17:34:32 字數 527 閱讀 7659

1、報錯

[root@host2-006 redis-5.0.8]# make

cd src && make all

make[1]: entering directory `/data/redis-5.0.8/src'

cc adlist.o

in file included from adlist.c:34:0:

zmalloc.h:50:31: fatal error: jemalloc/jemalloc.h: no such file or directory

#include

解決方案:

make distclean  && make

導致出現這個錯誤的原因

錯誤的本質是我們在開始執行make 時遇到了錯誤(大部分是由於gcc未安裝),然後我們安裝好了gcc 後,我們再執行make ,這時就出現了jemalloc/jemalloc.h: no such file or directory。這是因為上次的編譯失敗,有殘留的檔案,我們需要清理下,然後重新編譯就可以了

windows jenkins編譯報錯處理

build step execute windows batch command marked build as failure jenkis,在執行windows命令編譯.net專案的時候命令執行成功了,但是卻還是報了這樣乙個錯 build step execute windows batch c...

應用連線Redis報錯處理

問題描述 應用連線redis報錯connection failure occurred.restarting subscription task after 5000 ms 解決方式 方式一 檢查並修改redis.conf中bind 127.0.0.1為bind 方式二 直接在redis.conf末...

ZF報錯處理

fatal error uncaught exception zend controller response exception with message cannot send headers headers already sent inind xampp php pear z end con...