当前位置:   article > 正文

linux下使用yum命令安装Cassandra_yum 安装cassandra

yum 安装cassandra

CassandraC是一套开源分布式NoSQL数据库系统。适用于大数据量高并发的应用场景。
建议直接上Java 1.7版本的jdk,因为Cassandra是运行于JDK之上,所以JDK是必须要安装的。

1、创建cassandra.repo
使用指令"touch"时,如果指定的文件不存在,则将创建一个新的空白文件

touch /etc/yum.repos.d/cassandra.repo
  • 1

2、编辑cassandra.repo

vi /etc/yum.repos.d/cassandra.repo 
  • 1

在文件中添加以下内容

[cassandra] 
name=Apache Cassandra 			     
baseurl=https://www.apache.org/dist/cassandra/redhat/311x/ 	
gpgcheck=1 
repo_gpgcheck=1 
gpgkey=https://www.apache.org/dist/cassandra/KEYS
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3、使用yum命令进行安装

sudo yum install cassandra	
  • 1

4、安装完成后启动服务

service cassandra start	
  • 1

与之对应的停止服务的命令为

sudo service cassandra stop
  • 1

5、设置cassandra为自动启动

chkconfig cassandra on   
  • 1

6、使用cqlsh进入Cassandra
在这里插入图片描述
因为兼容问题,如果要使用 cqlsh命令的话必须安装Python 2.7,否则会出现以下错误
在这里插入图片描述
如何在linux下安装Python 2.7
请参考:
linux下yum安装python2.7

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/126358
推荐阅读
相关标签
  

闽ICP备14008679号