... |
h1. Steps to install Teiid |
* Download the [JBoss AS|http://www.jboss.org/jbossas/downloads.html] application server. Install the server by unzipping into a known location. Ex: /apps/jboss\-{space-metadata-from:asVersionNumber} |
{note} |
... |
teiid-security-roles.properties /modules |
/org/jboss/teiid/* /system |
/layers /base /org/jboss/teiid/* |
/standalone /configuration |
... |
teiid-security-users.properties teiid-security-roles.properties |
/deployments teiid-*.rar |
{code} |
... |
Teiid needs to be installed into an existing JBoss AS 7.2 (EAP 6.1) installation.
Teiid provides an embedded kit, however it should be considered a tech preview as its APIs will likely evolve and there is sparse documentation. |
You may also choose to use an existing AS installation. However if a previous version of Teiid was already installed, you must remove the old Teiid distribution artifacts before installing the new version. |
The "Domain" mode recommended in a clustered environment to take advantage of clustered caching and cluster safe distribution of events. Teiid's default configuration for Domain mode through CLI script configured for high availability and clustered caching.
if you want to start the "standalone" profile, execute the following command
<jboss-install>/bin/standalone.sh -c=standalone-teiid.xml
Installing Teiid using CLI script The above is starting JBoss AS in a separate Teiid specific configuration that is based standalone.xml. However, if you already working with a predefined configuration for example default standalone.xml and would like to install Teiid into that configuration, then you can execute the following JBoss CLI script. First, start the server <jboss-install>/bin/standalone.sh then in a separate console window execute <jboss-install>/bin/jboss-cli.sh --file=scripts/teiid-standalone-mode-install.cli this will install Teiid subsystem into the running configuration of the JBoss AS in standalone mode. |
To start the server in "Domain" mode, install the JBoss AS 7.2 (EAP 6.1) and Teiid 8.4 on all the servers in are going to be part of the cluster. Select one of the server as the "master" domain controller, the rest of the servers will be slaves that connect to the "master" domain controller for all the administrative operations. Please refer to JBoss AS provided documentation for full details.
Once you configured all the servers, start the "master" node with following command
<jboss-install>/bin/domain.sh
and on "slave" nodes
<jboss-install>/bin/domain.sh
The slave nodes fetch their domain configuration from the "master" node.
Once all the servers are up, to complete the installation for the domain mode, run the following command against "master" node. Note that this only needs to be run for once per whole domain install. This script installs Teiid in HA profile. This also re-configures main-server-group to start the HA profile. Since in domain mode you can not statically deploy resources by dropping them in the domain/deployments folder, this script deploys default resources required (file, ldap, salesforce and ws connectors) using the CLI interface.
<jboss-install>/bin/jboss-cli.sh --file=scripts/teiid-domain-mode-install.cli
Installing "Teiid" in other profiles If the Teiid needs to be installed in other profiles other than HA profile, edit the teiid-domain-mode-install.cli file, and make edits appropriately for profile, socket-bindings, server-groups and then run the above command. |
That it!. JBoss AS and Teiid are now installed and running. See below instructions to customize various other settings.
Once VDBs have been deployed, users can now connect their JDBC applications to Teiid. If you need help on connecting your application to the Teiid using JDBC check out the Client Developer's Guide.
This shows the contents of the Teiid 8.4 deployment. The directory structure is exactly the same under any JBoss profile.
/bin /scripts /docs /teiid /datsources /schema /examples /domain /configuration teiid-security-users.properties teiid-security-roles.properties /modules /system /layers /base /org/jboss/teiid/* /standalone /configuration standalone-teiid.xml teiid-security-users.properties teiid-security-roles.properties
Has installation and utility CLI scripts.
Has documents, examples, sample data source XML fragments and schema files. Contains artifacts need by the Quick Start Example.
This directory contains all the resource-adapter RAR files that are supplied as part of the Teiid installation. Note that resource adaptors are not installed by default for the domain mode.
This directory defines the modules for JBoss AS 7.2 (EAP 6.1) system
This directory contains Teiid client libraries. It has the Teiid JDBC driver jar, "teiid-8.4.0.Final-jdbc.jar", and also contains "teiid-hibernate-dialect-8.4.0.Final.jar" that contains Teiid's Hibernate dialect.
This directory contains temporary files created by Teiid. These are mostly created by the buffer manager. These files are not needed across a VM restart. Creation of Teiid lob values (for example through SQL/XML) will typically create one file per lob once it exceeds the allowable in memory size of 8KB. In heavy usage scenarios, consider pointing the buffer directory at a partition that is routinely defragmented.
This directory contains cached vdb metadata files. Do not edit them manually.