A built-in web-based administration console for apache couchdb. All read / write operation is handled using http request via couchdb restful api.

learn more… | top users | synonyms

0
votes
1answer
23 views

calling another list function in couchdb

Helo Folks, I am working on a view in couchdb. And, in the 'extract' list function, I'm trying to filter out some information using that view (myView). From the client that connects to couchdb, I ...
-1
votes
0answers
32 views

How to access couch db remotely? [closed]

i want to access the couch db remotely and create the documents in couchdb from another machine . I already changed the bind address in local.ini file to 0.0.0.0 and restarted the couchdb . I am able ...
0
votes
0answers
33 views

CouchDb : Deleting a huge document first time gives Status: 500 (Internal Server Error)

When I try to delete a document (5Mb) in couchdb for the first time , I get this Status: 500 (Internal Server Error) {"error":"os_process_error","reason":"{exit_status,1}"} While deleting the ...
0
votes
1answer
28 views

CouchDB 1.3.0 DB Compaction - Error grondot.couch.compact: no such file

Since we upgraded our CouchDB from 1.2.0 to 1.3.0, we encountered a problem when compacting the database. Everything else works just fine and smooth, but when compacting the database (either via ...
0
votes
0answers
40 views

CouchDB 1.2.1 Futon (using Chrome,IE, FF ) freezes while displaying large documents

CouchDB 1.2.1 Futon (using Chrome,IE, FF ) freezes while displaying large documents (around 5 MB size) ? Is this a bug or is this configurable somehow or is there a workaround for this ? Are there ...
0
votes
0answers
19 views

Error while querying CouchDB through temperory view: java.net.SocketException: Software caused connection abort: recv failed [duplicate]

I'm using jcouchdb API to interact with CouchDB. I have a program to get data from database by means of querying through temporary view. The problem I'm getting is while executing method called ...
0
votes
0answers
11 views

couchdb repliaction “end of file”. whats the solution?

while replicating couchdb from one server to another,the cookbooks get replicated, but on the target server when i try to read any file i get "end of file reached". I do not know what i did wrong ...
0
votes
1answer
26 views

CouchDB Futon custom URL

I just installed CouchDB on my Ubuntu 12.04 server and I am trying to find a way to access Futon (the web based admin panel) using the IP of my computer or one of the domains I have binded on it. I ...
0
votes
1answer
41 views

CouchDB - how to fetch older revision of documents, within _revs_limit ,after compaction

So I read this on the couchdb wiki page - *_revs_limit defines a upper bound of document revisions which CouchDB keeps track of, even after Compaction.* But when I try to retrieve an older revision ...
0
votes
0answers
28 views

CouchDB view returning no document

I have one view in the couchdb. This view is to get the document between start date and end date. When I call this view when the date difference between them is 9, this view works fine, but when the ...
0
votes
1answer
52 views

How do I add a new key-value pair to CouchDB using Cradle? Node.js

I have a document in my CouchDB database I would like to add a new key-value pair to. I am using Cradle to communicate with the DB (https://github.com/cloudhead/cradle), however, I get an error if I ...
0
votes
1answer
41 views

unable to run views written in python in couchdb futon

i started using couchdb with python-couchdb recently. The problem is when i use futon run my views written in python i get the following error message: Error: os_process_error {exit_status,4} even ...
1
vote
0answers
59 views

get init issue after extending couchdb with geocouch on ubuntu

The env is ubuntu 12.10. the src version are apache-couchdb-1.2.1 and geocouch-couchdb1.2.x, first try i just put both to the Download folder, but when i execute make in geocouch folder then got ...
0
votes
1answer
56 views

'fatal: Not a git repository' is prompted when execute make command in Geocouch folder on Ubuntu

My purpose is to extend couchDB with geocouch, then i download COUchDB src from http://couchdb.apache.org/,and geocouch from github couchdb 1.2.x. the src are both in my Download path,according to the ...
1
vote
1answer
23 views

couchdb error while accessing a view “file corruption”?

I have a couchdb installation which generally opens fine at futon, in "All documents" view i can see all the objects; however when i try accessing one of my views, i get this error after a couple of ...
0
votes
1answer
46 views

Couchdb views generation

I am learning couchdb, so I have a very basic questions. Suppose I have a couch database called email where documents look like: { "_id": "fe7759fdf36t", "status": "sent", "sent_at": ...
0
votes
1answer
148 views

vhosts configuration not working on couchDb

I am facing a curious problem.I have a couchApp hosted on Iris couch.I purchased a domain name from godaddy and set my CNAME (WWW) to my database address on iris couch.When I type my domain name in ...
1
vote
2answers
40 views

/ in attachment names

I've just started developing a web page with jquery mobile using couchdb and iriscouch as the database. what i'd like to know is if i can get a / symbol in the attachment names? What i'd like to ...
0
votes
1answer
30 views

List all the views created in the design doc

Can couchdb list all the views created in the design doc? If so what is the query? Futon does it somehow, but I can't seem to figure it out from there code.
0
votes
2answers
45 views

Group and limit for multiple groups

I have the following documents { "_id": "id", "_rev": "123456", "author": "john", "views": "3", }, { "_id": "id", "_rev": "123456", "author": "jake", "views": "5", }, { "_id": "id", ...
1
vote
1answer
106 views

Couchdb command not found

I would greatly appreciate help with CouchDb... I have loaded CouchDB on my Mac running Mountain Lion (10.7.5). I believe I loaded the Lion version as the Mountain Lion option required I have 10.8. ...
4
votes
2answers
135 views

How to use Futon and push a couchapp to a CouchDB which uses a vhost?

I have a CouchDB server which hosts a small website. For this reason, I set up a vhost section in the CouchDB configuration, so that a request to: domain.com will be "re-written" to ...
1
vote
1answer
107 views

Is there a way to stop couchdb indexer process?

Is there any way to halt the couchdb futon processing Indexer? I find it difficult and too long to wait when there is huge datas in the views. Any comment is much appreciated :)
0
votes
1answer
78 views

CouchDB View not responding

We moved the .couch file from one drive to another because the original drive had reached 100% space. Then we remounted the new drive to older/original directory. In other words nothing changed. Now ...
1
vote
1answer
102 views

Can we sort a sorted list view in CouchDb?

I have a couchdb that contains events with their starting time and their coordinates. I wrote a list view that calculates the distance from your current location to those events like follows: ...
0
votes
1answer
55 views

Why does only one of these CouchDB views work?

I have some documents in CouchDB of type: "Person" and of type "Account". For a straight list of all documents of these types I have created the following design document in _design/directory_views: ...
0
votes
1answer
424 views

CouchDB: Not Serving Futon

I've installed CouchDB in Ubuntu 11.10. I have an HTTPD server running (which functions properly) as well as all of the prerequisites for CouchDB. I've started up CouchDB in the background for a user ...
1
vote
3answers
282 views

CouchDB Simple SELECT the right way?

I am building a very simple users system on Apache CouchDB. I have build a simple view to search users by email: by_email map function(doc) { if (doc.kind == "user" && doc.email) ...
2
votes
1answer
897 views

CouchDB Authorization Logic?

I did read http://guide.couchdb.org/draft/security.html and and the previous question CouchDB Authorization on a Per-Database Basis and http://wiki.apache.org/couchdb/Security_Features_Overview I ...
2
votes
1answer
55 views

Multi Hosting Quota on CouchDB

I am looking to offer some free hosting for CouchDB. The authorization part is fairly straightforward (user has access to 1 database) but I was wondering if there is any simple way to assign a space ...
0
votes
1answer
794 views

couchdb & futon - Is there a way to cancel a continuous replication using futon

Is there a way to cancel a continuous replication using futon ? One of my developers started getting this funny error, when trying to replicate a template DB to his work environment. Replicator ...
2
votes
1answer
357 views

Identifying Duplicates in CouchDB

I'm new to CouchDB and document-oriented databases in general. I've been playing around with CouchDB, and was able to get familiar with creating documents (with perl) and using the Map/Reduce ...
1
vote
1answer
105 views

how to manage list functions using futon?

Is there a way I can make the futon display results of list-functions and help me edit them the way it does with map/reduce functions?
1
vote
1answer
149 views

couchdb futon document editor - can I customize the document validation part?

A VERY nice to have would be if I could edit object-literals in this editor's text-field instead of JSON expressions. If I could replace the JSON parse with a simple eval - it will make editing ...
0
votes
1answer
81 views

couchdb futon document editor - can I customize the indentation rules?

Suppose that I want to customize the indentation rules of the foton document editor, where and how can I do that? I'll elaborate. The foton editor lays out document like this: (which to my flavor ...
3
votes
3answers
2k views

CouchDB On-the-fly attachments through command-line

PROBLEM I want to be able to attach one/multiple attachment(s) as the document is created, through the command-line (see below). I can only get this to work in Futon (Couchbase), but only after a ...
3
votes
1answer
272 views

How can I make user creation public but read access private in CouchDB?

I'd like to make user creation public, so that unauthenticated users can create new accounts in _users, but only give read privileges to admin roles. Is this possible? How?
1
vote
1answer
162 views

Couchdb and Sofa Help

I'm new to Couchdb just a few week back I git clone the couchdb app called sofa [what and app] . Over the week It was going great but suddenly today I stumble upon something. Here what I meant ...
4
votes
1answer
208 views

How to run tasks on couchdb

I need to schedule tasks to run on a couchdb database. These tasks read one db; aggregate data and write them to another database for archival purposes. I've seen the status page in futon which seems ...
4
votes
2answers
177 views

Trouble with getting a CouchApp to output the correct mime type for an appcache

So in CouchDB, you can supposedly change mime types. In Futon you just have to go and edit the source of the document and change the content_type field on attachments in the _attachment field. Trouble ...
2
votes
1answer
647 views

How to Add a List Function to Futon?

I'm following the instructions here to add a List Function to my CouchDB: http://guide.couchdb.org/draft/transforming.html When I visit the url corresponding to the list function, I get the message: ...
1
vote
1answer
370 views

What is the best way to write/manage views in couchdb?

So we've starting using couchdb at work. Writing javascript functions in futon is no fun. I want to be able to write them in a text editor. I'd also like to be able to easily write my functions, ...
0
votes
1answer
107 views

Storing couchDB views in code repository

I have a ruby/couchdb application with huge *.couch files full of data. What I'd like to somehow import (in mysql world i'd call it db schema, but here it's only views) in order to store them ...
4
votes
1answer
265 views

Where can I find more information about specific CouchDB testing errors?

I'm getting errors in the futon testing suite on attachments and attachment_paths and can't seem to find any information on potential causes. Any ideas? I'll paste the errors I get below, just in ...
10
votes
1answer
984 views

CouchDB Reduce Check Box in Futon

I created a small test database in CouchDB and I'm creating a temporary view in Futon. I wrote the mapper and the reducer. The mapper works, but the check box for the reducer never shows up. I know ...
4
votes
2answers
807 views

How to create a database in CouchDB indicating the username and password

I´m creating an android application that stores data in CouchDB, and I need to create a database from the android application. I need to execute the command "curl-X PUT ...
3
votes
2answers
640 views

unable to access CouchDB web GUI (OSX)

Hello I just installed couchDB on my MacBook Pro I installed it using MacPort sudo port install couchdb sudo port upgrade couchdb sudo launchctl load -w ...
3
votes
2answers
873 views

Accessing couchdb futon thru https

I've got a problem accessing futon interface when it is proxied using nginx. This config works fine when http protocol is used, but when I try to use https, I constantly receive no_db_file errors (but ...
1
vote
1answer
633 views

Running CouchDB Futon on Remote Server

i using mac os.. i tried ssh -fNg -L 5985:127.0.0.1:5984 wawansetiawan@192.168.1.249 but there's command like this: bind: Address already in use channel_setup_fwd_listener: cannot ...
6
votes
2answers
624 views

Couchdb - Block futon for readers users

I want to know how block the acess to futon (_utils) in couchdb for readers, allowing the access only for admins. I need to do this why if a reader user acess the futon he can see the name of all my ...

1 2