mogui/pyorient

how to connect orientdb cluster

Closed this issue · 2 comments

My orientdb cluster has two host in one server, the hosts ports are 2425 and 2426.
How to connect the orientdb cluster?

I assume you meant that two separate OrientDB installations are running on the same host. If so, specify the port of the server you want to connect to as follows:

import pyorient
client = pyorient.OrientDB('myhostname', 2425)
client.connect('name', 'password')
...

Tnx @lebedov .

I close