Skip to content

Latest commit

 

History

History
77 lines (60 loc) · 2.4 KB

File metadata and controls

77 lines (60 loc) · 2.4 KB

Installing ODPi Egeria

The egeria build process creates the distribution files for Egeria in the open-metadata-distribution module. The assemblies are located from the egeria build directory as follows:

$ cd open-metadata-distribution/open-metadata-assemblies/target
$ ls
ls
archive-tmp					egeria-2.10-SNAPSHOT-sources.tar.gz
egeria-2.10-SNAPSHOT-distribution		maven-archiver
egeria-2.10-SNAPSHOT-distribution.tar.gz		open-metadata-assemblies-2.10-SNAPSHOT.jar
egeria-2.10-SNAPSHOT-omag-server			rat.txt
egeria-2.10-SNAPSHOT-omag-server.tar.gz

The name of the files is determined by the release level of the code that you downloaded from GitHub. In this example, the release is egeria-2.10-SNAPSHOT.

Create a directory for the install and copy the tar file into it. The two commands shown below create an install directory at the same level in the file system as the egeria build library and then copies the egeria distribution file into it.

$ mkdir ../../../../egeria-install
$ cp egeria*-distribution.tar.gz ../../../../egeria-install

These next commands change to the new directory and lists its contents.

$ cd ../../../../egeria-install
$ ls
egeria-2.10-SNAPSHOT-distribution.tar.gz

It is now possible to unpack the tar file.

$ tar -xf egeria-2.10-SNAPSHOT-distribution.tar.gz
$ ls
egeria-2.10-SNAPSHOT-distribution.tar.gz	egeria-omag-2.10-SNAPSHOT

A new directory is created called egeria-omag-2.10-SNAPSHOT. Change to this new directory and list its contents as shown below.

$ cd egeria-omag-2.10-SNAPSHOT
$ ls
LICENSE			clients			server
NOTICE			conformance-suite	user-interface

Under server is a directory for the OMAG Server Platform that is used to run open metadata and governance services.

Change to the OMAG server platform's directory.

$ cd server
$ ls
$ resources				server-chassis-spring-2.10-SNAPSHOT.jar

This is the end of the Downloading and Building ODPi Egeria Tutorial. You are now ready to learn about the OMAG Server Platform.


License: CC BY 4.0, Copyright Contributors to the ODPi Egeria project.