You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ms...@apache.org on 2017/04/14 23:36:03 UTC

svn commit: r1791429 - in /cassandra/site: publish/download/index.html src/download.md

Author: mshuler
Date: Fri Apr 14 23:36:03 2017
New Revision: 1791429

URL: http://svn.apache.org/viewvc?rev=1791429&view=rev
Log:
Add RPM download notes

Modified:
    cassandra/site/publish/download/index.html
    cassandra/site/src/download.md

Modified: cassandra/site/publish/download/index.html
URL: http://svn.apache.org/viewvc/cassandra/site/publish/download/index.html?rev=1791429&r1=1791428&r2=1791429&view=diff
==============================================================================
--- cassandra/site/publish/download/index.html (original)
+++ cassandra/site/publish/download/index.html Fri Apr 14 23:36:03 2017
@@ -177,6 +177,32 @@ configuration changes.</li>
   <li>Start-up options (heap size, etc) can be configured in <code>/etc/default/cassandra</code>.</li>
 </ul>
 
+<h3 id="installation-from-rpm-packages">Installation from RPM packages</h3>
+
+<p>Cassandra can currently only be installed manually from downloaded RPM packages. We’ll work on making upcoming releases available through repositories in the future.</p>
+
+<p>The following versions are currently available for download:</p>
+
+<ul>
+  <li>TODO: 3.0.13 (pgp, md5 and sha1)</li>
+</ul>
+
+<p>Any instructions have been tested with CentOS 7 and should work for all Redhat based distributions. Please see note on end of this section on how to report any issues.</p>
+
+<p>Start Cassandra (will not start automatically):</p>
+
+<pre><code>service cassandra start
+</code></pre>
+
+<p>Systemd based distributions may require to run <code>systemctl daemon-reload</code> once to make Cassandra available as a systemd service. This should happen automatically by running the command above.</p>
+
+<p>Make Cassandra start automatically after reboot:</p>
+
+<pre><code>chkconfig cassandra on
+</code></pre>
+
+<p>Please note that official RPMs for Apache Cassandra only have been available recently and are not tested thoroughly on all platforms yet. We appreciate your feedback and support and ask you to post details on any issues in the <a href="https://issues.apache.org/jira/browse/CASSANDRA-13433">corresponding Jira ticket</a>.</p>
+
 <h3 id="source">Source</h3>
 
 <p>Development is done in the Apache Git repository. To check out a copy:</p>

Modified: cassandra/site/src/download.md
URL: http://svn.apache.org/viewvc/cassandra/site/src/download.md?rev=1791429&r1=1791428&r2=1791429&view=diff
==============================================================================
--- cassandra/site/src/download.md (original)
+++ cassandra/site/src/download.md Fri Apr 14 23:36:03 2017
@@ -80,6 +80,34 @@ sudo apt-get install cassandra
 * The default location of log and data directories is `/var/log/cassandra/` and `/var/lib/cassandra`.
 * Start-up options (heap size, etc) can be configured in `/etc/default/cassandra`.
 
+### Installation from RPM packages
+
+Cassandra can currently only be installed manually from downloaded RPM packages. We'll work on making upcoming releases available through repositories in the future.
+
+The following versions are currently available for download:
+
+* TODO: 3.0.13 (pgp, md5 and sha1)
+
+Any instructions have been tested with CentOS 7 and should work for all Redhat based distributions. Please see note on end of this section on how to report any issues.
+
+Start Cassandra (will not start automatically):
+
+```
+service cassandra start
+```
+
+Systemd based distributions may require to run `systemctl daemon-reload` once to make Cassandra available as a systemd service. This should happen automatically by running the command above.
+
+Make Cassandra start automatically after reboot:
+
+```
+chkconfig cassandra on
+```
+
+Please note that official RPMs for Apache Cassandra only have been available recently and are not tested thoroughly on all platforms yet. We appreciate your feedback and support and ask you to post details on any issues in the [corresponding Jira ticket](https://issues.apache.org/jira/browse/CASSANDRA-13433).
+
+
+
 ### Source
 
 Development is done in the Apache Git repository. To check out a copy: