You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/06/08 15:19:04 UTC

[Couchdb Wiki] Update of "Installing_on_Ubuntu" by BuZZ-dEE

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "Installing_on_Ubuntu" page has been changed by BuZZ-dEE.
The comment on this change is: useradd & chown path corrected.
http://wiki.apache.org/couchdb/Installing_on_Ubuntu?action=diff&rev1=24&rev2=25

--------------------------------------------------

  # Note: To install couchdb in the default location use --prefix= in the configure statement
  make && make install
  # Add couchdb user account
- useradd -d /var/lib/couchdb couchdb
+ useradd -d /usr/local/var/lib/couchdb couchdb
- chown -R couchdb: /var/lib/couchdb /var/log/couchdb
+ chown -R couchdb: /usr/local/var/lib/couchdb /usr/local/var/log/couchdb
  # start couchdb
  /etc/init.d/couchdb start