In order to install Cassandra NoSQL Server on Docker first we need to pull the latest image from docker hub using the below command,
% docker pull cassandra
Using default tag: latest
latest: Pulling from library/cassandra
....
....
71289df7ebc6: Downloading 17.24MB/49.85MB
bcbed3648300: Download complete
....
Status: Downloaded newer image for cassandra:latest
docker.io/library/cassandra:latest
Running Cassandra on Docker
% docker run --name uat-cassandra cassandra:latest
Apache Cassandra is one of the most widely used open-source distributed database management systems that are designed to handle large amounts of data across many commodity servers. It provides high availability with no single point of failure. Cassandra also offers robust support for clusters spanning multiple datacenters, with asynchronous masterless replication allowing low latency operations for all clients.
More Posts related to Docker,
- How to docker remove a container when it exits
- Install Python on Alpine Linux - Docker
- How to Rename Docker Image with none TAG and REPOSITORY?
- Remove all stopped containers in Docker using prune command
- [Fix] Docker Error response from daemon: manifest for :latest not found: manifest unknown
- [fix] Error response from daemon: conflict unable to remove repository reference ubuntu container is using its referenced image
- [Docker] Install Python3 on Alpine Linux
- Unable to find image docker latest locally
- How to Stop/Cancel/kill docker image pull
- How to know the Docker Engine Version
- [fix] Docker: OCI runtime exec failed unable to start container process
- [Solution] Alpine Docker apt-get: not found
- Install and Run Cassandra on Docker Desktop
- Install node on Alpine Linux Docker
- How to Copy files from Docker Container to Host System
- Install the minimal Linux on Docker (only 5 mb Alpine Linux)
- How to stop and start a docker container
- Docker - Error response from daemon: You cannot remove a running container
- Open Docker Desktop from macOS Terminal
- How to check installed docker version command
- How to know the Docker Sandbox ID of a Container Network?
- [fix] docker: Error response from daemon: dial unix docker.raw.sock: connect: no such file or directory.
- [Docker] Install Git on Alpine Linux
- Docker MySQL Compose File with Volume Example
- [fix] Docker: Alpine Linux - /bin/sh: bash: not found
More Posts:
- How to make a div tag clickable - Html
- What is the Null Object Equivalent in Python? - Python
- How to remove app from Dock when closed [macOS Big Sur] - MacOS
- Microsoft Teams meeting Full Screen mode option missing - bring it back - Teams
- Microsoft Teams Zoom In and Zoom Out Keyboard Shortcut - Teams
- Add two numbers using Java Generics - Java
- WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip. - PIP
- How to Install MongoDB in VSCode - HowTos