Repository: couchdb Updated Branches: refs/heads/master d881dcf5a -> 492850d76
Reorder installation steps We suggest to run CouchDB before the related user is created what causes confusion. This closes #272 Signed-off-by: Alexander Shorin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/492850d7 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/492850d7 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/492850d7 Branch: refs/heads/master Commit: 492850d76b7be1ceb6c355ffb01b941faf282241 Parents: d881dcf Author: kim yongbin <[email protected]> Authored: Fri Oct 17 18:37:17 2014 +0900 Committer: Alexander Shorin <[email protected]> Committed: Thu Mar 26 01:50:13 2015 +0300 ---------------------------------------------------------------------- INSTALL.Unix | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/492850d7/INSTALL.Unix ---------------------------------------------------------------------- diff --git a/INSTALL.Unix b/INSTALL.Unix index bcbc09b..30becfe 100644 --- a/INSTALL.Unix +++ b/INSTALL.Unix @@ -180,31 +180,8 @@ If everything was successful you should see the following message: Relax. -First Run ---------- - -You can start the CouchDB server by running: - - sudo -i -u couchdb couchdb - -This uses the `sudo` command to run the `couchdb` command as the -`couchdb` user. - -When CouchDB starts it should eventually display the following -message: - - Apache CouchDB has started, time to relax. - -Relax. - -To check that everything has worked, point your web browser to: - - http://127.0.0.1:5984/_utils/index.html - -From here you should run the test suite in Firefox. - -Security Considerations ------------------------ +User Registration +----------------- You should create a special `couchdb` user for CouchDB. @@ -251,6 +228,29 @@ Update the permissions for your `default.ini` file: chmod 0644 /usr/local/etc/couchdb/default.ini +First Run +--------- + +You can start the CouchDB server by running: + + sudo -i -u couchdb couchdb + +This uses the `sudo` command to run the `couchdb` command as the +`couchdb` user. + +When CouchDB starts it should eventually display the following +message: + + Apache CouchDB has started, time to relax. + +Relax. + +To check that everything has worked, point your web browser to: + + http://127.0.0.1:5984/_utils/index.html + +From here you should run the test suite in Firefox. + Running as a Daemon -------------------
