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
208 questions
3
votes
1 answer

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…
Radagast the Brown
  • 3,156
  • 3
  • 27
  • 40
3
votes
1 answer

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…
edt
  • 22,010
  • 30
  • 83
  • 118
3
votes
1 answer

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, push them to a dev database, and then push them to…
Jayson Bailey
  • 994
  • 10
  • 23
3
votes
0 answers

Is there any way to access couchDB url used in IBM blockchain cloud?

I have deployed an instance of Blockchain database in IBM cloud. It uses hyperledger fabric 1.2.1 and couchDB as a database. Is there any way to access the couchDB web based administration console?
Ajaya Mandal
  • 537
  • 4
  • 10
3
votes
2 answers

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 /opt/local/Library/LaunchDaemons/org.apache.couchdb.plist org.apache.couchdb: Already…
bbnn
  • 3,505
  • 10
  • 50
  • 68
3
votes
1 answer

How do I replicate from a secured CouchDB database?

I am using Fauxton in a test environment to replicate from our test server to my local server. I logged in to the test server in another browser tab, but replication still fails despite the cookie being there.
Seth
  • 6,514
  • 5
  • 49
  • 58
3
votes
2 answers

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 quota for that database/user.
devnull
  • 2,752
  • 1
  • 21
  • 38
2
votes
0 answers

CouchDB and PouchDB are producing duplicate records when recreating same CouchDB from scratch with a script

We have a couch DB we are developing on. We have a script that, for development purposes, just recreates the couch database from some json files from scratch every time we run that script. All the data we are inserting into couch from this script…
2
votes
2 answers

Custom rest api's for CouchDB?

I have been googling around trying to find examples or just a straight answer to my question. Is it possible to create/extend my own custom api endpoints for couchDB? Such as for example can I create a api call like…
Dean Strydom
  • 275
  • 5
  • 17
2
votes
0 answers

How to remove duplicated entries from couchDB

I am very new in couchDB. I have a problem with duplicated entries in my CouchDB database. In order to solve it I have been reading this: Find The Duplicate value in CouchDb and it is very usuful. To find duplicates entries I do in…
JoCuTo
  • 2,463
  • 4
  • 28
  • 44
2
votes
1 answer

Couchdb views return rows in rows

I am trying to create a view that returns the name with the price changes from the doc. "name": "USD" "price_changes": { "0min": 0, "15min": 0, "30min": 0, "60min": 0, "90min": 0, "120min": 0, "150min": 0, "180min":…
Andy
  • 49
  • 2
  • 11
2
votes
0 answers

Can't open couchdb

I am a beginner to CouchDB, I need to do a school assignment with it, but now it crashed on my computer. My system is mac os, when I open the couchDB application, it keeps popping new admin windows(http://127.0.0.1:5984/_utils/#login?urlback=), but…
Cui Can
  • 21
  • 1
2
votes
1 answer

Editing/Updating nested objects in documents CouchDB (node.js)

I'm trying to add (aka. push to existing array) in couchDB document. Any feedback is greatly appreciated. I have a document called "survey" inside my database called "database1". I have "surveys" as a set of arrays which consists of objects that…
Harris Lee
  • 93
  • 1
  • 2
  • 7
2
votes
2 answers

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 listen to port: 5985 Could not request local forwarding. any one…
newbie pisan
  • 327
  • 3
  • 5
  • 11
2
votes
2 answers

CouchDb data migration from 1.4 to 2.0

I am updating CouchDB from 1.4 to 2.0 on my windows 8 system. I have taken backup of my data and view files from /var/lib/couchdb and uninstalled 1.4. Installed 2.0 successfully and its running. Now I copied all data to /var/lib/couchdb and /data…
Ravi Sharma
  • 873
  • 7
  • 24
1 2
3
13 14