1. 程式人生 > >centos linux安裝ssdb

centos linux安裝ssdb

ssdbDemo

最近用到了ssdb,研究了一下。下面這個是補充官網沒有的一些安裝時碰到的問題。

centos安裝ssdb中碰到了錯誤,以下是解決辦法。

1、centos安裝ssdb,依次執行以下命令:

1.1: wget --no-check-certificate https://github.com/ideawu/ssdb/archive/master.zip
1.2: unzip master
1.3: cd ssdb-master
1.4: make
如果報以下錯誤:
ERROR! autoconf required! install autoconf first

Makefile:4: build_config.mk: No such file or directory
make: *** No rule to make target `build_config.mk'.  Stop.

1.5: 需要安裝 autoconf
yum update
yum install -y  autoconf

安裝autoconf成功後,繼續make。報錯:
make[1]: Entering directory `/root/ssdb-master/deps/leveldb-1.18'
g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -DSNAPPY -I../snappy-1.1.0 -O2 -DNDEBUG -c        
db/builder.cc -o db/builder.o
make[1]: g++: Command not found
make[1]: *** [db/builder.o] Error 127
make[1]: Leaving directory `/root/ssdb-master/deps/leveldb-1.18'
make: *** [all] Error 2

1.6:需要安裝g++
yum -y install gcc+ gcc-c++
安裝g++成功後,繼續make。報錯:(有的情況不報錯。不報錯代表可以跳過1.7  )
g++: error: /root/ssdb-master/deps/snappy-1.1.0/.libs/libsnappy.a: No such file or directory
make[1]: *** [all] Error 1
make[1]: Leaving directory `/root/ssdb-master/src'
make: *** [all] Error 2

1.7: snappy 沒有編譯成功,因為你的系統時鐘有問題,解決如下:(可參考官網介紹的這個錯誤的解決方案)
cd deps/snappy-1.1.0;
./configure
make

1.8: 安裝Snappy成功後,返回到ssdb-master目錄
make
#預設將安裝在 /usr/local/ssdb 目錄下
make install

如果想安裝在其他目錄下:
sudo make install PREFIX=/your/direcotry

安裝成功。

啟動和停止等操作可參考官網說明。
http://ssdb.io/docs/zh_cn/install.html