segunda-feira, 30 de janeiro de 2017

Install Teiid 9.1.2 on CentOs 7

Install Teiid 9.1.2 on Cent Os 7

Here are the steps necessary to install Teiid 9.1.2 Server on CentOs 7:

  1. Download Teiid 9.1.2
  2. Extract the zip file to some directory (that will be know from now on as )
  3. Go to
  4. Run ./add-user.sh
  5. Add one user for managment and one user for application
  6. Edit standalone.sh and add (replace the SERVER_OPTS by the following line)
    1. SERVER_OPTS="-b 0.0.0.0 -bmanagement 0.0.0.0"
    2. This will allow access to both frontend and backend from outside the machine where Teiid is installed. If you do not what that management be accessed from outside, then remove the "-bmanagement 0.0.0.0" part.
  7. Configure firewall (on a shell write the following to open Teiid default ports to outside).
    1. firewall-cmd --permanent --zone=public --add-port 9990/tcp
    2. firewall-cmd --permanent --zone=public --add-port 8080/tcp
    3. firewall-cmd --permanent --zone=public --add-port 31000/tcp
    4. firewall-cmd --reload

Start Teiid

cd /bin 
./standalone.sh -c=standalone-teiid.xml


URLs

Teiid will be available at:

http://127.0.0.1:8080
http://127.0.0.1:9990/console

Sem comentários: