0rajinder0
0rajinder0

Reputation: 1

cassandra installing on centOS 6 using yum install dsc20 says following and not installed

Loaded plugins: fastestmirror, refresh-packagekit Loading mirror speeds from cached hostfile * base: ftp.osuosl.org * extras: centosy3.centos.org * rpmforge: repoforge.mirror.constant.com * updates: centosu5.centos.org datastax | 951 B 00:00 Setting up Install Process No package dsc20 available.

Upvotes: 0

Views: 1727

Answers (1)

Highstead
Highstead

Reputation: 2441

As Orajinder pointed out you need to do the following:

Add the repo to your list of supported repositories:

sudo vim /etc/yum.repos.d/datastax.repo

[datastax]
name= DataStax Repo for Apache Cassandra
baseurl=http://rpm.datastax.com/community
enabled=1
gpgcheck=0

Then install

sudo yum install dsc20

Upvotes: 0

Related Questions