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 2019/04/23 19:21:56 UTC

[accumulo-website] branch asf-site updated: Jekyll build from master:15c6a2c

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 29221ca  Jekyll build from master:15c6a2c
29221ca is described below

commit 29221ca58e6905ba384ddfd59c6d72dbc25e4575
Author: Mike Walch <mw...@apache.org>
AuthorDate: Tue Apr 23 15:21:34 2019 -0400

    Jekyll build from master:15c6a2c
    
    Created ghc tag to link to GitHub code (#170)
    
    * Added links to example configuration files
---
 docs/2.x/configuration/files.html | 30 +++++++++++++++++-------------
 feed.xml                          |  4 ++--
 search_data.json                  |  2 +-
 3 files changed, 20 insertions(+), 16 deletions(-)

diff --git a/docs/2.x/configuration/files.html b/docs/2.x/configuration/files.html
index 63caad6..e9e02fd 100644
--- a/docs/2.x/configuration/files.html
+++ b/docs/2.x/configuration/files.html
@@ -423,17 +423,19 @@
 
 <h2 id="accumuloproperties">accumulo.properties</h2>
 
-<p>Configures Accumulo server processes using <a href="/docs/2.x/configuration/server-properties">server properties</a>.
-This file can be found in the <code class="highlighter-rouge">conf/</code> direcory. It is needed on every host that runs Accumulo processes.
-Therfore, any configuration should be replicated to all hosts of the Accumulo cluster. If a property is not
-configured here, it might have been <a href="/docs/2.x/configuration/overview">configured another way</a>.  See the
-<a href="/docs/2.x/getting-started/quickstart#configuring-accumulo">quick start</a> for help with configuring this file.</p>
+<p>The <a href="https://github.com/apache/accumulo/blob/master/assemble/conf/accumulo.properties">accumulo.properties</a> file configures Accumulo server processes using
+<a href="/docs/2.x/configuration/server-properties">server properties</a>. This file can be found in the <code class="highlighter-rouge">conf/</code>
+direcory. It is needed on every host that runs Accumulo processes. Therfore, any configuration should be
+replicated to all hosts of the Accumulo cluster. If a property is not configured here, it might have been
+<a href="/docs/2.x/configuration/overview">configured another way</a>.  See the <a href="/docs/2.x/getting-started/quickstart#configuring-accumulo">quick start</a> for help with
+configuring this file.</p>
 
 <h2 id="accumulo-clientproperties">accumulo-client.properties</h2>
 
-<p>Configures Accumulo client processes using <a href="/docs/2.x/configuration/client-properties">client properties</a>.
-If run <code class="highlighter-rouge">accumulo shell</code> without arguments, the Accumulo connection information in this file will be used.
-This file can be used to create an AccumuloClient in Java using the following code:</p>
+<p>The <code class="highlighter-rouge">accumulo-client.properties</code> file configures Accumulo client processes using
+<a href="/docs/2.x/configuration/client-properties">client properties</a>. If <code class="highlighter-rouge">accumulo shell</code> is run without arguments,
+the Accumulo connection information in this file will be used. This file can be used to create an AccumuloClient
+in Java using the following code:</p>
 
 <div class="language-java highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">AccumuloClient</span> <span class="n">client</span> <span class="o">=</span> <span class="n">Accumulo</span><span class="o">.</span><span class="na">newClient</span><span class="o">()</span>
                            <span class="o">.</span><span class="na">from</span><span class="o">(</span><span class="s">"/path/to/accumulo-client.properties"</span><span class="o">).</span><span class="na">build</span><span class="o">();</span>
@@ -443,22 +445,24 @@ This file can be used to create an AccumuloClient in Java using the following co
 
 <h2 id="accumulo-envsh">accumulo-env.sh</h2>
 
-<p>Configures the Java classpath and JVM options needed to run Accumulo processes. See the [quick install]
-for help with configuring this file.</p>
+<p>The <a href="https://github.com/apache/accumulo/blob/master/assemble/conf/accumulo-env.sh">accumulo-env.sh</a> file configures the Java classpath and JVM options needed to run
+Accumulo processes. See the [quick install] for help with configuring this file.</p>
 
 <h2 id="log-configuration-files">Log configuration files</h2>
 
 <h3 id="log4j-serviceproperties">log4j-service.properties</h3>
 
-<p>Configures logging for most Accumulo services (i.e <a href="/docs/2.x/getting-started/design#master">Master</a>, <a href="/docs/2.x/getting-started/design#tablet-server">Tablet Server</a>, <a href="/docs/2.x/getting-started/design#garbage-collector">Garbage Collector</a>) except for the Monitor.</p>
+<p>The <a href="https://github.com/apache/accumulo/blob/master/assemble/conf/log4j-service.properties">log4j-service.properties</a> file configures logging for most Accumulo services
+(i.e <a href="/docs/2.x/getting-started/design#master">Master</a>, <a href="/docs/2.x/getting-started/design#tablet-server">Tablet Server</a>, <a href="/docs/2.x/getting-started/design#garbage-collector">Garbage Collector</a>) except for the Monitor.</p>
 
 <h3 id="log4j-monitorproperties">log4j-monitor.properties</h3>
 
-<p>Configures logging for the <a href="/docs/2.x/getting-started/design#monitor">Monitor</a>.</p>
+<p>The <a href="https://github.com/apache/accumulo/blob/master/assemble/conf/log4j-monitor.properties">log4j-monitor.properties</a> file configures logging for the <a href="/docs/2.x/getting-started/design#monitor">Monitor</a>.</p>
 
 <h3 id="log4jproperties">log4j.properties</h3>
 
-<p>Configures logging for Accumulo commands (i.e <code class="highlighter-rouge">accumulo init</code>, <code class="highlighter-rouge">accumulo shell</code>, etc).</p>
+<p>The <a href="https://github.com/apache/accumulo/blob/master/assemble/conf/log4j.properties">log4j.properties</a> file configures logging for Accumulo commands (i.e <code class="highlighter-rouge">accumulo init</code>,
+<code class="highlighter-rouge">accumulo shell</code>, etc).</p>
 
 <h2 id="host-files">Host files</h2>
 
diff --git a/feed.xml b/feed.xml
index 0e76c1e..e11524d 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>Tue, 23 Apr 2019 13:52:10 -0400</pubDate>
-    <lastBuildDate>Tue, 23 Apr 2019 13:52:10 -0400</lastBuildDate>
+    <pubDate>Tue, 23 Apr 2019 15:21:26 -0400</pubDate>
+    <lastBuildDate>Tue, 23 Apr 2019 15:21:26 -0400</lastBuildDate>
     <generator>Jekyll v3.7.3</generator>
     
     
diff --git a/search_data.json b/search_data.json
index 69d7fe5..292350d 100644
--- a/search_data.json
+++ b/search_data.json
@@ -65,7 +65,7 @@
   
     "docs-2-x-configuration-files": {
       "title": "Configuration Files",
-      "content"	 : "Accumulo has the following configuration files which can be found in theconf/ directory of the Accumulo release tarball.accumulo.propertiesConfigures Accumulo server processes using server properties.This file can be found in the conf/ direcory. It is needed on every host that runs Accumulo processes.Therfore, any configuration should be replicated to all hosts of the Accumulo cluster. If a property is notconfigured here, it might have been configured another way.  Se [...]
+      "content"	 : "Accumulo has the following configuration files which can be found in theconf/ directory of the Accumulo release tarball.accumulo.propertiesThe accumulo.properties file configures Accumulo server processes usingserver properties. This file can be found in the conf/direcory. It is needed on every host that runs Accumulo processes. Therfore, any configuration should bereplicated to all hosts of the Accumulo cluster. If a property is not configured here, it might have bee [...]
       "url": " /docs/2.x/configuration/files",
       "categories": "configuration"
     },