Most odd. Sounds like a config changed from the previous version. Ie, the db path went from:
/path/to/dbs/0.10.0/ to /path/to/dbs/ Which isn't out of this world unbelievable. To fix it, just do: sudo mv /path/to/dbs/0.10.0/* /path/to/dbs/ && rmdir /path/to/dbs/0.10.0/ Make sure couchdb is stopped when you do that to avoid other funny errors. Also, make sure to have a backup if you're not comfortable moving datafiles around on the command line. Paul On Thu, Sep 23, 2010 at 11:47 AM, Dan Himes <[email protected]> wrote: > Hello, > > I'm brand new, but I couldn't find a reference to this problem. I had > the ubuntu package couchdb 0.10 installed, but recently moved to 1.0.1 > by installing from source following the guide here: > http://wiki.apache.org/couchdb/Installing_on_Ubuntu). However, futon > now shows the database as 0.10.0/dbname (for example, > 0.10.0/hello-world), and when I click on it I get the error: > > +++ > Error: illegal_database_name > > Only lowercase characters (a-z), digits (0-9), and any of the characters > _, $, (, ), +, -, and / are allowed. Must begin with a letter. > +++ > > I understand what the error means, but not how to move past it. Thank > you for your help! > > Best regards, > Dan >
