ZE - Webhook Deployment (Artemis)
Prerequisites
Install Java 17.
Ensure your Zephyr Enterprise and Artemis is set up and running, by launching the application in the browser:
Launch Zephyr with your respective host/domain. Example: https://test.yourzephyr.com/flex
Once Artemis is up and running, launch the management console with the IP and port. Example: http://localhost:6093/actuator/hawtio
Webhook Service Deployment (Jar)
Create a directory under folder opt
zephyrservice
.mkdir zephyrservice
Download the ze-jira-webhook.jar and copy it under
zephyrservice
.Create a ze-jira-webhook config file named
zeJiraWebhook.properties
under folderzephyrservice
.vi zeJiraWebhook.properties
Add the below line in the file
zeJiraWebhook.properties
.#Webhook Service port server.port=8081 #Artemis Configuration artemis.queue.name=ze_queue artemis.queue.host.broker.ip=localhost artemis.queue.host.broker.port=61616 spring.artemis.mode=native # Activate Profile {dbType} = mysql/mssql/oracle, {queueType} = artemis/rabbitmq spring.profiles.active={dbType},{queueType} spring.autoconfigure.exclude= org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration, org.springframework.boot.autoconfigure.jms.artemis.ArtemisAutoConfiguration #context path property server.servlet.context-path=/webhook #ze_jira_webhook flags event.validator.json.file=classpath:webhook-events-validation.json ze.jira.webhook.event.validation_flag=false
Append the below database-specific properties based on the Zephyr database you are using.
An example of zeJiraWebhook.properties
for MySQL DB would look like the below:
#Webhook Service port server.port=8081 #context path property server.servlet.context-path=/webhook #Artemis Configuration artemis.queue.name=ze_queue artemis.queue.host.broker.ip=localhost artemis.queue.host.broker.port=61616 spring.artemis.mode=native # Activate Profile {dbType} = mysql/mssql/oracle, {queueType} = artemis/rabbitmq spring.profiles.active=mysql,artemis spring.autoconfigure.exclude= org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration, org.springframework.boot.autoconfigure.jms.artemis.ArtemisAutoConfiguration # ze_jira_webhook flags event.validator.json.file=classpath:webhook-events-validation.json ze.jira.webhook.event.validation_flag=false # Data source configurations applied for mysql --- spring.config.activate.on-profile=mysql spring.datasource.url=jdbc:mysql://<database_ipaddress>:<database_port>/itcc?useUnicode=true&characterEncoding=utf-8&useSSL=false spring.datasource.username=<datbase_username> spring.datasource.password=<database_password> spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.jpa.hibernate.ddl-auto=none spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
Open the “Terminal” or “Command Prompt”
Navigate to folder /opt/zephyrservice
Type the below command
Start the ze-jira-webhook with the following command:
sudo nohup java -jar -Dspring.profiles.active=DB,queue_name -DzeWebhookConfigPath="<config file path till root folder>" ze-jira-webhook.jar &
Example command:
sudo nohup java -jar -Dspring.profiles.active=mysql,artemis -DzeWebhookConfigPath="/opt/zephyrservice" ze-jira-webhook.jar &
Note
The Logs folder will be created where your jars are deployed. Separate log files will be created for each jar. In the above example, it will be in /opt/zephyrservice.