Questions tagged [couchdb-futon]

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

Typically the url is like :-

http://localhost:5984/_utils/

Basic functionality of futon :-

  • create or delete databases
  • manage individual couchdb documents (analogous to records)
  • testing of map-reduce function
  • monitor couchdb running tasks
  • create views
204 questions
20
votes
1 answer

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 that there should be a check box because I've seen…
Jason Marcell
  • 2,605
  • 5
  • 27
  • 39
11
votes
1 answer

couchdb keeps growing (filesize)

I'm very confused about the CouchDB behaviour in terms of database file-size on disk. It seems like it doesn't matter what I do, the database-file only gets bigger and bigger (even on deleting/purging documents or whole databases). I watched my…
jAndy
  • 212,463
  • 51
  • 293
  • 348
10
votes
3 answers

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 databases and how many documents there are. My…
Manobi
  • 103
  • 6
9
votes
3 answers

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 document has already been created. I have tried the…
EdvardG
  • 131
  • 2
  • 10
9
votes
2 answers

CouchDB Fauxton - How to navigate through revisions history?

I've been using CouchDB for some time now, and I am currently testing CouchDB 2 and Fauxton on local env. One thing really disturbing compared to the good old Futon is that it is not possible with Fauxton to navigate through document revisions…
betelgeuz
  • 310
  • 3
  • 10
9
votes
5 answers

Couchdb not starting. -- Failure to start Mochiweb: eaddrinuse

I have configure and installed couchdb 1.6.1 on ubuntu 10.04. While configuring and installing it said successfully done. But when I start couchdb it gives me error. When start first.. Apache CouchDB 1.6.1 (LogLevel=info) is starting. Apache…
Satish
  • 1,002
  • 2
  • 15
  • 30
9
votes
4 answers

Is it good practice to give each CouchDB user a separate database?

I have a bit of conceptual question regarding the structure of users and their documents. Is it a good practice to give each user within CouchDB their own database which hold their document? I have read that couchDB can handle thousands of Databases…
Skywalker
  • 4,074
  • 10
  • 45
  • 100
9
votes
1 answer

Need Explanation of couchdb reduce function

From http://wiki.apache.org/couchdb/Introduction_to_CouchDB_views The couchdb reduce function is defined as function (key, values, rereduce) { return sum(values); } key will be an array whose elements are arrays of the form [key,id] values…
Alan
  • 2,100
  • 1
  • 21
  • 30
8
votes
1 answer

How to add futon (not fauxton) to CouchDB

Fauxton is nice and shiny, but it is missing at least one critical feature for working with CouchDB: browsing a document's revision history. The database permission interface also managed to create a mess of my database. Is there any way to get the…
Mike McKay
  • 2,132
  • 26
  • 32
7
votes
2 answers

how to connect couchdb with web api core

want to connect to a CouchDb databse from asp.net core web api , but am having trouble finding the code to do so. Can anyone help me with the code to do that? What is the 'normal' way of doing that? Cheers!
mandes
  • 105
  • 1
  • 9
7
votes
2 answers

How to Get CouchDB Username and Password

Unfortunately I forgot what my username and password is to login to CouchDB. Here is a similar question. I have looked within the local.ini file at C:\Program Files (x86)\Apache Software Foundation\CouchDB\etc\couchdb password =…
mibbit
  • 3,731
  • 3
  • 18
  • 32
6
votes
1 answer

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 functions in Futon to query the data and create…
jbobbylopez
  • 237
  • 2
  • 5
  • 15
5
votes
1 answer

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 to be a a place to schedule tasks but I'm not…
shane
  • 1,981
  • 3
  • 14
  • 16
5
votes
1 answer

Writing a couchdb design document

Would anyone be willing to provide a full documentation example on how to write a couchdb design document? I've never been able to find a proper documentation on that. I'm able to find a list of the available methods, but not how to write them in…
chateau
  • 718
  • 5
  • 23
5
votes
2 answers

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 domain.com/site/_design/app/_rewrite ... as explained in this post…
Renato
  • 10,539
  • 3
  • 43
  • 67
1
2 3
13 14