How to set camunda schema of database

hi ,everyone how to set camunda schema of database

Hi @wfw and welcome to the Camunda Community,

Camunda has a good documentation, which includes extensive information on this topic:

In Case of SpringBoot application you can mention it in application.yaml

camunda.bpm:
  admin-user:
    id: demo
    password: demo
    firstName: Demo
    lastName: Demo
  filter:
    create: All Tasks
  job-execution:
    max-wait: 10000
  bpm:
    database:
      type: postgres
    table-prefix: camunda.
    schema-update: true
server.port: 4040

spring:
  main:
    allow-bean-definition-overriding: true
  jpa:
    properties:
      hibernate:
        dialect: org.hibernate.dialect.PostgreSQLDialect
  datasource:
    driverClassName: org.postgresql.Driver
    #DB connection:
    url: jdbc:postgresql://localhost:26257/db1
    username: root
    password:

And in case of Standalone Tomcat version you can mention it in
a) Server.xml which is inside Conf folder
b) bpm-platform.xml

I would strongly suggest you to go through link provided by StephanHaarmann for better understanding.

Regards
-Manash

1 Like

thank you very much

thank you very much!!