Manual installation on local machine | Camunda Platform 8 Docs
Downloaded zip from below link :
Release Camunda Platform 8.1.10 · camunda/camunda-platform · GitHub
How do we update the port for operate to run on say 9090 instead of 8080. I tried updating the port in application.yml, howvere it doesnt works. Operate defaults to 8080.
I have a system process running on 8080 which I cannot terminate. So need help in updating operate port to 9090
contents of application.yml
camunda.operate:
server:
port: 9090
Set operate username and password.
If user with does not exists it will be created.
Default: demo/demo
#username:
#password:
ELS instance to store Operate data
elasticsearch:
# Cluster name
clusterName: elasticsearch
Hi @ShilpaN.Chalke,
Due to the formatting, it’s hard for me to understand your configuration.
However, the property to configure the port is server.port
. I have the impression that you used camunda.operate.server.port
. The full application.yaml may look like this:
# Operate configuration file
server:
port : 9090
camunda.operate:
# Set operate username and password.
# If user with <username> does not exists it will be created.
# Default: demo/demo
#username:
#password:
# ELS instance to store Operate data
elasticsearch:
# Cluster name
clusterName: elasticsearch
# URL
url: http://localhost:9200
# Zeebe instance
zeebe:
# Gateway address
gatewayAddress: localhost:26500
# ELS instance to export Zeebe data to
zeebeElasticsearch:
# Cluster name
clusterName: elasticsearch
# URL
url: http://localhost:9200
# Index prefix, configured in Zeebe Elasticsearch exporter
prefix: zeebe-record
Hey Thanks Stephan. But after doing above changes as well the port was defaulted to 8080. However, I fpund a way, I updated the operate.bat file to run the execution with -Dserver.port=xxxx. It worked.
1 Like