CouchDB and Ubuntu: Configuration trick for
Views running slow with high CPU utilization on Ubuntu?
I had the same problem. The solution is simple and it already mentioned on CounDB-Wiki.
Simply create a file:
$ sudo gedit /etc/ld.so.conf.d/xulrunner.confand paste path to the library of xulrunner and xulrunner-devel and !save it!
/usr/lib/xulrunner-x.x.x.x /usr/lib/xulrunner-devel-x.x.x.xin your case it’s a 1.9.2.10
The next step is to run ldconfig
$ sudo /sbin/ldconfigAlso read the ‘Note on installing on Ubuntu Desktop flavors’ section on Wiki.
Then let it start at system-boot
$ sudo update-rc.d couchdb defaultsIf you get a message that system-start for couchdb is already exist, simple remove the old entry:
$ sudo update-rc.d -f couchdb removeand now retry to add the couchdb to system-start
Original title and link: CouchDB and Ubuntu: Configuration trick for (NoSQL databases © myNoSQL)
via: http://www.listware.net/201010/couchdb-user/34509-couchdb101-views-hangs-on-ubuntu-1004.htm