Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ef1163844d484e8cac26108fbae1fe6f3f48d725 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<title>CDO Master Server Example</title>
</head>

<body>

<h1>CDO Master Server Example</h1>

This project contains the launch configuration "ExampleMasterServer" that
can be used to start a new OSGi process with a CDO master repository.
You may need to update the launch configuration by clicking the "Add Required
Plugins" button on the Plugins tab.
<p>
Before you actually run this master server you should review the server
configuration file /config/cdo-server.xml in this project. In particular
you may want to adjust the following settings:
<p>
<ul>
	<li>
		Acceptor port.
		Default is 2036.
	</li>
	<li>
		H2 datasource URL.
		Default is a /database folder in the current directory, i.e., this project.
	</li>
	<li>
		ID generation location.
		Default is STORE, should be changed to CLIENT for all offline scenarios!
	</li>
</ul>

If the server is running you can point your web browser to
<a href="http://localhost:7777">http://localhost:7777</a> in order to
introspect the repository. Please note that this introspection facility
should not be used in production!

</body>
</html>

Back to the top