About password
Server User List
Explains how to define and set users, directories and permissions in the ObjectDB fast Java database server for JPA/JDO.... Server and specifies their specific settings (username, password, permissions, quota). The default configuration file contains the ... > <user username = "admin" password = "admin" ip = "127.0.0.1" admin = "true" > ...
Password in Embedded Mode?
Is there a way to setup a database file that will be accessed in embedded mode, such that it is locked with a password. Thereby making it impossible to use ObjectDB to access the contents of the file without providing the correct password when obtaining a connection. In my case, I'm interested in obtaining a JPA connection:... accessed in embedded mode, such that it is locked with a password. Thereby making it impossible to use ObjectDB to access the contents of the file without providing the correct password when obtaining a connection. In my case, I'm interested in ...
Database Connection using JPA
Describes the main JPA interfaces: EntityManagerFactory, EntityManager and EntityTransaction.... ; properties. put ( "javax.persistence.jdbc.password" , "admin" ) ; EntityManagerFactory ... a username in client server mode. password - for specifying a user password in client server mode. ...
setConnectionPassword(password)
Set the password for the data store connection.(Method of javax.jdo.PersistenceManagerFactory)
getPersistenceManager(userid, password)
Get an instance of PersistenceManager from this factory.(Method of javax.jdo.PersistenceManagerFactory)
[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.... (such as web applications) where the same username and password can be shared by all the database connections. The following is a ... > <user name = "admin" password = "admin" address = "127.0.0.1" > <dir ...
SSL Configuration
Explains how to set Secure Socket Layer (SSL) in the ObjectDB fast Java object database for JPA/JDO.... path = "$objectdb/ssl/server-kstore" password = "pwd" /> <client-truststore path = "$objectdb/ssl/client-tstore" password = "pwd" /> </ssl > The enabled ... from any machine as long as a valid username and password are provided. If an authentication of the client machine by the ...
Database Replication and Clustering
Replication enables maintaining up to date version of an ObjectDB database on multiple nodes.... url = "objectdb://localhost:6000/test.odb;user=a;password=a" /> </server > The url ... a full url has to be specified including user and password attributes. The slave server uses these details to connect to the ...
javax.jdo.PersistenceManagerFactory
The PersistenceManagerFactory is the interface to use to obtain PersistenceManager instances.(Interface of JDO)
Connection is closed Caused by: java.io.EOFException
I am getting this exception on a regular basis, after a period of time of repeating the same code execution. I don't understand why. I restart the DB server and my code works again for another period of time until same exception is encountered again. I cannot pin down a pattern e.g. after a certain period of time, because the time periods between exceptions are not regular, although frequent. Any test case I use will pass most of the time but will fail after an undetermined period. ... url="objectdb://localhost/test.odb;user=admin;password=admin" /> --> </server > <users > <user username = "admin" password = "admin" ip = "127.0.0.1" admin = "true" > ...