How to connect to a specific database from the OrientDB command line. Open a database.
The following statements are the basic syntax of the Connect command.
CONNECT <database-url> <user> <password>Shell
Here are the details about the options in the above syntax.
Example
We have created a database named "demo" in the previous chapter. In this example, the admin user will be used to connect to the demo database.
You can use the following command to connect to the demo database.
orientdb> CONNECT PLOCAL:/opt/orientdb/databases/demo admin adminShell
If the connection is successful, you will get the following output -
Connecting to database [plocal:/opt/orientdb/databases/demo] with user 'admin'…OK Orientdb {db = demo}>
The above is the detailed content of OrientDB connects to database. For more information, please follow other related articles on the PHP Chinese website!