Home > Common Problem > body text

OrientDB connects to database

DDD
Release: 2023-06-15 17:03:41
Original
867 people have browsed it

OrientDB connects to database

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
Copy after login

Here are the details about the options in the above syntax.

- Defines the URL of the database. The URL contains two parts, the first part is , and the second part is .

- Defines the mode, either local mode or remote mode.

- Defines the path to the database.

- Defines the user to connect to the database.

- 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
Copy after login

If the connection is successful, you will get the following output -

Connecting to database [plocal:/opt/orientdb/databases/demo] with user &#39;admin&#39;…OK 
Orientdb {db = demo}>
Copy after login

The above is the detailed content of OrientDB connects to database. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!