About port

manual

Server Configuration

Explains how to set a JPA/JDO database server using ObjectDB, the fast Java object database for JPA/JDO.... <server > <connection port = "6136" max = "100" /> <data path = ... <connection> element <connection port = "6136" max = "100" /> The <connection> ...

 
manual

[ODB1] Chapter 8 - ObjectDB Server

An ObjectDB server can manage one or more databases. Databases that are managed by a server can be accessed by multiple processes simultaneously. In addition, the server supports accessing these databases from remote machines by TCP/IP. More details about client server mode vs. embedded database mode are discussed in Section 1.2.... : specify a configuration file explicitly -port <port> : override configuration TCP port to listen to To start the ...

 
manual

Database Server

Explains how to run and use the ObjectDB object database Server to manage Java/JPA/JDO databases in client-server mode.... : specify a configuration file explicitly -port <port> : override configuration's server port -silent : avoid ...

 
manual

Database Replication and Clustering

Replication enables maintaining up to date version of an ObjectDB database on multiple nodes.... : <server > <connection port = "6001" max = "100" /> <data path = ... specifies the location of the slave server on port 6001 as well as the location of the master server on port 6000. Notice that the specified user and password attributes should ...

 
forum_thread

Replication error - parsing objectdb config

I'm trying to replicate a database using the following config: <server>   <connection port="6136" max="100" />   <data path="$objectdb/db-files" />   <replication url="objectdb://localhost:6126/DEV1/NewMessagePipe.odb;user=admin;password=admin" /> </server> ... config: <server>   <connection port="6136" max="100" />   <data path="$objectdb/db-files" /> ... My master server is running on port 6136 while the slave runs on 6138. Config from the slave looks as ... <server > <connection port = "6138" max = "100" /> <data path = ...

 
manual

[ODB1] Chapter 5 - JDO Connections

The PersistenShows how to use database connections and transactions in JDO. ceManagerFactory interface represents a factory of database connections. Its main role is to provide PersistenceManager instances. The PersistenceManager interface represents a database connection. Every operation on a database requires a PersistenceManager instance. The Transaction interface represents a transaction on a database. Every operation that modifies the content of the database requires an active transaction.[toc hidden:1]... client server mode, a url in the format objectdb://host:port/path has to be specified. In this case, a database server is expected to ... name or ip address) and listening to the specified port (the default is 6136 when not specified). The path indicates the ...

 
forum_thread

Data portability

Hi,   I've never used an OODB, I'm looking for a starting point but a recurrent concern is the Data Portability one. More clear: what options / strategies do I have to export / move my data to another  tool, if there is a need to? #1 2010-12-01 18:29 Hi, I've never used an OODB, I'm looking for a starting point but a recurrent concern is the Data Portabi ...

 
forum_thread

Database connection url

I'd like to run a database called db1.odb on port 6136, and simultaneously open it in the explorer. I left the conf file set as: <server> <connection port="6136" max="100" /> <data path="$objectdb/db-files" /> </server> However, I'm not sure about the connection url for the code, and for the explorer. I tried this: Transactor.emf = Persistence.createEntityManagerFactory ("$objectdb/db1.odb");... I'd like to run a database called db1.odb on port 6136, and simultaneously open it in the explorer. I left the conf ... as: <server > <connection port = "6136" max = "100" /> <data path = ...

 
issue

ObjectDB for .NET (C# / VB)

The new file format of ObjectDB 2 has been carefully designed to support multi platform in general and .NET specifically. Work on porting ObjectDB to .NET has started. When it is released - the same database will be available from both Java and .NET and when using client server mode, the client will be have to run one platform where the server is on the other. Feature Request Version: 1.04 Priority: Normal Status: Active Replies: 6 Type:  Feature Request ...

 
forum_thread

Drop the entire database, Change the schema

I am trying to port and example app to ObjectDb. As part of the tests I drop the database and reload it with the new schema automatically between test cycles. Is there a simple way to do this with ObjectDb, or is the only way to delete the database file everytime? Thanks ... 12:19 I am trying to port and example app to ObjectDb. As part of the tests I drop the database and ...