Anyone can run Camunda BPM on Azure in 10 Minutes

By
Networking Options
  • Blog
  • >
  • Anyone can run Camunda BPM on Azure in 10 Minutes
TOPICS

30 Day Free Trial

Bring together legacy systems, RPA bots, microservices and more with Camunda

Sign Up for Camunda Content

Get the latest on Camunda features, events, top trends, and more.

TRENDING CONTENT

This article shows the simplest and fastest way to get a Camunda BPM server running on Microsoft Azure without command line usage. Keeping things as simple as possible, we perform all steps in the browser. No technical knowledge of Azure or Camunda and no local tool installation are required.

(For CLI usage please read “Deploying Camunda BPM to Azure via CLI…” .)
The resulting server will be suitable as a (shared, insecure) playground accessible via the internet. It is not a secure setup suitable for production usage. A technical operator setting up a production system would certainly approach things differently and possibly choose different Azure services.

Azure Access

To deploy anything on Microsoft Azure you obviously require an Azure account. If you do not already have one, the sign-up is easy and usage during the first 12 months or within an initially granted 200 USD budget is free.

Many technical users prefer to interact with Azure via a locally installed command line interface (CLI) or cloud shell. This is not mandatory, though. Here all steps are performed via the Azure portal. If required, register for an account, then login to the Azure portal at portal.azure.com.

Azure Portal Landing Page

Creating a Camunda BPM Container Instance

Azure Portal Containers Section

The Azure portal’s landing page offers a variety of services. The easiest way to run Camunda BPM on Azure is to create an Azure Container Instance (ACI).
Select the + Create a resource option, followed by the Containers section and the Container Instances entry.

Basic Options

The subscription you created during the registration of the Azure account should already be selected.

Resource Group Creation as part of Azure Container Image Creation

Azure resources are managed and organized in resource groups. All Azure resources must be deployed into one. The Create new link under the Resource Group field allows to quickly add a new resource group for the container instance. You can freely choose a name,
for instance rg-camunda.

Container Image configuration for Camunda BPM Run on Microsoft Azure

Next, we need to provide container name, region, image source, and desired system resources for our server.

The container name can also be chosen freely, camunda-run for example, but must only contain lower characters, numbers and dashes (and needs to be unique in the resource group).
DockerHub is where Camunda publishes its images, therefore we must select Docker Hub or another registry as image source.

Out of the available images Camunda BPM Run is easiest to use:

Camunda BPM Run is a pre-packaged distro of the Camunda BPM platform, including the Camunda webapps (Cockpit, Tasklist, Admin) and the REST API.
The idea behind Run is to provide a full Camunda BPM distro with a simple but powerful configuration mechanism that can be operated by everyone, regardless of their knowledge about Java or application server configuration.
https://docs.camunda.org/manual/latest/user-guide/camunda-bpm-run

The image identifier camunda/camunda-bpm-platform:run-latest always points to the latest version of the Camunda BPM Run distribution.

In the Region field choose the location closest to you or to the location the server will be accessed from. The OS Type should remain set to Linux. The settings under Size can remain unchanged or you can reduce the memory setting to 0.5 GiB.

At the bottom of the page do not yet click Review + create, instead continue with the option Next: Networking > .

Networking Options

Networking Options

Specify a DNS name label of your liking. The label will become part of the URL which will be used to access your server and has to be unique within the previously selected region.
In the Ports section, change the value for Ports to 8080 and leave the Protocol set to TCP.
Again, do not yet select Review + create, but proceed with
Next: Advanced >.

Advanced Settings

The Camunda BPM Run distribution includes the REST-API, which can be used, for instance by the Modeler or external services, to communicate with the server.

Advanced Settings

By default this access option is not secured (suitable for installation e.g. on own laptop). As our server will be accessible from the public Internet, we should secure it. Conveniently, Camunda BPM Run is prepared to allow this via a simple switch.

In the Environment Variables section add a Key:
_SPRING_APPLICATIONJSON
with the Value:
{”camunda.bpm.run.auth.enabled”:”true”}

NOW the configuration can be completed with Review + create.

Review + Create

Container Image Configuration Summary

On the summary page review the settings entered, if needed step back with the < Previous button and correct settings, otherwise complete the container image configuration with Create.

Container Instance Overview with Deployment underway

The screen you are taken to next should show the successful creation of the container instance and indicate that the deployment is underway.

Container Instance Overview with completed Deployment

Depending on Azure’s resource availability at the particular time, completing the deployment can take just one or several minutes. The screen eventually changes and indicates completion of the deployment.

Accessing the Camunda Web Portal

If you follow the Go to resource link you will be taken to the now running camunda-run container instance’s overview page.

Overview Page

Here we can find the Fully Qualified Domain Name (FQDN), which is basically the URL under which your Camunda server is now accessible. Hovering the cursor over the FQDN text makes a Copy to clipboard button appear on the right, which copies the FQDN so we can subsequently easily paste it e.g. into the browsers.

However, the FQDN alone is not sufficient to access the web portal. We have to append :8080 to it. In this example the FQDN is: robs-camunda.southeastasia.azurecontainer.io

So the url of the web portal is
https://robs-camunda.southeastasia.azurecontainer.io:8080

Camunda Web Portal

After opening your server’s URL https://yourFQDN:8080 in your browser you should see the login page. Use demo /demo to login, then use the web portals as described in the documentation.

(Most browsers indicate that the page is insecure. This is because https is not enabled and means that the communication between this server and your browser is not encrypted. On any system of importance you would, among other steps, register your company’s security certificate and enable https.)

CHANGE THE PASSWORD!

After logging in, use the Change password link in the Profile section on the right to change the password.

Profile section

Is the REST API is secured?

To confirm securing the REST-API was successful we can access for instance
https://yourFQDN:8080/engine-rest/deployment in our browser. In this example the test URL would be
https://robs-camunda.southeastasia.azurecontainer.io:8080/engine-rest/deployment
If the REST-API is secured then the browser will display a login screen.

REST API

The credentials (changed in the paragraph above) or a newly created account can be used to login.

Deploying a Process Model

Depending on the Camunda Edition and the tools available to you there are many ways to deploy a process model to your server. One easy way to do this is to download the Camunda Modeler and use its built-in deployment feature.

Modeler

In the deployment dialog, opened via the Deploy current diagram menu icon, you need to specify the REST endpoint URL of your server:
https://yourFQDN:8080/engine-rest
In this example it is:
https://robs-camunda.southeastasia.azurecontainer.io:8080/engine-rest

Deploy Diagram

If you successfully secured the REST API then you will have to select Authentication:
HTTP Basic and provide the Username and Password you use for the portal login. A notification will confirm a successful deployment. From now on the model will be visible in the Deployment view in your Camunda Cockpit and executable via the Camunda Tasklist (or other clients).

Stopping, Cleaning up or Restarting

To avoid unnecessarily burdening your budget ensure you stop the container instance while it is not needed.

Azure Portal Landing Page with recently used Services and Resources

The Azure service start menu automatically includes the recently used services on the top and a Recent resources section. Via those links one can navigate to the service’s main pages (Container instances, Resource groups), on which the resources are listed, or directly to the overview pages of the specific resources (resource group rg-camunda or container instance camunda-run).

In any case, clicking on the name of a specific resource leads to the resource’s overview page. The buttons on the top of the resource overview pages allow you to Start / Restart / Stop / Delete the container instance…

Container Instance Overview

…or to delete the resource group.

Delete the resource group

It may take a bit until a resource is deleted and no longer shows up on the portal’s landing page.

Conclusion

The Azure Container Service and the Camunda BPM Run distribution are a great combination and accessible to pretty much everyone. Just following the described steps, no technical knowledge or local installations are required to have a Camunda BPM server running in the cloud in only minutes.

Getting Started

Getting started on Camunda is easy thanks to our robust documentation and tutorials

Try All Features of Camunda

Related Content

Learn how to get started with automated underwriting, what the benefits are and why automation in underwriting is important.
An integral part of process orchestration is process automation—get those repeatable, well-understood tasks that don't require complex decision-making on autopilot!
Enhance your business's operational efficiency with business process management, and streamline your workflows to reduce cost and minimize risk.