You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/03/19 16:30:56 UTC

svn commit: r1458335 - in /accumulo/branches/1.5/docs/src/user_manual/chapters: administration.tex security.tex

Author: ecn
Date: Tue Mar 19 15:30:56 2013
New Revision: 1458335

URL: http://svn.apache.org/r1458335
Log:
ACCUMULO-1187 small updates to the user manual

Modified:
    accumulo/branches/1.5/docs/src/user_manual/chapters/administration.tex
    accumulo/branches/1.5/docs/src/user_manual/chapters/security.tex

Modified: accumulo/branches/1.5/docs/src/user_manual/chapters/administration.tex
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/docs/src/user_manual/chapters/administration.tex?rev=1458335&r1=1458334&r2=1458335&view=diff
==============================================================================
--- accumulo/branches/1.5/docs/src/user_manual/chapters/administration.tex (original)
+++ accumulo/branches/1.5/docs/src/user_manual/chapters/administration.tex Tue Mar 19 15:30:56 2013
@@ -57,9 +57,7 @@ Accumulo requires HDFS and ZooKeeper to 
 before starting. Password-less SSH should be configured between at least the
 Accumulo master and TabletServer machines. It is also a good idea to run Network
 Time Protocol (NTP) within the cluster to ensure nodes' clocks don't get too out of
-sync, which can cause problems with automatically timestamped data. Accumulo
-will remove from the set of TabletServers those machines whose times differ too
-much from the master's.
+sync, which can cause problems with automatically timestamped data. 
 
 \section{Configuration}
 
@@ -123,6 +121,15 @@ Specify appropriate values for the follo
     <value>zooserver-one:2181,zooserver-two:2181</value>
     <description>list of zookeeper servers</description>
 </property>
+\end{verbatim}
+\normalsize
+
+This enables Accumulo to find ZooKeeper. Accumulo uses ZooKeeper to coordinate
+settings between processes and helps finalize TabletServer failure.
+
+
+\small
+\begin{verbatim}
 <property>
     <name>walog</name>
     <value>/var/accumulo/walogs</value>
@@ -131,17 +138,26 @@ Specify appropriate values for the follo
 \end{verbatim}
 \normalsize
 
-This enables Accumulo to find ZooKeeper. Accumulo uses ZooKeeper to coordinate
-settings between processes and helps finalize TabletServer failure.
-
 Accumulo records all changes to tables to a write-ahead log before committing
 them to the table. The `walog' setting specifies the local directory on each machine
 to which write-ahead logs are written. This directory should exist on all machines
 acting as TabletServers.
 
-Some settings can be modified via the Accumulo shell and take effect immediately.
-However, any settings that should be persisted across system restarts must be
-recorded in the accumulo-site.xml file.
+\small
+\begin{verbatim}
+<property>
+    <name>instance.secret</name>
+    <value>DEFAULT</value>
+</property>
+\end{verbatim}
+\normalsize
+
+The instance needs a secret to enable secure communication between servers.  Configure your
+secret and make sure that the \texttt{accumulo-site.xml} file is not readable to other users.
+
+Some settings can be modified via the Accumulo shell and take effect immediately, but
+some settings require a process restart to take effect.  See the configuration documentation
+(available on the monitor web pages) for details.
 
 \subsection{Deploy Configuration}
 
@@ -214,8 +230,3 @@ The Accumulo client library is configure
 cases clients will be able to continue processing after the recovery process without
 throwing an exception.
 
-Note that because Accumulo uses timestamps to order mutations, any mutations
-that are applied as part of the recovery process should appear to have been applied
-when they originally arrived at the TabletServer that failed. This makes the ordering
-of mutations consistent in the presence of failure.
-

Modified: accumulo/branches/1.5/docs/src/user_manual/chapters/security.tex
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/docs/src/user_manual/chapters/security.tex?rev=1458335&r1=1458334&r2=1458335&view=diff
==============================================================================
--- accumulo/branches/1.5/docs/src/user_manual/chapters/security.tex (original)
+++ accumulo/branches/1.5/docs/src/user_manual/chapters/security.tex Tue Mar 19 15:30:56 2013
@@ -134,7 +134,7 @@ For applications serving many users, it 
 will be created for each application user.  In this case an accumulo user with
 all authorizations needed by any of the applications users must be created.  To
 service queries, the application should create a scanner with the application
-users authorizations.  These authorizations could be obtained from a trusted 3rd
+user's authorizations.  These authorizations could be obtained from a trusted 3rd
 party.
 
 Often production systems will integrate with Public-Key Infrastructure (PKI) and