Vultr Managed Database for Valkey is a highly-available Redis®-compatible in-memory database with flexible data structures. You can use the NoSQL database as a cache, streaming engine, and message broker. You can provision a CPU or memory-optimized database cluster around the globe in any Vultr location. Vultr Managed Database for Valkey support trusted sources and SSL certificates for security.
Follow this guide to provision Vultr Managed Database for Valkey using the Vultr Customer Portal, API, and CLI.
Navigate to Products and select Databases.
Click Add Managed Database.
Choose Vultr Managed Database for Valkey as the database engine.
Select the Server Type, Plan, and Number of Replica Nodes.
Choose a server location.
Select a VPC Network.
Enter a database label, review the monthly and hourly cost estimates, and click Deploy Now.
Send a GET
request to the List Managed Database Plans endpoint to view all available plans.
$ curl "https://api.vultr.com/v2/databases/plans" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a POST
request to the Create Database endpoint to create a new database instance.
$ curl "https://api.vultr.com/v2/databases" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
--data '{
"database_engine" : "redis",
"database_engine_version" : "7",
"plan" : "vultr-dbaas-startup-occ-mo-2-26-16",
"region" : "jnb",
"label" : "Remote-Caching-Db"
}'
Visit the Create Database endpoint to view additional attributes to add to your request.
Send a GET
request to the List Managed Databases endpoint to list all database instances.
$ curl "https://api.vultr.com/v2/databases" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json"
List the available database plans.
$ vultr-cli database plan list
Create a new database instance.
$ vultr-cli database create \
--database-engine redis \
--database-engine-version 7 \
--plan vultr-dbaas-startup-occ-mo-2-26-16 \
--region jnb \
--vpc-id 24ab6b57-845b-4354-a243-9bcafb4bd505 \
--label Remote-Caching-Db
List all database instances.
$ vultr-cli database list --summarize
Run vultr-cli database create --help
to view all options.