... |
{code} |
<jboss-install>/bin/jboss-cli.sh --file=bin/scripts/teiid-standalone-mode-install.cli |
{code} |
... |
Teiid needs to be installed into an existing JBoss AS 7.5 (EAP 6.4 Alpha) 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=bin/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.5 (EAP 6.4 Alpha) and Teiid 8.12 on all the servers that are going to be part of the cluster. Select one of the servers 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, complete the installation to run in domain mode by executing the following command against the "master" node. Note that this only needs to be run once per domain (i.e. cluster) install. This script will install Teiid in the HA profile. It will also re-configure main-server-group to start the HA profile. Once in domain mode, you can not statically deploy resources by dropping them in the domain/deployments folder, so this script will deploy the default resources (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 Teiid needs to be installed in profiles other than HA, before executing edit the teiid-domain-mode-install.cli file, making the appropriate changes to profile, socket-bindings, and server-groups. |
Thats 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 Teiid using JDBC check out the Client Developer's Guide.
This shows the contents of the Teiid 8.12 deployment. The directory structure is exactly the same under any JBoss profile.
/bin /scripts /docs /teiid /datsources /schema /examples /domain /configuration /modules /system /layers /base /org/jboss/teiid/* /standalone /configuration standalone-teiid.xml
Contains installation and utility CLI scripts for setting up Teiid in different configurations.
Contains documents, examples, sample data source XML fragments and schema files.
This directory contains the Teiid modules for JBoss AS 7.5 (EAP 6.4 Alpha) system
This directory contains Teiid client libraries. It has the Teiid JDBC driver jar, "teiid-8.12.0.Final-jdbc.jar", and also contains "teiid-hibernate-dialect-8.12.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.