Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
JaaS installation

Section describes installation of the JaaS


Back to Jagger as a Service REST API

Installation with docker

Fast way to install JaaS - download and run docker image.
Details, you can find in Local installation

Installation with embedded server

JaaS based on Spring Boot, so its properties can be configured using one of Spring Boot ways -
Boot External Config

You can download JaaS .jar file at: http://nexus.griddynamics.net/nexus/content//repositories/public/com/griddynamics/jagger/jaas/2.0/jaas-2.0.jar
To launch JaaS execute:

java -jar jaas-${build.finalName}.jar -Dserver.port=8081
-Djaas.db.url=jdbc:mysql://localhost/jaasdb
-Djaas.db.user=jaas
-Djaas.db.pass=jaas
-Djaas.db.driver=com.mysql.jdbc.Driver
-Djaas.hibernate.dialect=org.hibernate.dialect.MySQLDialect
-Djagger.db.default.desc=jaggerdb
-Djagger.db.default.url=jdbc:mysql://localhost:3307/jaggerdb
-Djagger.db.default.user=jaggeruser
-Djagger.db.default.pass=password
-Djagger.db.default.jdbcDriver=com.mysql.jdbc.Driver
-Djagger.db.default.hibernateDialect=org.hibernate.dialect.MySQLDialect


By default JaaS is listening on port 8080. To change it just override property "server.port" like in the example above.
JaaS is working with two data bases. One is used to hold JaaS state and another is Jagger test results DB