How to change port num in application.yml with JAR? #3924
-
I deployed Kafka-UI in a host by JAR, and kafka:
clusters:
-
name: local
bootstrapServers: localhost:9092 When I start Kafka-UI with command How can I change the port num in application.yml? |
Beta Was this translation helpful? Give feedback.
Answered by
waitspring
Jun 14, 2023
Replies: 1 comment
-
The num port could be configure in application.yml like this: server:
port: 10000
kafka:
clusters:
- name: local
bootstrapServers: localhost:9092 A demo from source code case in |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
waitspring
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The num port could be configure in application.yml like this:
A demo from source code case in
kafka-ui-master/kafka-ui-master/kafka-ui-api/src/main/resources/application-local.yml
.