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/05/04 23:29:09 UTC

[Couchdb Wiki] Update of "Installing_on_Ubuntu" by Linicks

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 Linicks.
http://wiki.apache.org/couchdb/Installing_on_Ubuntu?action=diff&rev1=14&rev2=15

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

  curl http://127.0.0.1:5984/
  # {"couchdb":"Welcome","version":"0.11.0"}
  }}}
+ == Additional Notes ==
+ 
+ In Ubuntu 10.04 you may get an error similar to this:
+ 
+ {{{
+ OS Process Error <0.4649.0> :: {os_process_error,{exit_status,127}}
+ /opt/couchdb/lib/couchdb/bin/couchjs: error while loading shared libraries: libmozjs.so: cannot open shared object file: No such file or directory
+ }}}
+ 
+ This is can be resolved by creating an xulrunner configuration as follows:
+ 
+ {{{
+ sudo vi /etc/ld.so.conf.d/xulrunner.conf 
+ }}}
+ 
+ Then add the following lines to the file (You may need to change the library version to match whats installed):
+ {{{
+ /usr/lib/xulrunner-1.9.2.3
+ /usr/lib/xulrunner-devel-1.9.2.3
+ }}}
+ 
+ Once the configuration files is created and saved, you will need to run ldconfig:
+ {{{
+ sudo /sbin/ldconfig
+ }}}
+ 
+ This solution is referenced in this bug report @ https://bugs.launchpad.net/ubuntu/+source/xulrunner-1.9/+bug/557275
+ 
+ 
  == External Articles ==
   * [[http://barkingiguana.com/2008/06/28/installing-couchdb-080-on-ubuntu-804|Installing CouchDB 0.8.0 on Ubuntu 8.04]]
   * [[http://japhr.blogspot.com/2009/03/yak-shaving-is-new-dependency-hell.html|Installing Couchdb 0.9 on Ubuntu 9.04]]