Apache Cassandra - Distributed NoSQL database
Everything you need to deploy Cassandra with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Cassandra up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Cassandra with:
blastdock init cassandra
Interactive mode:
blastdock init cassandra -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Cassandra installation with these configuration options.
CQL native transport port
JMX monitoring port
Cluster name
Complete Docker Compose configuration for Cassandra deployment.
version: '3.8'
services:
cassandra:
image: cassandra:latest
container_name: {{ project_name }}_cassandra
restart: unless-stopped
ports:
- "9042"
- "7199"
environment:
0: CASSANDRA_CLUSTER_NAME={{ cluster_name }}
volumes:
- /var/lib/cassandra
networks:
- cassandra_network
volumes:
cassandra_data:
driver: local
networks:
cassandra_network:
driver: bridge