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.
ed44c660c14d0b1bc14828400192c403 - Defines the URL of the database. The URL contains two parts, the first part is 49638d290175445a3de00226467a297e, and the second part is 98953a78f52873edae60a617ec082494.
49638d290175445a3de00226467a297e - Defines the mode, either local mode or remote mode.
98953a78f52873edae60a617ec082494 - Defines the path to the database.
be1cdaf6779910b92a0a47fc24e82b4f - Defines the user to connect to the database.
cb1ebc435675187bdcfb539b370c2e37 - Defines the password to connect to the database.
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!