# yum install gcc gcc-c++ autoconf automake libtool pkgconfig cppunit-devel python-setuptools python-devel
# git clone
https://github.com/naver/arcus
# cd arcus/
# git submodule add
https://github.com/naver/arcus-memcached arcus-memcached
# git submodule add
https://github.com/naver/arcus-zookeeper arcus-zookeeper
# cd scripts
# ./build.sh
ARCUS BUILD PROCESS: START
--------------------------
Working directory is /opt/arcus.
Detailed build log is recorded to scripts/build.log.
--------------------------
[git submodule init] .. SUCCEED
[git submodule update] .. START
[git submodule update] .. SUCCEED
[server/config/autorun.sh] .. SUCCEED
[clients/c/config/autorun.sh] .. SUCCEED
[zookeeper/ant clean compile_jute bin-package] .. START
Error has occurred. /opt/arcus/scripts/etc/autorun.sh has failed.
Error has occurred. ./build.sh has failed.
Check /opt/arcus/scripts/build.log
다른 서버에서 submodule 없이 arcus만 clone 하고 build 시도..
# yum install gcc gcc-c++ autoconf automake libtool pkgconfig cppunit-devel python-setuptools python-devel
# git clone
https://github.com/naver/arcus
# cd arcus/scripts/
# ./build.sh
ARCUS BUILD PROCESS: START
--------------------------
Working directory is /opt/arcus.
Detailed build log is recorded to scripts/build.log.
--------------------------
[git submodule init] .. SUCCEED
[git submodule update] .. SUCCEED
[server/config/autorun.sh] .. SUCCEED
[clients/c/config/autorun.sh] .. SUCCEED
[zookeeper/ant clean compile_jute bin-package] .. START
Error has occurred. /opt/arcus/scripts/etc/autorun.sh has failed.
Error has occurred. ./build.sh has failed.
Check /opt/arcus/scripts/build.log
양 서버 모두 build.log에
===== zookeeper ======
/opt/arcus/zookeeper /opt/arcus/scripts/etc
./autorun.sh: line 72: ant: command not found
===== zookeeper ======
/opt/arcus/zookeeper /opt/arcus/scripts
/opt/arcus/scripts/etc/autorun.sh: line 72: ant: command not found
위와 같이 ant 를 찾을 수 없어서
# yum install ant
이후 다시 build를 시도 했습니다.
......
[python jinja2 library install] .. SUCCEED
[python fabric library install] .. SUCCEED
--------------------------
ARCUS BUILD PROCESS: END
위 메시지 출력 후,
# ./arcus.sh quicksetup conf/local.sample.json
=>
./arcus.sh: line 148: /opt/arcus/scripts/fab: No such file or directory
와 같은 상황이 됩니다...
fab -> ../lib/python/site-packages/fab
는 대상(..../site-packages/fab)이 없네요..
계속 진행 해 볼 수 있게 도움 부탁드립니다.