You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mw...@apache.org on 2018/05/01 19:20:58 UTC

[accumulo-website] branch asf-site updated: Jekyll build from master:19f858c

This is an automated email from the ASF dual-hosted git repository.

mwalch pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 0fc9986  Jekyll build from master:19f858c
0fc9986 is described below

commit 0fc998667937531449cbdb41fa7e3f8b8221028f
Author: Mike Walch <mw...@apache.org>
AuthorDate: Tue May 1 15:20:10 2018 -0400

    Jekyll build from master:19f858c
    
    Adding docs for testing Accumulo release (#76)
---
 contributors-guide/index.html   | 53 +++++++++++++++++++++++++++++++++++++++++
 docs/2.0/development/proxy.html | 23 +++++++-----------
 feed.xml                        |  4 ++--
 redirects.json                  |  2 +-
 4 files changed, 64 insertions(+), 18 deletions(-)

diff --git a/contributors-guide/index.html b/contributors-guide/index.html
index 6ba285e..66722b4 100644
--- a/contributors-guide/index.html
+++ b/contributors-guide/index.html
@@ -825,6 +825,59 @@ are the one who knows that this zero-length change in content is correct!</p>
   <li><a href="/contributor/voting">Voting</a></li>
 </ul>
 
+<h2 id="test-a-accumulo-release">Test a Accumulo release</h2>
+
+<ol>
+  <li>Set the release version, ID for staging repo, and alias to configure Maven with temporary settings:
+    <div class="language-shell highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nb">export </span><span class="nv">RC_VERSION</span><span class="o">=</span>1.9.0
+<span class="nb">export </span><span class="nv">RC_STAGING</span><span class="o">=</span>1070
+</code></pre></div>    </div>
+  </li>
+  <li>Create temporary Maven settings
+    <div class="language-shell highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span><span class="nb">cat</span> <span class="o">&lt;&lt;</span><span class="no">EOF</span><span class="sh"> &gt;/tmp/accumulo-rc-maven.xml
+&lt;settings&gt;
+  &lt;profiles&gt;
+    &lt;profile&gt;
+      &lt;id&gt;accumuloRC&lt;/id&gt;
+      &lt;repositories&gt;
+        &lt;repository&gt;
+          &lt;id&gt;accumulorc&lt;/id&gt;
+          &lt;name&gt;accumulorc&lt;/name&gt;
+          &lt;url&gt;https://repository.apache.org/content/repositories/orgapacheaccumulo-\</span><span class="k">${</span><span class="nv">env</span><span class="p">.RC_STAGING</span><span class="k">}</span><span class="sh">/&lt;/url&gt;
+        &lt;/repository&gt;
+      &lt;/repositories&gt;
+      &lt;pluginRepositories&gt;
+        &lt;pluginRepository&gt;
+          &lt;id&gt;accumulorcp&lt;/id&gt;
+          &lt;name&gt;accumulorcp&lt;/name&gt;
+          &lt;url&gt;https://repository.apache.org/content/repositories/orgapacheaccumulo-\</span><span class="k">${</span><span class="nv">env</span><span class="p">.RC_STAGING</span><span class="k">}</span><span class="sh">/&lt;/url&gt;
+        &lt;/pluginRepository&gt;
+      &lt;/pluginRepositories&gt;
+    &lt;/profile&gt;
+  &lt;/profiles&gt;
+  &lt;activeProfiles&gt;
+    &lt;activeProfile&gt;accumuloRC&lt;/activeProfile&gt;
+  &lt;/activeProfiles&gt;
+&lt;/settings&gt;
+</span><span class="no">EOF
+</span></code></pre></div>    </div>
+    <h4 id="run-the-integration-tests-of-projects-that-use-accumulo">Run the integration tests of projects that use Accumulo</h4>
+  </li>
+  <li>Clone the <a href="https://github.com/apache/accumulo-examples">Accumulo Examples</a> project:
+    <div class="language-shell highlighter-rouge"><div class="highlight"><pre class="highlight"><code> <span class="nv">$ </span>git clone https://github.com/apache/accumulo-examples.git
+</code></pre></div>    </div>
+  </li>
+  <li>Run the integration test
+    <div class="language-shell highlighter-rouge"><div class="highlight"><pre class="highlight"><code> <span class="nv">$ </span>mvn <span class="nt">-s</span> /tmp/accumulo-rc-maven.xml clean verify <span class="nt">-Daccumulo</span>.version<span class="o">=</span><span class="nv">$RC_VERSION</span>
+</code></pre></div>    </div>
+    <p>Below are more projects with integration tests:</p>
+    <ul>
+      <li><a href="https://github.com/apache/accumulo-wikisearch">Wikisearch</a> - <code class="highlighter-rouge">https://github.com/apache/accumulo-wikisearch</code></li>
+      <li><a href="https://github.com/apache/fluo">Apache Fluo</a> - <code class="highlighter-rouge">https://github.com/apache/fluo</code></li>
+    </ul>
+  </li>
+</ol>
+
 
         </div>
 
diff --git a/docs/2.0/development/proxy.html b/docs/2.0/development/proxy.html
index fdfbfdf..df9ab9b 100644
--- a/docs/2.0/development/proxy.html
+++ b/docs/2.0/development/proxy.html
@@ -352,8 +352,9 @@ DataNodes. A proxy client only needs the ability to communicate with the proxy s
 <h2 id="running-the-proxy-server">Running the Proxy Server</h2>
 
 <p>The proxy server is included in the Accumulo tarball distribution and can be run using
-the <code class="highlighter-rouge">accumulo</code> or <code class="highlighter-rouge">accumulo-service</code> command. A sample proxy configuration file can be found at
-<code class="highlighter-rouge">conf/templates/proxy.properties</code>. Create a copy of this file and edit it for your environment:</p>
+the <code class="highlighter-rouge">accumulo</code> command. The proxy is configured using <code class="highlighter-rouge">accumulo-client.properties</code> and
+<code class="highlighter-rouge">proxy.properties</code> which can be found at <code class="highlighter-rouge">conf/templates/proxy.properties</code>. Create a
+copy of this file and edit it for your environment:</p>
 
 <div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>cp ./conf/templates/proxy.properties ./conf/
 vim ./conf/proxy.properties
@@ -361,26 +362,18 @@ vim ./conf/proxy.properties
 
 <p>At the very least, you need to configure the following properties:</p>
 
-<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>instance=test
-zookeepers=localhost:2181
-port=42424
+<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>port=42424
 protocolFactory=org.apache.thrift.protocol.TCompactProtocol$Factory
 tokenClass=org.apache.accumulo.core.client.security.tokens.PasswordToken
 </code></pre></div></div>
 
-<p>After <code class="highlighter-rouge">proxy.properties</code> is configured, the proxy server can be started using the <code class="highlighter-rouge">accumulo</code>
-or <code class="highlighter-rouge">accumulo-service</code> commands:</p>
+<p>After <code class="highlighter-rouge">proxy.properties</code> is configured, the proxy server can be started using the
+<code class="highlighter-rouge">accumulo</code> command:</p>
 
-<p>To start the proxy in the foreground and log to the console, use the <code class="highlighter-rouge">accumulo</code> command:</p>
-
-<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>accumulo proxy -p /path/to/proxy.properties
+<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>accumulo proxy -p /path/to/proxy.properties -c /path/to/accumulo-client.properties &amp;
 </code></pre></div></div>
 
-<p>To background the process and redirect logs, use the <code class="highlighter-rouge">accumulo-service</code> command (a <code class="highlighter-rouge">proxy.properties</code>
-file must exist in <code class="highlighter-rouge">conf/</code> if using this method):</p>
-
-<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>accumulo-service proxy start
-</code></pre></div></div>
+<p>Logs will be output to the directory set by <code class="highlighter-rouge">ACCUMULO_LOG_DIR</code> in <code class="highlighter-rouge">accumulo-env.sh</code>.</p>
 
 <h2 id="prerequisites-for-proxy-clients">Prerequisites for Proxy Clients</h2>
 
diff --git a/feed.xml b/feed.xml
index 34b2ca6..40ffff8 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,8 +6,8 @@
 </description>
     <link>https://accumulo.apache.org/</link>
     <atom:link href="https://accumulo.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Wed, 25 Apr 2018 19:09:07 -0400</pubDate>
-    <lastBuildDate>Wed, 25 Apr 2018 19:09:07 -0400</lastBuildDate>
+    <pubDate>Tue, 01 May 2018 15:19:56 -0400</pubDate>
+    <lastBuildDate>Tue, 01 May 2018 15:19:56 -0400</lastBuildDate>
     <generator>Jekyll v3.7.3</generator>
     
     
diff --git a/redirects.json b/redirects.json
index cc2442e..2ec52c0 100644
--- a/redirects.json
+++ b/redirects.json
@@ -1 +1 @@
-{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/","/release_notes/1.5.3.html":"https://accumulo.apache.org/release/accumulo-1.5.3/" [...]
\ No newline at end of file
+{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/","/release_notes/1.5.3.html":"https://accumulo.apache.org/release/accumulo-1.5.3/" [...]
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
mwalch@apache.org.