qaz-t commented on issue #16373:
URL: 
https://github.com/apache/dolphinscheduler/issues/16373#issuecomment-3086502443

   @det101 
   I have a similar oauth configuration and encountered the same problem.
   here is my external postgresql (version 17.4) config:
   ```yaml
   datasource:
     # -- The profile of datasource
     profile: postgresql
   postgresql:
     # -- If not exists external PostgreSQL, by default, the DolphinScheduler 
will use a internal PostgreSQL
     enabled: false
   externalDatabase:
     # -- If exists external database, and set postgresql.enable value to false.
     # external database will be used, otherwise Dolphinscheduler's internal 
database will be used.
     enabled: true
     # -- The type of external database, supported types: postgresql, mysql
     type: "postgresql"
     # -- The host of external database
     host: "xxx"
     # -- The port of external database
     port: "5432"
     # -- The username of external database
     username: "dolphinscheduler"
     # -- The password of external database
     password: "xxx"
     # -- The database of external database
     database: "dolphinscheduler"
     # -- The params of external database
     params: "characterEncoding=utf8"
     # -- The driverClassName of external database
     driverClassName: "org.postgresql.Driver"
   ```
   user dolphinscheduler is the own of database dolphinscheduler, and   
dolphinscheduler-db-init-job create all tables successfully.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to