Installing on Mac OS X

Mac OS Xへのインストール

CouchDBX

The easiest way to get started with CouchDB on Mac OS X is by downloading CouchDBX. This unofficial application doesn’t install anything to your system and can be run with a single double-click. Note, however, that for more serious use, it is recommended that you do a traditional installation with something like Homebrew.

Mac OS XでCouchDBを使い始める最も簡単な方法は、CouchDBXをダウンロードすることです。この非公式なアプリケーションはあなたのシステムに何もインストールしません。ダブルクリックするだけで実行できます。しかしながら、注意点として、より重要な用途に用いるにはHomebrewなどを使って伝統的なインストールをすることをお勧めしておきます。

Homebrew

Homebrew is a recent addition to the software management tools on Mac OS X. Its premise is zero configuration, heavy optimizations, and a beer theme. Get Homebrew from http://github.com/mxcl/homebrew. The installation instructions are minimal. Once you are set up, run:

Homebrewは最近追加されたMac OS Xのソフトウェア管理ツールです。これはゼロコンフィギュレーション、強力な最適化、そしてビールのテーマを約束するものです。Homebrewをhttp://github.com/mxcl/homebrewから入手します。インストール手順はごくわずかです。セットアップができたら、次のコマンドを実行します。

brew install couchdb

in the Terminal and wait until it is done. To start CouchDB, simply run:

上のコマンドをターミナルで実行し、完了するまで待ちます。CouchDBを起動するには、単に次のコマンドを実行します。

couchdb

to see all the startup options available to you, run:

使用可能なすべての起動オプションを表示するには、次のコマンドを実行します。

couchdb -h

This tells you how to run CouchDB in the background, among other useful hints.

これにより、CouchDBをバックグラウンドで実行する方法など、その他の便利なヒントを知ることができます。

To verify that CouchDB is indeed running, open your browser and visit http://127.0.0.1:5984/_utils/index.html.

CouchDBが実際に動作していることを確認するには、ブラウザを開きhttp://127.0.0.1:5984/_utils/index.htmlにアクセスします。

MacPorts

MacPorts is the de facto package management tool for Mac OS X. While not an official part of the operating system, it can be used to simplify the process of installing FLOSS software on your machine. Before you can install CouchDB with MacPorts, you need to download and install MacPorts.

MacPortsはMac OS Xのパッケージ管理ツールのデファクトスタンダードです。オペレーティングシステムの公式な一部ではありませんが、これはFLOSSソフトウェアをあなたのマシンにインストールする手順を簡単にします。MacPortsでCouchDBをインストールする前に、MacPortsをダウンロードしてインストールする必要があります。

Make sure your MacPorts installation is up-to-date by running:

次のコマンドを実行し、インストールしたMacPortsが最新のものであることを確認します。

sudo port selfupdate

You can install CouchDB with MacPorts by running:

次のコマンドを実行し、MacPortsでCouchDBをインストールします。

sudo port install couchdb

This command will install all of the necessary dependencies for CouchDB. If a dependency was already installed, MacPorts will not take care of upgrading the dependency to the newest version. To make sure that all of the dependencies are up-to-date, you should also run:

このコマンドはCouchDBに必要な依存するすべてのパッケージをインストールします。もし依存するパッケージがすでにインストールされていれば、MacPortsはその依存するパッケージを最新のバージョンにアップグレードしてくれたりはしません。依存するすべてのパッケージが最新のものであることを確実にするには、次のコマンドを実行する必要があります。

sudo port upgrade couchdb

Mac OS X has a service management framework called launchd that can be used to start, stop, or manage system daemons. You can use this to start CouchDB automatically when the system boots up. If you want to add CouchDB to your launchd configuration, you should run:

Mac OS Xにはlaunchdと呼ばれるサービス管理フレームワークがあり、これを使ってシステムデーモンを起動、停止、管理することができます。これを使って、システム起動時にCouchDBを自動的に起動することができます。もし、CouchDBをlaunchdの設定に追加したいと思うのであれば、次のコマンドを実行する必要があります。

sudo launchctl load -w /opt/local/Library/LaunchDaemons/org.apache.couchdb.plist

After running this command, CouchDB should be available at:

このコマンドを実行した後、CouchDBは次のURLで利用できるようになっているはずです。

http://127.0.0.1:5984/_utils/index.html

CouchDB will also be started and stopped along with the operating system.

CouchDBはオペレーティングシステムと一緒に起動、停止します。