Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
1,178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. #
  2. # Copyright 2018 Confluent Inc.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16.  
  17. # The address the socket server listens on.
  18. # FORMAT:
  19. # listeners = listener_name://host_name:port
  20. # EXAMPLE:
  21. # listeners = PLAINTEXT://your.host.name:9092
  22. #listeners=http://0.0.0.0:8081
  23. listeners=http://0.0.0.0:8081,https://0.0.0.0:8082
  24.  
  25. kafkastore.security.protocol=SSL
  26.  
  27.  
  28. ssl.keystore.location=/home/emiliano/confluent-5.3.0/kafka.server.keystore.jks
  29. ssl.keystore.password=serversecret
  30. ssl.key.password=serversecret
  31. ssl.truststore.location=/home/emiliano/confluent-5.3.0/kafka.server.truststore.jks
  32. ssl.truststore.password=serversecret
  33.  
  34.  
  35.  
  36.  
  37. # Zookeeper connection string for the Zookeeper cluster used by your Kafka cluster
  38. # (see zookeeper docs for details).
  39. # This is a comma separated host:port pairs, each corresponding to a zk
  40. # server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002".
  41. #kafkastore.connection.url=localhost:2181
  42.  
  43. # Alternatively, Schema Registry can now operate without Zookeeper, handling all coordination via
  44. # Kafka brokers. Use this setting to specify the bootstrap servers for your Kafka cluster and it
  45. # will be used both for selecting the master schema registry instance and for storing the data for
  46. # registered schemas.
  47. # (Note that you cannot mix the two modes; use this mode only on new deployments or by shutting down
  48. # all instances, switching to the new configuration, and then starting the schema registry
  49. # instances again.)
  50. kafkastore.bootstrap.servers=SSL://localhost:9093
  51.  
  52.  
  53.  
  54. # The name of the topic to store schemas in
  55. kafkastore.topic=_schemas
  56.  
  57. # If true, API requests that fail will include extra debugging information, including stack traces
  58. debug=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement