Apache Cassandra

Apache Cassandra - Distributed NoSQL database

9042
Default Port
1
Services
7.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init cassandra

Template Overview

Everything you need to deploy Cassandra with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Cassandra
cassandra:latest
Categories
Database
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Cassandra up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Cassandra with:

Terminal
blastdock init cassandra

Interactive mode:

Terminal
blastdock init cassandra -i

What's Included

Cassandra
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Cassandra installation with these configuration options.

3
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Cql Port

CQL native transport port

port
Default: 9042
Required: Yes

Jmx Port

JMX monitoring port

port
Default: 7199
Required: Yes

Cluster Name

Cluster name

string
Default: My Cluster
Required: Yes

Docker Compose

Complete Docker Compose configuration for Cassandra deployment.

1
Services
1
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
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