vote up 6 vote down star
2

I'd like to learn CouchDB and wondered if there was a host provider that offered CouchDB services. If you have used one please detail your experiences.

Update:

I discovered thta CouchDB is available in Ubuntu on a VM slice. I am interested in anyone's experience with running the VM solution and accessing the data with .Net. Is a hybrid solution feasible with .Net web server and REST calls to CouchDB on Linux? What extra security measures did you have to take. Was cross site scripting a concern?

flag

3 Answers

vote up 1 vote down

couch.io is an in-beta (currently invite-only) managed hosting and support company for CouchDB. They offer Apache-hosted Couch DB. For learning CouchDB, however, it's easiest to run locally. If you're on a Mac, check out CouchDBX, an app that provides an easy to use GUI for starting/stopping a local CouchDB instance.

link|flag
I thought this was still in private beta. Has that changed? Their sign up form still has a required "invite code" field. – William Brendel Jul 7 at 20:05
You're right: I thought it was public, but they're still in invite-only mode. I will correct my post. – Barry Wark Jul 7 at 20:50
Thanks - I saw that they had a VM slice for download so I may go that route. Unfortunately I am Windows based and the install for Windows is a bit intricate. I had hoped to be able to sign and go right away. – David Robbins Jul 7 at 21:07
if you want an invite, you should just e-mail them :) – Evgeny Jul 10 at 20:30
New CouchDBX packages for the Mac (OS X) now can be found on: janl.github.com/couchdbx – doekman Oct 14 at 12:21
vote up 1 vote down

As the transport layer of couchdb transport JSON via REST over HTTP a unix couchdb server is perfectly accessible from a windows .net client.

To get started you can pick a Amazon EC2 AMI for ubuntu with couchdb and pay only for the time this machine is running.

link|flag
vote up 1 vote down

I'm a .NET developer, and I've been playing with CouchDB. I have it running on a Ubuntu Server in a Hyper-V VM on Hyper-V Server, and I have been making calls to it with C# code. It has worked fine for me to connect to, except for the fact it is on a different machine (which is how it will be deployed anyway).

Tonight I just installed CouchDB 0.10 on Windows 7 64-bit. It seems to be working fine locally. I haven't been able to replicate from my server though. The server is running an older version I build from source so that could be the problem.

I'd recommend installing it on Windows. It was pretty painless. Here are the downloads you'll need: http://wiki.apache.org/couchdb/Windows%5Fbinary%5Finstaller. I installed the 32 bit version of everything. Once it's all installed, just run "Start CouchDB" on your start menu. It runs a batch file.

link|flag
Thanks - from what I read on other posts the earlier editions of the installer were a bit of a pain. I'm just being lazy and hoped something would "just work" on Windows as I would have a harder time getting Ubuntu in production here. – David Robbins Oct 15 at 14:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.