<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cassandra Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/cassandra/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 17 Aug 2019 15:20:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Apache Cassandra on Debian 10?</title>
		<link>https://www.osradar.com/install-apache-cassandra-debian-10/</link>
					<comments>https://www.osradar.com/install-apache-cassandra-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 00:12:11 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache cassandra]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[cassandra]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13095</guid>

					<description><![CDATA[<p>A functional quality application needs a quality database manager. Especially when the application is designed for web and with multiple execution nodes. In this sense, most of the best available solutions are open source. This gives us an idea of the great quality of programs that exist whose developers release the source code of the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-apache-cassandra-debian-10/">How to install Apache Cassandra on Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>A functional quality application needs a quality database manager. Especially when the application is designed for web and with multiple execution nodes. In this sense, most of the best available solutions are open source. This gives us an idea of the great quality of programs that exist whose developers release the source code of the application. On the other hand, these database managers can be SQL or NoSQL according to the need of the application. So in this post, you will learn how to install a NoSQL and open source database manager like Apache Cassandra on Debian 10.</p>
<p><a href="http://cassandra.apache.org/" target="_blank" rel="noopener noreferrer">Apache Cassandra</a> is one of those applications that would take many post to cover all its features. In general, it is a <a href="https://www.osradar.com/tag/nosql/" target="_blank" rel="noopener noreferrer">NoSQL</a> database manager that is sponsored by the Apache foundation. This way it is easy to assume that it is open source and that it is strongly supported by the community.</p>
<p>Its main utility? is that it allows to make high-performance data clusters worldwide and above all we can make changes without data loss or falls. Then, the segment to which it is directed is a little less broad than other alternatives such as <a href="https://www.osradar.com/how-to-install-mongodb-on-ubuntu-18-04/" target="_blank" rel="noopener noreferrer">MongoDB</a>.</p>
<h2>Install Apache Cassandra on Debian 10</h2>
<p>First of all, we recommend that you upgrade your system before you start installing Apache Cassandra. So let&#8217;s go for it.</p>
<pre>:~$ sudo apt update
:~$ sudo apt upgrade</pre>
<p>Apache Cassandra can be installed through its binaries available on the project website. However, it is not so easy to do. Fortunately, there is another, more reliable way to install it.</p>
<p>Open a terminal session on your computer with Debian 10 and install these necessary packages:</p>
<pre>:~$ sudo apt install wget curl gnupg gnupg1 gnupg2</pre>
<p>Then, after the installation is finished you have to download the GPG key to add the Cassandra repository for Debian 10.</p>
<p>So, run the following command:</p>
<pre>:~$ curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -</pre>
<figure id="attachment_13116" aria-describedby="caption-attachment-13116" style="width: 793px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13116" src="https://www.osradar.com/wp-content/uploads/2019/08/1-12.jpeg" alt="1.- Adding the GPG key" width="793" height="185" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-12.jpeg 793w, https://www.osradar.com/wp-content/uploads/2019/08/1-12-300x70.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-12-768x179.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/1-12-696x162.jpeg 696w" sizes="(max-width: 793px) 100vw, 793px" /><figcaption id="caption-attachment-13116" class="wp-caption-text">1.- Adding the GPG key</figcaption></figure>
<p>Then, add the Apache Cassandra repository to Debian 10 sources list.</p>
<pre>:~$ echo "deb http://www.apache.org/dist/cassandra/debian 311x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list</pre>
<p>In this way, we are adding the repository for the 3.11 branch of Apache Cassandra. In fact, at the time of writing this post, the latest available version is 3.11.6.</p>
<p>Then, refresh the APT cache.</p>
<pre>:~$ sudo apt update</pre>
<p class="entry-title">Also you can read <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noopener noreferrer">APT: The Ubuntu package manager</a></p>
<p>Now, you can install Apache Cassandra by running the following command:</p>
<pre>:~$ sudo apt install cassandra</pre>
<figure id="attachment_13118" aria-describedby="caption-attachment-13118" style="width: 1357px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13118" src="https://www.osradar.com/wp-content/uploads/2019/08/2-11.jpeg" alt="2.- Install Apache Cassandra on Debian 10" width="1357" height="391" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-11.jpeg 1357w, https://www.osradar.com/wp-content/uploads/2019/08/2-11-300x86.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-11-768x221.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/2-11-1024x295.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/2-11-696x201.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/2-11-1068x308.jpeg 1068w" sizes="(max-width: 1357px) 100vw, 1357px" /><figcaption id="caption-attachment-13118" class="wp-caption-text">2.- Install Apache Cassandra on Debian 10</figcaption></figure>
<p>Now you have to start and enable the service to start the system. Then it is a good idea to check the status of the service.</p>
<pre>:~$ sudo systemctl enable cassandra
:~$ sudo systemctl start cassandra
:~$ sudo systemctl status cassandra</pre>
<figure id="attachment_13123" aria-describedby="caption-attachment-13123" style="width: 838px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13123" src="https://www.osradar.com/wp-content/uploads/2019/08/3-12.jpeg" alt="3.- Enabling the Cassandra service" width="838" height="338" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-12.jpeg 838w, https://www.osradar.com/wp-content/uploads/2019/08/3-12-300x121.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-12-768x310.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/3-12-696x281.jpeg 696w" sizes="(max-width: 838px) 100vw, 838px" /><figcaption id="caption-attachment-13123" class="wp-caption-text">3.- Enabling the Cassandra service</figcaption></figure>
<p>Apache Cassandra is installed, but before using it you have to configure it a bit.</p>
<h2>Configure Apache Cassandra before use it</h2>
<p>If you are going to use Cassandra for a single node, then the default setting is good. However, it is possible to configure a little Cassandra if you are going to use it for create a cluster.</p>
<pre>:~$ sudo nano /etc/cassandra/cassandra.yaml</pre>
<figure id="attachment_13124" aria-describedby="caption-attachment-13124" style="width: 1028px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13124" src="https://www.osradar.com/wp-content/uploads/2019/08/4-10.jpeg" alt="4.- Configuring Apache Cassandra on Debian 10" width="1028" height="660" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4-10.jpeg 1028w, https://www.osradar.com/wp-content/uploads/2019/08/4-10-300x193.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-10-768x493.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/4-10-1024x657.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/4-10-696x447.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/4-10-654x420.jpeg 654w" sizes="(max-width: 1028px) 100vw, 1028px" /><figcaption id="caption-attachment-13124" class="wp-caption-text">4.- Configuring Apache Cassandra on Debian 10</figcaption></figure>
<p>In this file you first have to change the name of the cluster.</p>
<pre>cluster_name : ['cluster_name']</pre>
<figure id="attachment_13125" aria-describedby="caption-attachment-13125" style="width: 536px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13125" src="https://www.osradar.com/wp-content/uploads/2019/08/5-5.jpeg" alt="5.- Set the cluster name" width="536" height="191" srcset="https://www.osradar.com/wp-content/uploads/2019/08/5-5.jpeg 536w, https://www.osradar.com/wp-content/uploads/2019/08/5-5-300x107.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/5-5-533x191.jpeg 533w, https://www.osradar.com/wp-content/uploads/2019/08/5-5-534x191.jpeg 534w" sizes="(max-width: 536px) 100vw, 536px" /><figcaption id="caption-attachment-13125" class="wp-caption-text">5.- Set the cluster name</figcaption></figure>
<p>Next, you need to set the seeds of the cluster. You have to add the IP address separated by comma.</p>
<pre>seeds: ["ip_address", "ip_address"]</pre>
<figure id="attachment_13126" aria-describedby="caption-attachment-13126" style="width: 608px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13126" src="https://www.osradar.com/wp-content/uploads/2019/08/6-2.jpeg" alt="6.- Adding the cluster nodes" width="608" height="201" srcset="https://www.osradar.com/wp-content/uploads/2019/08/6-2.jpeg 608w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-300x99.jpeg 300w" sizes="(max-width: 608px) 100vw, 608px" /><figcaption id="caption-attachment-13126" class="wp-caption-text">6.- Adding the cluster nodes</figcaption></figure>
<p>It is also recommended to change the default port to increase security. However, it is not mandatory.</p>
<pre>storage_port :[port]</pre>
<p>Next, restart the Apache Cassandra service.</p>
<pre>:~$ sudo systemctl restart cassandra</pre>
<p>And that is it.</p>
<h2>Conclusion</h2>
<p>So, in this post you learned how to install Apache Cassandra on Debian 10 Buster. With this NoSQL database manager you will be able to cluster data at the level of large networks. All without sacrificing system resources and with high performance without packet loss.</p>
<p>You can also read <a href="https://www.osradar.com/install-apache-cassandra-on-debian-9/" target="_blank" rel="noopener noreferrer">How to install Apache Cassandra on Debian 9 Stretch?</a></p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel</a>.</p>
<header class="td-post-title"></header>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-apache-cassandra-debian-10/">How to install Apache Cassandra on Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-apache-cassandra-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Apache Cassandra on Debian 9?</title>
		<link>https://www.osradar.com/install-apache-cassandra-on-debian-9/</link>
					<comments>https://www.osradar.com/install-apache-cassandra-on-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 31 Jan 2019 04:25:03 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[cassandra]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Stretch]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=10428</guid>

					<description><![CDATA[<p>In the business world, quite special database handlers are needed. These database handlers must have the characteristic of scalability and robustness. That is why the Apache Foundation provides us with a set of tools for the deployment of business infrastructure. Recently, we talked about Apache ActiveMQ and today we will do it with Apache Cassandra. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-apache-cassandra-on-debian-9/">Install Apache Cassandra on Debian 9?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In the business world, quite special database handlers are needed. These database handlers must have the characteristic of scalability and robustness. That is why the Apache Foundation provides us with a set of tools for the deployment of business infrastructure. Recently, <a href="https://www.osradar.com/install-apachemq-ubuntu-18-04/">we talked about Apache ActiveMQ</a> and today we will do it with Apache Cassandra. With this in mind, today I will teach you how to install Apache Cassandra and then show you how to configure it.</p>
<p>Apache <a href="http://cassandra.apache.org/">Cassandra</a> is a distributed NoSQL database based on an open-source &#8220;value-key&#8221; storage model written in Java. Being a business database manager, the Data is automatically replicated to multiple nodes for fault-tolerance. Replication across multiple data centers is supported. In addition, failed nodes can be replaced with no downtime.</p>
<p>There are many more features that make Apache Cassandra a reference in the sector of enterprise databases. For example, scalability is its other strength. Cassandra is used by many companies with many replicable nodes.</p>
<p>So, let us start to install Apache Cassandra on Debian 9.</p>
<h2>1. Upgrade your system</h2>
<p>First, you need to update the system. To do this, open a terminal and run.</p>
<pre>:~$ su
:~# apt update &amp;&amp; apt upgrade</pre>
<figure id="attachment_10430" aria-describedby="caption-attachment-10430" style="width: 1068px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10430" src="https://www.osradar.com/wp-content/uploads/2019/01/1-24.png" alt="1.- Upgrade the system" width="1068" height="703" srcset="https://www.osradar.com/wp-content/uploads/2019/01/1-24.png 1068w, https://www.osradar.com/wp-content/uploads/2019/01/1-24-300x197.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/1-24-768x506.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/1-24-1024x674.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/1-24-696x458.png 696w, https://www.osradar.com/wp-content/uploads/2019/01/1-24-638x420.png 638w" sizes="(max-width: 1068px) 100vw, 1068px" /><figcaption id="caption-attachment-10430" class="wp-caption-text">1.- Upgrade the system</figcaption></figure>
<p>After that, you will have an updated and robust system thanks to the security patches. So now you can continue.</p>
<h2>2. Install Apache Cassandra</h2>
<p>There are two ways to perform the installation. The first is through the binaries downloaded from the website. This is a simple way to achieve the installation, however, it is not the easiest and many may find it difficult.</p>
<p>Thus, we are going to use the .deb packages repository to make the installation as simple as possible and the best of all is that we will get the latest stable version.</p>
<p>So, add the Apache Cassandra repository.</p>
<pre>:~# echo "deb http://www.apache.org/dist/cassandra/debian 39x main" | tee -a /etc/apt/sources.list.d/cassandra.sources.list</pre>
<p>After that, add the public key.</p>
<pre>:~# curl https://www.apache.org/dist/cassandra/KEYS | apt-key add -</pre>
<figure id="attachment_10431" aria-describedby="caption-attachment-10431" style="width: 901px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10431" src="https://www.osradar.com/wp-content/uploads/2019/01/2-23.png" alt="2.- Adding the GPG key" width="901" height="517" srcset="https://www.osradar.com/wp-content/uploads/2019/01/2-23.png 901w, https://www.osradar.com/wp-content/uploads/2019/01/2-23-300x172.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/2-23-768x441.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/2-23-696x399.png 696w, https://www.osradar.com/wp-content/uploads/2019/01/2-23-732x420.png 732w" sizes="(max-width: 901px) 100vw, 901px" /><figcaption id="caption-attachment-10431" class="wp-caption-text">2.- Adding the GPG key</figcaption></figure>
<p><em><strong>NOTE: If you don&#8217;t have <a href="https://www.osradar.com/how-to-use-curl-command-linux/">CURL</a> installed, you can run the &#8220;apt install curl&#8221; command.</strong></em></p>
<p>After that, you need to refresh the <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/">APT</a> cache.</p>
<pre>:~# apt update</pre>
<figure id="attachment_10432" aria-describedby="caption-attachment-10432" style="width: 847px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10432" src="https://www.osradar.com/wp-content/uploads/2019/01/3-23.png" alt="3.- Refresh the APT cache" width="847" height="318" srcset="https://www.osradar.com/wp-content/uploads/2019/01/3-23.png 847w, https://www.osradar.com/wp-content/uploads/2019/01/3-23-300x113.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/3-23-768x288.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/3-23-696x261.png 696w" sizes="(max-width: 847px) 100vw, 847px" /><figcaption id="caption-attachment-10432" class="wp-caption-text">3.- Refresh the APT cache</figcaption></figure>
<p>Then, install Apache Cassandra.</p>
<pre>:~# apt install cassandra</pre>
<figure id="attachment_10433" aria-describedby="caption-attachment-10433" style="width: 1213px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10433" src="https://www.osradar.com/wp-content/uploads/2019/01/4-25.png" alt="4.- Install Apache Cassandra" width="1213" height="331" srcset="https://www.osradar.com/wp-content/uploads/2019/01/4-25.png 1213w, https://www.osradar.com/wp-content/uploads/2019/01/4-25-300x82.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/4-25-768x210.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/4-25-1024x279.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/4-25-696x190.png 696w, https://www.osradar.com/wp-content/uploads/2019/01/4-25-1068x291.png 1068w" sizes="(max-width: 1213px) 100vw, 1213px" /><figcaption id="caption-attachment-10433" class="wp-caption-text">4.- Install Apache Cassandra</figcaption></figure>
<p>&nbsp;</p>
<p>Now, you need to enable, start, and check the Cassandra service.</p>
<pre>:~# systemctl enable cassandra
:~# systemctl start cassandra
:~# systemctl status cassandra</pre>
<figure id="attachment_10434" aria-describedby="caption-attachment-10434" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10434" src="https://www.osradar.com/wp-content/uploads/2019/01/5-25.png" alt="5.- The Cassandra service" width="1366" height="340" srcset="https://www.osradar.com/wp-content/uploads/2019/01/5-25.png 1366w, https://www.osradar.com/wp-content/uploads/2019/01/5-25-300x75.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/5-25-768x191.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/5-25-1024x255.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/5-25-696x173.png 696w, https://www.osradar.com/wp-content/uploads/2019/01/5-25-1068x266.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10434" class="wp-caption-text">5.- The Cassandra service</figcaption></figure>
<h2>3. Configure Cassandra</h2>
<p>On the Cassandra web site, the developers say: &#8220;For running Cassandra on a single node, the default configuration is enough, you shouldn’t need to change any configuration. However, when you deploy a cluster of nodes or use clients that are not on the same host, then there are some parameters that must be changed.&#8221;</p>
<p>So, let us change these parameters.</p>
<pre>:~# nano /etc/cassandra/cassandra.yaml</pre>
<figure id="attachment_10435" aria-describedby="caption-attachment-10435" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10435" src="https://www.osradar.com/wp-content/uploads/2019/01/6-20.png" alt="6.- The cassandra file configuration" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/01/6-20.png 1366w, https://www.osradar.com/wp-content/uploads/2019/01/6-20-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/6-20-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/6-20-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/6-20-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/01/6-20-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/01/6-20-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10435" class="wp-caption-text">6.- The Cassandra file configuration</figcaption></figure>
<p>First, the cluster name. Obviously. Replace the default by yours.</p>
<figure id="attachment_10437" aria-describedby="caption-attachment-10437" style="width: 656px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10437" src="https://www.osradar.com/wp-content/uploads/2019/01/7-20.png" alt="7.- Change the cluster name" width="656" height="146" srcset="https://www.osradar.com/wp-content/uploads/2019/01/7-20.png 656w, https://www.osradar.com/wp-content/uploads/2019/01/7-20-300x67.png 300w" sizes="(max-width: 656px) 100vw, 656px" /><figcaption id="caption-attachment-10437" class="wp-caption-text">7.- Change the cluster name</figcaption></figure>
<p>Next, you need to set the seeds of the cluster. You have to add the IP address separated by comma.</p>
<figure id="attachment_10436" aria-describedby="caption-attachment-10436" style="width: 647px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10436" src="https://www.osradar.com/wp-content/uploads/2019/01/8-17.png" alt="8.- Seeds" width="647" height="208" srcset="https://www.osradar.com/wp-content/uploads/2019/01/8-17.png 647w, https://www.osradar.com/wp-content/uploads/2019/01/8-17-300x96.png 300w" sizes="(max-width: 647px) 100vw, 647px" /><figcaption id="caption-attachment-10436" class="wp-caption-text">8.- Seeds</figcaption></figure>
<p>If you want to increase security you can change the storage port. However, remember to modify your firewall settings to make that port available. In the listen_adress parameter, you must add the IP address of your central node. This is what allows other nodes to communicate with this node. So, it is important that you change it.</p>
<figure id="attachment_10438" aria-describedby="caption-attachment-10438" style="width: 902px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10438" src="https://www.osradar.com/wp-content/uploads/2019/01/9-12.png" alt="9.- Storage port" width="902" height="376" srcset="https://www.osradar.com/wp-content/uploads/2019/01/9-12.png 902w, https://www.osradar.com/wp-content/uploads/2019/01/9-12-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/9-12-768x320.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/9-12-696x290.png 696w" sizes="(max-width: 902px) 100vw, 902px" /><figcaption id="caption-attachment-10438" class="wp-caption-text">9.- Storage port</figcaption></figure>
<p>With these configurations, you can start to use Apache Cassandra.</p>
<h1>Conclusion</h1>
<p>Although Apache Cassandra is a high-performance application used by many large enterprises, its installation is not complex. Their website offers useful information about this powerful tool.</p>
<p>Please share this post with your friends.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-apache-cassandra-on-debian-9/">Install Apache Cassandra on Debian 9?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-apache-cassandra-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
