Pasar al contenido principal
https://catalogartifact.azureedge.net/publicartifacts/pcloudhostingllc1770894336819.cassandra122-ebe9afd4-94b1-45c8-9507-5d36058b646d/image0_pcloud.png

Cassandra

por pcloudhosting

(1 clasificaciones)

Version 5.0.8 + Free Support on Ubuntu 26.04

Apache Cassandra is an open-source, distributed NoSQL database management system designed to handle large amounts of data across multiple servers with high availability and no single point of failure. It is commonly used for scalable, fault-tolerant, and high-performance database workloads.

Version: Apache Cassandra 5.0.8

The solution supports common database workflows including distributed data storage, high availability, replication, fault tolerance, and fast read/write operations. It is ideal for cloud-native applications, analytics platforms, IoT workloads, messaging systems, and large-scale enterprise applications.

Features of Apache Cassandra:

  • Distributed NoSQL database for large-scale data storage.
  • High availability with no single point of failure.
  • Supports replication across multiple nodes and data centers.
  • Uses Cassandra Query Language (CQL) for database operations.
  • Designed for high write throughput and horizontal scalability.
  • Includes CLI tools such as cqlsh and nodetool for database management.

Usage instructions for Apache Cassandra
$ sudo su
$ systemctl status cassandra
$ nodetool status
$ cqlsh 127.0.0.1 9042

Testing commands:

CREATE KEYSPACE testdb
WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1};

USE testdb;

CREATE TABLE users (
    id UUID PRIMARY KEY,
    name text,
    email text
);

INSERT INTO users (id, name, email)
VALUES (uuid(), 'Kapil', 'kapil@example.com');

SELECT * FROM users;

Credentials Saved in: Not applicable by default. Apache Cassandra local installation does not create default username/password unless authentication is manually enabled.

Access Cassandra CLI:
Run the following command on the server:

cqlsh 127.0.0.1 9042

Default Port:
9042

Product Type: CLI / Database / NoSQL Database

Disclaimer: Apache Cassandra is provided “as is” under applicable open-source licenses. Users are responsible for proper configuration, secure access control, authentication setup, firewall rules, backup planning, and validation of stored data. This solution is best suited for scalable, distributed, and high-availability database workloads in development and production environments.