CentOS6 mininal 安装CouchDB2 详细版

CentOS6 mininal 安装CouchDB2 详细版

couchdb官网:http://couchdb.apache.org/

安装依赖

-Erlang OTP (>=R61B03, =<19.x)-ICU-OpenSSL-Mozilla SpiderMonkey (1.8.5)-GNU Make-GNU Compiler Collection-libcurl-help2man-Python (>=2.7)fordocs-Python Sphinx (>=1.1.3)

参考教程:http://docs.couchdb.org/en/2.0.0/install/unix.html

# 初始设置,避免不必要的权限问题/etc/init.d/iptablesstopsetenforce0sed -i's/SELINUX=enforcing/SELINUX=disabled/g'/etc/selinux/config# 安装依赖yum -yupdateyum -ygroupinstall"Development Tools""Development Libraries"rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpmyum install autoconf automake curl-devel help2man libicu-devel libtoolperl-Test-Harness wget libicu-devel curl-devel ncurses-devel libtool libxslt fop java-1.7.0-openjdk java-1.7.0-openjdk-devel unixODBC unixODBC-develvimopenssl-devel

源码安装erlang

yum install erlang-asn1 erlang-erts erlang-eunit erlang erlang-os_mon erlang-xmerlwget http://erlang.org/download/otp_src_19.3.tar.gz  #满足依赖的最新版erlangtar -xvf otp_src_19.3.tar.gzcd otp_src_19.3./configure && makemake install

源码安装 js-devel

js-devel-1.8.5 # 无yum安装包

wget http://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gzcdjs-1.8.5/js/src./configure && makesudo make install

安装autoconf-archive

配置puias-computational.repo 安装autoconf-arch

vim /etc/yum.repos.d/puias-computational.repo[PUIAS_6_computational]name=PUIAS computational Base$releasever-$basearchmirrorlist=http://puias.math.ias.edu/data/puias/computational/$releasever/$basearch/mirrorlistgpgcheck=0gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puiasInstall autoconf-archive rpm package:yum install autoconf-archive -y

源码安装CouchDB

wget http://mirror.bit.edu.cn/apache/couchdb/source/2.0.0/apache-couchdb-2.0.0.tar.gztar zxvf apache-couchdb-2.0.0.tar.gzcdapache-couchdb-2.0.0./configuremakerelease  # 这里有报错,根据解决方法修改完成之后重新makerelease,在文章末尾

添加用户启动couchdb

# groupadd CouchDB Administrator# adduser --system --no-create-home --shell /bin/bash --group --gecos "CouchDB Administrator" couchdb  # 默认CouchDB Administrator不存在,官网命令有点坑# - adduser: group '--gecos' does not existadduser --system--no-create-home --shell /bin/bash -c"CouchDB Administrator"couchdb# 使用此条命令mv /usr/local/src/apache-couchdb-2.0.0/rel/couchdb /usr/local/chown-R couchdb:couchdb /usr/local/couchdb# find /usr/local/couchdb -type d -exec chmod 0770 {} \;# chmod 0644 /usr/local/couchdb/etc/*

配置couchdb,特别重要

vim /usr/local/couchdb/etc/vm.args-name [email protected]> 注意:前提时设置系统需要设置hostname,修改完成系统hosts文件为0.0.0.0localhost localhost.localdomain n1couchdb.aniu.so#0.0.0.0localhost localhost.localdomain n1couchdb.aniu.so192.168.0.154n1couchdb.aniu.sohostname n1couchdb.aniu.sosed -i 's/localhost.localdomain/n1couchdb.aniu.so/g' /etc/sysconfig/network> 上面几步操作是修改hostname,方便识别,为后面配置couchdb集群方便# -kernel inet_dist_listen_min9100# -kernel inet_dist_listen_max9200> 上面两个参数暂时不用,配置集群的时候在使用# 修改couchdb启动时默认监听的ip,默认127.0.0.1,不能通过浏览器进行初始化设置,改为0.0.0.0sed -i 's/127.0.0.1/0.0.0.0/g' /usr/local/couchdb/etc/default.ini

配置完成之后使用couchdb用户启动couchdb

su- couchdbcd/usr/local/couchdb./bin/couchdb

启动成功界面如下:

[info]2017-07-04T13:09:39.587046Z [email protected]<0.9.0> -------- Application couch_log startedonnode'[email protected]'[info]2017-07-04T13:09:39.593768Z [email protected]<0.9.0> -------- Application folsom startedonnode'[email protected]'[info]2017-07-04T13:09:39.649564Z [email protected]<0.9.0> -------- Application couch_stats startedonnode'[email protected]'[info]2017-07-04T13:09:39.649666Z [email protected]<0.9.0> -------- Application khash startedonnode'[email protected]'[info]2017-07-04T13:09:39.662118Z [email protected]<0.9.0> -------- Application couch_event startedonnode'[email protected]'[info]2017-07-04T13:09:39.670377Z [email protected]<0.9.0> -------- Application ibrowse startedonnode'[email protected]'[info]2017-07-04T13:09:39.678054Z [email protected]<0.9.0> -------- Application ioq startedonnode'[email protected]'[info]2017-07-04T13:09:39.678117Z [email protected]<0.9.0> -------- Application mochiweb startedonnode'[email protected]'[info]2017-07-04T13:09:39.678238Z [email protected]<0.9.0> -------- Application oauth startedonnode'[email protected]'[info]2017-07-04T13:09:39.689266Z [email protected]<0.210.0> -------- Apache CouchDB2.0.0isstarting.[info]2017-07-04T13:09:39.689396Z [email protected]<0.211.0> -------- Starting couch_sup[info]2017-07-04T13:09:39.937994Z [email protected]<0.210.0> -------- Apache CouchDBhasstarted. Timetorelax.[info]2017-07-04T13:09:39.938230Z [email protected]<0.210.0> -------- Apache CouchDBhasstartedonhttp://0.0.0.0:5986/[info]2017-07-04T13:09:39.938366Z [email protected]<0.9.0> -------- Application couch startedonnode'[email protected]'[info]2017-07-04T13:09:39.938520Z [email protected]<0.9.0> -------- Application ets_lru startedonnode'[email protected]'[info]2017-07-04T13:09:39.953625Z [email protected]<0.9.0> -------- Application rexi startedonnode'[email protected]'[error]2017-07-04T13:09:40.065167Z [email protected]<0.293.0> -------- ** System runningtouse fully qualified hostnames **** Hostname localhostisillegal **[info]2017-07-04T13:09:40.099794Z [email protected]<0.9.0> -------- Application mem3 startedonnode'[email protected]'[info]2017-07-04T13:09:40.099886Z [email protected]<0.9.0> -------- Application fabric startedonnode'[email protected]'[info]2017-07-04T13:09:40.126321Z [email protected]<0.9.0> -------- Application chttpd startedonnode'[email protected]'[notice]2017-07-04T13:09:40.145151Z [email protected]<0.328.0> -------- chttpd_auth_cachechangeslistener died database_does_not_exist at mem3_shards:load_shards_from_db/6(line:327) <= mem3_shards:load_shards_from_disk/1(line:315) <= mem3_shards:load_shards_from_disk/2(line:331) <= mem3_shards:for_docid/3(line:87) <= fabric_doc_open:go/3(line:38) <= chttpd_auth_cache:ensure_auth_ddoc_exists/2(line:187) <= chttpd_auth_cache:listen_for_changes/1(line:134)[error]2017-07-04T13:09:40.145263Z [email protected] -------- Error in process <0.329.0>onnode'[email protected]'withexitvalue:{database_does_not_exist,[{mem3_shards,load_shards_from_db,"_users",[{file,"src/mem3_shards.erl"},{line,327}]},{mem3_shards,load_shards_from_disk,1,[{file,"src/mem3_shards.erl"},{line,315}]},{mem3_shards,load_shards_from_disk,2,[{file,"src/mem3_shards.erl"},{line,331}]},{mem3_shards,for_docid,3,[{file,"src/mem3_shards.erl"},{line,87}]},{fabric_doc_open,go,3,[{file,"src/fabric_doc_open.erl"},{line,38}]},{chttpd_auth_cache,ensure_auth_ddoc_exists,2,[{file,"src/chttpd_auth_cache.erl"},{line,187}]},{chttpd_auth_cache,listen_for_changes,1,[{file,"src/chttpd_auth_cache.erl"},{line,134}]}]}[info]2017-07-04T13:09:40.151849Z [email protected]<0.9.0> -------- Application couch_index startedonnode'[email protected]'[info]2017-07-04T13:09:40.151985Z [email protected]<0.9.0> -------- Application couch_mrview startedonnode'[email protected]'[info]2017-07-04T13:09:40.152078Z [email protected]<0.9.0> -------- Application couch_plugins startedonnode'[email protected]'[info]2017-07-04T13:09:40.193218Z [email protected]<0.9.0> -------- Application couch_replicator startedonnode'[email protected]'[info]2017-07-04T13:09:40.193271Z [email protected]<0.9.0> -------- Application couch_peruser startedonnode'[email protected]'[info]2017-07-04T13:09:40.205124Z [email protected]<0.9.0> -------- Application ddoc_cache startedonnode'[email protected]'[info]2017-07-04T13:09:40.225182Z [email protected]<0.9.0> -------- Application global_changes startedonnode'[email protected]'[info]2017-07-04T13:09:40.225319Z [email protected]<0.9.0> -------- Application jiffy startedonnode'[email protected]'[info]2017-07-04T13:09:40.233555Z [email protected]<0.9.0> -------- Application mango startedonnode'[email protected]'[info]2017-07-04T13:09:40.241861Z [email protected]<0.9.0> -------- Application setup startedonnode'[email protected]'[info]2017-07-04T13:09:40.241950Z [email protected]<0.9.0> -------- Application snappy startedonnode'[email protected]'[notice]2017-07-04T13:09:45.145647Z [email protected]<0.328.0> -------- chttpd_auth_cachechangeslistener died database_does_not_exist at mem3_shards:load_shards_from_db/6(line:327) <= mem3_shards:load_shards_from_disk/1(line:315) <= mem3_shards:load_shards_from_disk/2(line:331) <= mem3_shards:for_docid/3(line:87) <= fabric_doc_open:go/3(line:38) <= chttpd_auth_cache:ensure_auth_ddoc_exists/2(line:187) <= chttpd_auth_cache:listen_for_changes/1(line:134)[error]2017-07-04T13:09:45.145807Z [email protected] -------- Error in process <0.455.0>onnode'[email protected]'withexitvalue:{database_does_not_exist,[{mem3_shards,load_shards_from_db,"_users",[{file,"src/mem3_shards.erl"},{line,327}]},{mem3_shards,load_shards_from_disk,1,[{file,"src/mem3_shards.erl"},{line,315}]},{mem3_shards,load_shards_from_disk,2,[{file,"src/mem3_shards.erl"},{line,331}]},{mem3_shards,for_docid,3,[{file,"src/mem3_shards.erl"},{line,87}]},{fabric_doc_open,go,3,[{file,"src/fabric_doc_open.erl"},{line,38}]},{chttpd_auth_cache,ensure_auth_ddoc_exists,2,[{file,"src/chttpd_auth_cache.erl"},{line,187}]},{chttpd_auth_cache,listen_for_changes,1,[{file,"src/chttpd_auth_cache.erl"},{line,134}]}]}

查看couchdb进程

[root@n1couchdb ~]# ps -ef | grep couchdbcouchdb35821020:59 ?        00:00:00 /usr/local/couchdb/bin/../erts-8.3/bin/epmd -daemonroot38043789021:06 pts/2    00:00:00 su - couchdbcouchdb38053804021:06 pts/2    00:00:00 -bashcouchdb39013805321:09 pts/2    00:00:04 /usr/local/couchdb/bin/../erts-8.3/bin/beam.smp -K true -A16-Bd -- -root /usr/local/couchdb/bin/.. -progname couchdb -- -home /home/couchdb -- -boot /usr/local/couchdb/bin/../releases/2.0.0/couchdb -name [email protected] -setcookie monster -kernel error_logger silent -sasl sasl_error_logger false -noshell -noinput -kernel inet_dist_listen_min9100-kernel inet_dist_listen_max9200-config /usr/local/couchdb/bin/../releases/2.0.0/sys.configcouchdb39283901021:09 ?        00:00:00 erl_child_setup 1024couchdb39343928021:09 ?        00:00:00 sh -s disksupcouchdb39363928021:09 ?        00:00:00 /usr/local/couchdb/bin/../lib/os_mon-2.4.2/priv/bin/memsupcouchdb39373928021:09 ?        00:00:00 /usr/local/couchdb/bin/../lib/os_mon-2.4.2/priv/bin/cpu_supcouchdb39383928021:09 ?        00:00:00 inet_gethost 4couchdb39393938021:09 ?        00:00:00 inet_gethost 4root39613945021:12 pts/3    00:00:00 grep couchdb[root@n1couchdb ~]# netstat -nlptActive Internet connections (only servers)Proto Recv-Q Send-Q Local Address              Foreign Address            State      PID/Program nametcp000.0.0.0:5984                0.0.0.0:*                  LISTEN      4355/beam.smptcp000.0.0.0:5986                0.0.0.0:*                  LISTEN      4355/beam.smptcp000.0.0.0:4369                0.0.0.0:*                  LISTEN      3582/epmd

检查couchdb是否正常工作

[root@n1couchdb ~]# curl -I http://0.0.0.0:5984/_utils/index.htmlHTTP/1.1 200 OKCache-Control: private, must-revalidateContent-Length: 1886Content-Security-Policy:default-src'self';img-src'self'data:;font-src'self';script-src'self''unsafe-eval';style-src'self''unsafe-inline';Content-Type: text/htmlDate: Tue, 04 Jul 2017 13:26:40 GMTlast-modified: Tue, 04 Jul 2017 12:43:17 GMTServer: CouchDB/2.0.0 (Erlang OTP/19)

单点情况下通过浏览器访问

http://192.168.0.154:5984/_utils/#verifyinstall,进行初始化设置,如下图:

CentOS6 mininal 安装CouchDB2 详细版_第1张图片

这里初始设置 username: admin password: password ,方便记忆,后面需要再改

CentOS6 mininal 安装CouchDB2 详细版_第2张图片

登录成功,配置单节点

CentOS6 mininal 安装CouchDB2 详细版_第3张图片

CentOS6 mininal 安装CouchDB2 详细版_第4张图片

CouchDB管理页面还有许多操作,这里就不过多演示

安装过程中报错修复

ERROR: compile failed while processing /usr/local/src/apache-couchdb-2.0.0/src/couch: rebar_abort

解决报错:

cd/usr/local/src/apache-couchdb-2.0.0egrep -r js-1.8.5*vim +106src/couch/rebar.config.script{"linux",  CouchJSPath, CouchJSSrc, [{env, [{"CFLAGS", JS_CFLAGS ++" -DXP_UNIX -I/usr/include/js"}, {"LDFLAGS", JS_LDFLAGS ++" -lm"}]}]},改为:{"linux",  CouchJSPath, CouchJSSrc, [{env, [{"CFLAGS", JS_CFLAGS ++" -DXP_UNIX -I/usr/local/include/js"}, {"LDFLAGS", JS_LDFLAGS ++" -lm"}]}]},# 根本原因就是couchdb编译的时候找到默认的js# 还有种方式就是做软链接ln -s/usr/local/include/js/usr/include/j# 这种方法尚未尝试,修改完成就可以继续编译啦

安装依赖缺失报错

[root@localhost apache-couchdb-2.0.0]# make releaseUncaughterrorinrebar_core: {'EXIT',                              {undef,                                [{crypto,start,[],[]},                                {rebar,run_aux,2,                                  [{file,"src/rebar.erl"},{line,212}]},                                {rebar,main,1,                                  [{file,"src/rebar.erl"},{line,58}]},                                {escript,run,2,                                  [{file,"escript.erl"},{line,760}]},                                {escript,start,1,                                  [{file,"escript.erl"},{line,277}]},                                {init,start_em,1,[]},                                {init,do_boot,3,[]}]}}make: *** [couch]Error1

次报错是编译erlang前没安装openssl-devel,安装openssl-devel重新编译erlang

安装完成

WARN:'generate'commanddoesnotapplytodirectory/usr/local/src/apache-couchdb-2.0.0... done    You can now copytherel/couchdbdirectoryanywhereonyoursystem.    Start CouchDBwith./bin/couchdbfromwithinthatdirectory.

下面是程序本身BUG

[notice]2017-07-04T13:18:55.255565Z [email protected]<0.328.0> -------- chttpd_auth_cachechangeslistener died database_does_not_exist at mem3_shards:load_shards_from_db/6(line:327) <= mem3_shards:load_shards_from_disk/1(line:315) <= mem3_shards:load_shards_from_disk/2(line:331) <= mem3_shards:for_docid/3(line:87) <= fabric_doc_open:go/3(line:38) <= chttpd_auth_cache:ensure_auth_ddoc_exists/2(line:187) <= chttpd_auth_cache:listen_for_changes/1(line:134)[error]2017-07-04T13:18:55.255823Z [email protected] -------- Error in process <0.9372.0>onnode'[email protected]'withexitvalue:{database_does_not_exist,[{mem3_shards,load_shards_from_db,"_users",[{file,"src/mem3_shards.erl"},{line,327}]},{mem3_shards,load_shards_from_disk,1,[{file,"src/mem3_shards.erl"},{line,315}]},{mem3_shards,load_shards_from_disk,2,[{file,"src/mem3_shards.erl"},{line,331}]},{mem3_shards,for_docid,3,[{file,"src/mem3_shards.erl"},{line,87}]},{fabric_doc_open,go,3,[{file,"src/fabric_doc_open.erl"},{line,38}]},{chttpd_auth_cache,ensure_auth_ddoc_exists,2,[{file,"src/chttpd_auth_cache.erl"},{line,187}]},{chttpd_auth_cache,listen_for_changes,1,[{file,"src/chttpd_auth_cache.erl"},{line,134}]}]}

作为单个节点运行2.0时,它不会在启动时创建系统数据库,必须手动执行此操作:

curl -XPUThttp://0.0.0.0:5984/_userscurl -XPUThttp://0.0.0.0:5984/_replicatorcurl -XPUThttp://0.0.0.0:5984/_global_changes

参考教程

http://guide.couchdb.org/draft/security.html

http://docs.couchdb.org/en/latest/install/setup.html

https://medium.com/linagora-engineering/setting-up-a-couchdb-2-cluster-on-centos-7-8cbf32ae619f

http://docs.couchdb.org/en/2.0.0/install/unix.html

https://issues.apache.org/jira/browse/COUCHDB-2995# 最重要报错修复

http://docs.couchdb.org/en/2.0.0/cluster/setup.html#the-cluster-setup-wizard

原文链接

你可能感兴趣的:(CentOS6 mininal 安装CouchDB2 详细版)