Created
April 28, 2018 23:31
-
-
Save DorkNstein/2ea51a7a66597edd06227839544a37cc to your computer and use it in GitHub Desktop.
Install Cassandra in CentOS instance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Cassandra in Google instance | |
## https://www.liquidweb.com/kb/how-to-install-cassandra-on-centos-7/ | |
yum -y install java | |
sudo yum -y install java | |
vim /etc/yum.repos.d/datastax.repo | |
sudo vim /etc/yum.repos.d/datastax.repo | |
# ADD steps from https://www.liquidweb.com/kb/how-to-install-cassandra-on-centos-7/ | |
# Save | |
yum -y install dsc20 | |
sudo yum -y install dsc20 | |
sudo vim /etc/yum.repos.d/datastax.repo | |
sudo yum -y install dsc20 | |
systemctl start cassandra | |
sudo systemctl start cassandra | |
sudo systemctl status cassandra |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment