On Fri, Jan 29, 2016 at 10:14 PM, Scott Dunbar <[email protected]> wrote: > I've seen several topics like this online but no resolution. I'm trying to > backup a 2.0.9 database under Max OS/X 10.10.5, Java 1.8.0_66. I have done: > > 1) Connect to database using remote protocol: > > orientdb> connect remote:localhost/dbname root password > Connecting to database [remote:localhost/dbname] with user 'root'...OK > > 2) Connect to database using plocal protocol with the server running: [cut]
> database is in use by another process. Use the remote mode with a OrientDB > server to allow multiple access to the same database. As stated by the message, you can't open a database in plocal while another process (the server) is working on it. Only one process a time could handle the db: it locks the db. For the same reason you can't open TWO times a db in plocal. > > 3) Connect to database with plocal protocol without the server running: > orientdb> connect plocal:../databases/dbname root password > > Connecting to database [plocal:../databases/dbname] with user 'root'... > Error: com.orientechnologies.orient.core.exception.OSecurityAccessException: > User or password not valid for database: 'dbname' > You should use the uname and password for the db, not the uname and password for the server. Usually, without taking care about security, they are admin/admin. > 4) Ok, use the backup.sh script instead: > > $ ./backup.sh plocal:../databases/dbname root password /tmp/blah.zip > > > Error: com.orientechnologies.orient.core.exception.OSecurityAccessException: > User or password not valid for database: 'dbname' Same as above: wrong credentials. If you find the docs incomplete about credentials/security and or backup procedures, please point me to the page and I will take care of improve it -- Best regards, Roberto Franchini OrientDB LTD - http://orientdb.com -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
