{"id":17026,"date":"2015-04-08T15:40:28","date_gmt":"2015-04-08T20:40:28","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17026"},"modified":"2023-04-05T06:12:01","modified_gmt":"2023-04-05T11:12:01","slug":"install-apache-cassandra-on-a-debian-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/","title":{"rendered":"Install Apache Cassandra on Debian 7"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div>\r\n<div class=\"wp-block-image\">\r\n<figure class=\"alignleft\"><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png\"><img decoding=\"async\" width=\"500\" height=\"335\" class=\"wp-image-17027\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png\" alt=\"Cassandra\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png 500w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra-300x201.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra-149x100.png 149w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra-50x34.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra-75x50.png 75w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><\/a><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>Apache Cassandra is an open source distributed database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. Cassandra offers robust support for clusters spanning multiple datacenters, with asynchronous masterless replication allowing low latency operations for all clients.<\/p>\r\n\r\n\r\n\r\n<p>The Apache Cassandra database is the right choice when you need scalability and high availability without compromising performance.<\/p>\r\n\r\n\r\n\r\n<p><!--more--><\/p>\r\n\r\n\r\n\r\n<p>By following this tutorial, you will learn how to install Cassandra and the Oracle Java JDK on a <a title=\"Debian VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian 7 VPS<\/a>. We will also cover the steps needed to run your first test single-node cluster.<\/p>\r\n\r\n\r\n\r\n<p><strong>REQUIREMENTS<\/strong><\/p>\r\n\r\n\r\n\r\n<p>We will be using our SSD 1 <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> Hosting plan for this tutorial.<\/p>\r\n\r\n\r\n\r\n<p><strong>UPDATE THE SYSTEM<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Make sure your server is fully up to date using:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># apt-get update\r\n# apt-get upgrade<\/pre>\r\n\r\n\r\n\r\n<p><strong>INSTALL ORACLE JAVA JDK<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Open your favorite web browser and navigate to the <a href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/index.html\" target=\"_blank\" rel=\"noopener noreferrer\">Oracle Java website<\/a> to decide which version do you want to download and install. If you are using a 32bit OS version, choose the 32 bit tar.gz file.<\/p>\r\n\r\n\r\n\r\n<p>To check what version of Debian 7 you are running, just type this in your terminal window:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># arch<\/pre>\r\n\r\n\r\n\r\n<p>For our purposes we will download the 64bit tar.gz archive.<\/p>\r\n\r\n\r\n\r\n<p>For downloading and extracting the Java JDK into a newly created directory, you will need to use the following commands:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># wget --header \"Cookie: oraclelicense=accept-securebackup-cookie\" http:\/\/download.oracle.com\/otn-pub\/java\/jdk\/8u5-b13\/jdk-8u5-linux-x64.tar.gz\r\n# mkdir \/opt\/jdk\r\n# tar -zxf jdk-8u5-linux-x64.tar.gz -C \/opt\/jdk<\/pre>\r\n\r\n\r\n\r\n<p>Set the default JVM in your server:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># update-alternatives --install \/usr\/bin\/java java \/opt\/jdk\/jdk1.8.0_05\/bin\/java 100\r\n# update-alternatives --install \/usr\/bin\/javac javac \/opt\/jdk\/jdk1.8.0_05\/bin\/javac 100<\/pre>\r\n\r\n\r\n\r\n<p>Verify that Java has been installed successfully by running:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># java -version<\/pre>\r\n\r\n\r\n\r\n<p><strong>INSTALL APACHE CASSANDRA<\/strong><\/p>\r\n\r\n\r\n\r\n<p>We will download the latest version of Cassandra into the <em>opt<\/em> directory. Run:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># cd \/opt\r\n\r\n# wget http:\/\/www.us.apache.org\/dist\/cassandra\/2.1.3\/apache-cassandra-2.1.3-bin.tar.gz<\/pre>\r\n\r\n\r\n\r\n<p>Unpack the archive:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># tar -xvzf apache-cassandra-2.1.3-bin.tar.gz<\/pre>\r\n\r\n\r\n\r\n<p>Now move the installation in the <em>root<\/em> directory:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># mv apache-cassandra-2.1.3 ~\/cassandra<\/pre>\r\n\r\n\r\n\r\n<p>Create the needed directories:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># mkdir \/var\/lib\/cassandra\r\n\r\n# mkdir \/var\/log\/cassandra<\/pre>\r\n\r\n\r\n\r\n<p>Set Cassandra\u2019s variables by running:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># export CASSANDRA_HOME=~\/cassandra\r\n\r\n# export PATH=$PATH:$CASSANDRA_HOME\/bin<\/pre>\r\n\r\n\r\n\r\n<p>You will need to configure Cassandra\u2019s per-thread stack size to a larger one than the current value. You can do that by editing the cassandra-env.sh file with your favorite text editor. We are using vim.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># vim ~\/cassandra\/conf\/cassandra-env.sh<\/pre>\r\n\r\n\r\n\r\n<p>Find the line that says:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">JVM_OPTS=\"$JVM_OPTS -Xss256k\"<\/pre>\r\n\r\n\r\n\r\n<p>and change it to:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">JVM_OPTS=\"$JVM_OPTS -Xss512k\"<\/pre>\r\n\r\n\r\n\r\n<p>You can run a single-node test cluster of Cassandra with the following commands:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># sh ~\/cassandra\/bin\/cassandra\r\n\r\n# sh ~\/cassandra\/bin\/cassandra-cli<\/pre>\r\n\r\n\r\n\r\n<p>If you get &#8220;Connected to: &#8216;Test Cluster&#8221; you are running your single-node cluster successfully.<\/p>\r\n\r\n\r\n\r\n<p>Congratulations. You have successfully installed Apache Cassandra and the needed Oracle Java JDK on your <a title=\"Debian VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian 7 VPS<\/a>.<\/p>\r\n\r\n\r\n\r\n<p>Follow this guide for <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-apache-cassandra-on-ubuntu-20-04\/\">installing Apache Cassandra on Ubuntu 20.04<\/a> or you can also read <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-apache-cassandra-on-debian-9\/\">How to Install Apache Cassandra on Debian 9<\/a>.<\/p>\r\n\r\n\r\n\r\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Apache Cassandra for you.They are available 24\u00d77 and will take care of your request immediately.<\/p>\r\n\r\n\r\n\r\n<p><span style=\"color: #ff0000;\">PS.<\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Apache Cassandra is an open source distributed database management system designed to handle large amounts of data across many commodity &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Apache Cassandra on Debian 7\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#more-17026\" aria-label=\"Read more about Install Apache Cassandra on Debian 7\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17027,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702,1700],"tags":[758,41,680,77,759],"class_list":["post-17026","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-debian","tag-apache-cassandra","tag-database","tag-debian-7","tag-java","tag-jdk8","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Apache Cassandra on Debian 7 | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Apache Cassandra on Debian 7 | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Apache Cassandra on Debian 7\" \/>\n<meta property=\"og:description\" content=\"Install Apache Cassandra on Debian 7 | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2015-04-08T20:40:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-05T11:12:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"335\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Apache Cassandra on Debian 7\",\"datePublished\":\"2015-04-08T20:40:28+00:00\",\"dateModified\":\"2023-04-05T11:12:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/\"},\"wordCount\":464,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/Cassandra.png\",\"keywords\":[\"apache cassandra\",\"database\",\"debian 7\",\"java\",\"jdk8\"],\"articleSection\":[\"Databases\",\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/\",\"name\":\"Install Apache Cassandra on Debian 7 | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/Cassandra.png\",\"datePublished\":\"2015-04-08T20:40:28+00:00\",\"dateModified\":\"2023-04-05T11:12:01+00:00\",\"description\":\"Install Apache Cassandra on Debian 7 | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/Cassandra.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/03\\\/Cassandra.png\",\"width\":500,\"height\":335},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-apache-cassandra-on-a-debian-7-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Apache Cassandra on Debian 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Apache Cassandra on Debian 7 | RoseHosting","description":"Install Apache Cassandra on Debian 7 | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install Apache Cassandra on Debian 7","og_description":"Install Apache Cassandra on Debian 7 | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-04-08T20:40:28+00:00","article_modified_time":"2023-04-05T11:12:01+00:00","og_image":[{"width":500,"height":335,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Apache Cassandra on Debian 7","datePublished":"2015-04-08T20:40:28+00:00","dateModified":"2023-04-05T11:12:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/"},"wordCount":464,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png","keywords":["apache cassandra","database","debian 7","java","jdk8"],"articleSection":["Databases","Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/","name":"Install Apache Cassandra on Debian 7 | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png","datePublished":"2015-04-08T20:40:28+00:00","dateModified":"2023-04-05T11:12:01+00:00","description":"Install Apache Cassandra on Debian 7 | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/03\/Cassandra.png","width":500,"height":335},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-apache-cassandra-on-a-debian-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Apache Cassandra on Debian 7"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17026","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=17026"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17026\/revisions"}],"predecessor-version":[{"id":45305,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17026\/revisions\/45305"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17027"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17026"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17026"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17026"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}