Vultr Managed Apache Kafka® allows customers to retrieve essential information for connecting to their Kafka database. Users can easily access details such as Host, Port, and SSL certificates to facilitate secure and reliable connections. This user-friendly interface ensures customers have the necessary information at their fingertips to configure their applications and services for seamless integration with their Kafka environment.
Follow this guide to manage connection details for Vultr Managed Apache Kafka® using the Vultr Customer Portal, API, and CLI.
Navigate to Products and select Databases.
Select the target database.
Navigate to Connection Details under Overview.
Copy Connection URL.
Download Signed Certificate and save the certificate.
List all the databases by sending a GET
request to the List Managed Databases endpoint and note the target database's ID.
$ curl "https://api.vultr.com/v2/databases" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a GET
request to the Get Managed Database endpoint and specify the target database's ID.
$ curl "https://api.vultr.com/v2/databases/<database-id>" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Visit the Get Managed Database endpoint to view additional attributes to add to your request.
Copy the host
, port
, user
, and password
values.
List all databases and note the target database's ID.
$ vultr-cli database list --summarize
Retrieve connection details by specifying the target database's ID.
$ vultr-cli database get <database-id>
Run vultr-cli database get --help
to view all options.