Reputation: 806
If I'm running Confluent platform locally, what would be the default credentials to access schema registry? I am not using Confluent Cloud. Running all services locally using confluent local services start
. I haven't modified any of the default configs in /etc/**
.
$: confluent schema-registry schema list --schema-registry-endpoint http://localhost:8081
Error: you must log in to use this command
Suggestions:
Log in with `confluent login`.
If you need a Confluent Cloud account, sign up with `confluent cloud-signup`.
Upvotes: 1
Views: 866
Reputation: 191743
There are no credentials when running confluent local
.
But if there were, you'd start by inspecting your schema-registry.properties
file, or if the server is started with a JAAS file (look at the running Java process arguments for the Registry)
As far as I know, confluent schema-registry
requires connecting to Confluent Cloud.
Just use tools like Postman / Insomnia locally
Upvotes: 2