Skip to main content

Install and start Operate

Running via Docker (local development)​

You can use the Docker image camunda/operate:latest to run Operate as container. Please make sure to set appropriate settings described in configuration section of deployment guide. Here an example configuration for docker-compose:

operate:
container_name: operate
image: camunda/operate:latest
ports:
- 8080:8080
environment:
- camunda.operate.elasticsearch.url=http://elasticsearch:9200
- camunda.operate.zeebeElasticsearch.url=http://elasticsearch:9200
- camunda.operate.zeebe.gatewayAddress=zeebe:26500

Manual Configuration (local development)​

Here, we’ll walk you through how to download and run an Operate distribution manually, without using Docker.

Note that the Operate web UI is available by default at http://localhost:8080, so please be sure this port is available.

Download Operate and a compatible version of Zeebe.​

Operate and Zeebe distributions are available for download on the same release page.

Note that each version of Operate is compatible with a specific version of Zeebe.

On the Zeebe release page, compatible versions of Zeebe and Operate are grouped together. Please be sure to download and use compatible versions. This is handled for you if you use the Docker profile from our repository.

Download Elasticsearch​

Operate uses open-source Elasticsearch as its underlying data store, and so to run Operate, you need to download and run Elasticsearch.

Operate is currently compatible to Elasticsearch 7.12.1 You can download Elasticsearch here.

Run Elasticsearch​

To run Elasticsearch, execute the following commands in Terminal or another command line tool of your choice:

cd elasticsearch-*
bin/elasticearch

You’ll know Elasticsearch has started successfully when you see a message similar to:

[INFO ][o.e.l.LicenseService     ] [-IbqP-o] license [72038058-e8ae-4c71-81a1-e9727f2b81c7] mode [basic] - valid

Run Zeebe​

To run Zeebe, execute the following commands:

cd zeebe-broker-*
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_CLASSNAME=io.camunda.zeebe.exporter.ElasticsearchExporter ./bin/broker

You’ll know Zeebe has started successfully when you see a message similar to:

[partition-0] [0.0.0.0:26501-zb-actors-0] INFO  io.camunda.zeebe.raft - Joined raft in term 0
[exporter] [0.0.0.0:26501-zb-actors-1] INFO io.camunda.zeebe.broker.exporter.elasticsearch - Exporter opened

Run Operate​

To run Operate, execute the following commands:

cd camunda-operate-distro-1.0.0-*
bin/operate

You’ll know Operate has started successfully when you see messages similar to:

DEBUG 1416 --- [       Thread-6] o.c.o.e.w.BatchOperationWriter           : 0 operations locked
DEBUG 1416 --- [ Thread-4] o.c.o.z.ZeebeESImporter : Latest loaded position for alias [zeebe-record-deployment] and partitionId [0]: 0
INFO 1416 --- [ Thread-4] o.c.o.z.ZeebeESImporter : Elasticsearch index for ValueType DEPLOYMENT was not found, alias zeebe-record-deployment. Skipping.

Access the Operate web interface​

The Operate web interface is available at http://localhost:8080.

The first screen you'll see is a sign-in page. Use the credentials demo / demo to sign in.

After you sign in, you'll see an empty dashboard if you haven't yet deployed any processes:

operate-dash-no-processes

If you have deployed processes or created process instances, you'll see those on your dashboard:

operate-dash-with-processes