CouchDB – 安装

CouchDB – 安装


本章教你如何在windows和Linux系统中安装CouchDB。

在 Windows 中安装 CouchDB

下载 CouchDB

CouchDB 的官方网站是https://couchdb.apache.org如果你点击给定的链接,你可以得到 CouchDB 官方网站的主页,如下所示。

下载 CouchDB

如果您单击下载按钮,将打开一个页面,其中提供了各种格式的 CouchDB 下载链接。以下快照说明了相同的情况。

CouchDB 格式

选择 Windows 系统的下载链接,然后选择提供的镜像之一开始下载。

安装 CouchDB

CouchDB 将以名为setup-couchdb-1.6.1_R16B02.exe的安装文件的形式下载到您的系统中运行安装文件并继续安装。

安装完成后,访问以下链接打开 CouchDB 的内置 Web 界面
:http://127.0.0.1:5984/。如果一切顺利,这将为您提供一个网页,其中包含以下输出。

{
   "couchdb":"Welcome","uuid":"c8d48ac61bb497f4692b346e0f400d60",
   "version":"1.6.1",
   "vendor":{
      "version":"1.6.1","name":"The Apache Software Foundation"
   }
}

您可以使用以下网址与 CouchDB Web 界面进行交互 –

http://127.0.0.1:5984/_utils/

这显示了 Futon 的索引页面,它是 CouchDB 的 Web 界面。

网页界面

在 Linux 系统中安装 CouchDB

对于许多 Linux 风格的系统,它们在内部提供 CouchDB。要安装此 CouchDB,请按照说明进行操作。

在 Ubuntu 和 Debian 上,您可以使用 –

sudo aptitude install couchdb

在 Gentoo Linux 上有一个 CouchDB ebuild 可用 –

sudo emerge couchdb

如果您的 Linux 系统没有 CouchDB,请按照下一节安装 CouchDB 及其依赖项。

安装 CouchDB 依赖项

以下是为了在您的系统中获取 CouchDB 而要安装的依赖项列表 –

  • 二郎OTP
  • 重症监护室
  • 开放式SSL
  • Mozilla 蜘蛛猴
  • GNU 制造
  • GNU 编译器集合
  • 卷曲
  • 帮助2人
  • 用于文档的 Python
  • 蟒蛇狮身人面像

要安装这些依赖项,请在终端中键入以下命令。这里我们使用的是 Centos 6.5,以下命令将安装与 Centos 6.5 兼容的所需软件。

$sudo yum install autoconf
$sudo yum install autoconf-archive
$sudo yum install automake
$sudo yum install curl-devel
$sudo yum install erlang-asn1
$sudo yum install erlang-erts
$sudo yum install erlang-eunit
$sudo yum install erlang-os_mon
$sudo yum install erlang-xmerl
$sudo yum install help2man
$sudo yum install js-devel
$sudo yum install libicu-devel
$sudo yum install libtool
$sudo yum install perl-Test-Harness

注意 –对于所有这些命令,您需要使用 sudo。以下过程将普通用户转换为 sudoer。

  • 以管理员用户身份以 root 身份登录

  • 使用以下命令打开sudo文件 –

visudo
  • 然后按如下所示进行编辑以授予您现有用户 sudoer 权限 –
Hadoop All=(All) All , and press esc : x to write the changes to the file. 

下载系统中的所有依赖项后,按照给定的说明下载 CouchDB。

下载 CouchDB

Apache 软件基金会不会为 CouchDB 提供完整的 .tar 文件,因此您必须从源代码安装它。

创建一个新目录来安装 CouchDB,浏览到这样创建的目录并通过执行以下命令下载 CouchDB 源代码 –

$ cd
$ mkdir CouchDB
$ cd CouchDB/
$ wget
http://www.google.com/url?q=http%3A%2F%2Fwww.apache.org%2Fdist%2Fcouchdb%2Fsource%2F1.6.1%2Fapache-couchdb-1.6.1.tar.gz

这会将 CouchDB 源文件下载到您的系统中。现在解压缩apache-couchdb-1.6.1.tar.gz,如下所示。

$ tar zxvf apache-couchdb-1.6.1.tar.gz

配置 CouchDB

要配置 CouchDB,请执行以下操作 –

  • 浏览到 CouchDB 的主文件夹。
  • 以超级用户身份登录。
  • 使用 ./configure 提示进行配置,如下所示 –
$ cd apache-couchdb-1.6.1
$ su
Password:
# ./configure --with-erlang=/usr/lib64/erlang/usr/include/

它为您提供以下输出,类似于下面显示的输出,最后一行说 –您已经配置了 Apache CouchDB,该放松一下了

# ./configure --with-erlang=/usr/lib64/erlang/usr/include/

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
………………………………………………………..
……………………….
config.status: creating var/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: creating src/snappy/google-snappy/config.h
config.status: src/snappy/google-snappy/config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands

You have configured Apache CouchDB, time to relax.

Run `make && sudo make install' to install.

安装 CouchDB

现在键入以下命令在您的系统中安装 CouchDB。

# make && sudo make install

它会在您的系统中安装 CouchDB,最后一句说 –您已经安装了 Apache CouchDB,该放松一下了

启动 CouchDB

要启动 CouchDB,请浏览到 CouchDB 主文件夹并使用以下命令 –

$ cd apache-couchdb-1.6.1
$ cd etc
$ couchdb start

它启动 CouchDB,给出以下输出: –

Apache CouchDB 1.6.1 (LogLevel=info) is starting.
Apache CouchDB has started. Time to relax.
[info] [lt;0.31.0gt;] Apache CouchDB has started on http://127.0.0.1:5984/
[info] [lt;0.112.0gt;] 127.0.0.1 - - GET / 200
[info] [lt;0.112.0gt;] 127.0.0.1 - - GET /favicon.ico 200

确认

由于 CouchDB 是一个 Web 界面,请尝试在浏览器中键入以下主页 url。

http://127.0.0.1:5984/

它产生以下输出 –

{
   "couchdb":"Welcome",
   "uuid":"8f0d59acd0e179f5e9f0075fa1f5e804",
   "version":"1.6.1",
   "vendor":{
      "name":"The Apache Software Foundation",
      "version":"1.6.1"
   }
}

觉得文章有用?

点个广告表达一下你的爱意吧 !😁