Sven Delmas
Sven Delmas

Reputation: 822

DataStax Enterprise debian/ubuntu installation error

$sudo apt-get update

Fetched 1,499 kB in 13s (107 kB/s)
W: Failed to fetch http://debian.datastax.com/enterprise/dists/stable/main/binary-i386/Packages 401 Unauthorized

E: Some index files failed to download. They have been ignored, or old ones used instead

Original Post: http://www.datastax.com/support-forums/topic/datastax-enterprise-installation-error

Upvotes: 1

Views: 1335

Answers (2)

Anurag jain
Anurag jain

Reputation: 2451

you are giving invalid credentials used in the datastax.sources.list file.

To add a DataStax repository file called /etc/apt/sources.list.d/datastax.sources.list:

 $ echo "deb https://dsa_email_address:[email protected]/enterprise stable main" | sudo tee -a /etc/apt/sources.list.d/datastax.sources.list

where dsa_email_address and password are the DataStax Academy account credentials you created on the registration page.

Attention: Depending on your environment, you might need to replace @ in your email address with %40 and escape any character in your password that is used in your operating system's command line. Examples: ! and \|.

Help: Cassandra installation docs

Upvotes: 1

Sven Delmas
Sven Delmas

Reputation: 822

This was caused by invalid credentials used in the datastax.sources.list file created by the user.

Upvotes: 1

Related Questions