changeset 926:61db5d4fc754

Unified naming of artefact to artifact doc/trunk@1063 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Hans Plum <hans.plum@intevation.de>
date Thu, 06 May 2010 07:56:46 +0000
parents ec28a68b5a87
children 7c75d5f32ee6
files doc/ChangeLog doc/admin-manual/installation-artefact-server.tex doc/admin-manual/installation-artifact-server.tex
diffstat 3 files changed, 143 insertions(+), 137 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Thu May 06 07:54:53 2010 +0000
+++ b/doc/ChangeLog	Thu May 06 07:56:46 2010 +0000
@@ -1,3 +1,9 @@
+2010-05-06  Hans Plum <hans@intevation.de>
+
+	* admin-manual/installation-artifact-server.tex: renamed from
+	admin-manual/installation-artefact-server.tex in order to unify use of
+	naming
+
 2010-05-06  Hans Plum <hans@intevation.de>
 	
 	* admin-manual/overview.tex,
--- a/doc/admin-manual/installation-artefact-server.tex	Thu May 06 07:54:53 2010 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,137 +0,0 @@
-\subsection{Artifact-Server}
-The Artifact-Server contains the entire business logic of the system.
-The server provides a RESTful interface with a XML-based protocol to the
-webclient. Technically the server is a standalone java process serving the
-REST interface.
-
-\subsubsection*{Installation}
-\label{ref:artifact-server-install}
-
-Running the server with its own user\footnote{Remark: A group with the
-same name is created automatically.}: 
-\begin{lstlisting}
-  adduser artifacts
-\end{lstlisting}
-
-Setup and configuring logging:
-\begin{lstlisting}
-  cd /var/log
-  mkdir artifacts
-  chmod 770 artifacts
-  chmod g+s artifacts
-\end{lstlisting}
-
-The log level can be adjusted in the file \verb+ conf/log4j.properties+.
-Further information can be found there.
-
-Integrate software of artifact-server into filesystem:
-\begin{lstlisting}
-  cd /opt
-  tar xfvj /root/artifact-server-$VERSION.tar.bz2
-  ln -s artifact-server-$VERSION artifact-server
-  cd artifact-server
-\end{lstlisting}
-
-Setting the access rights:
-\begin{lstlisting}
-   bin/setup.sh
-\end{lstlisting}
-
-Configure connection to database:
-\begin{lstlisting}
-  cd /opt/artifact-server
-  vim conf/arcsdeconnectionpool.properties
-  
-  # in conf/arcsdeconnectionpool.properties do:
-  server=xyz.server.com
-  username=guest
-  credentials=XYZ
-  port=5151
-  database=esri_sde
-\end{lstlisting}
-
-Configure address for finding the WMS-Server:
-\begin{lstlisting}
-  cd /opt/artifact-server/
-  vim conf/conf.xml
-  # adapt the address in the element
-  # artifact-database/gnv/mapserver/server. This is
-  # the string the server uses to provide an address of the mapserver to enduser.
-  e.g. http://SERVER/cgi-bin/gnv-wrapper
-\end{lstlisting}
-
-The artifact server can export and import projects of the user's
-parameterizations. In order to protect the server against invalid files,
-configure a secret for signing artifacts.
-
-{\em Hint: If the secret is changed, all files that were created before
-are not valid anymore.}
-
-\begin{lstlisting}
-  # generate a randomized string, e.g.
-  cd /opt/artifact-server/
-  pwgen -s 30
-  # populate the tag artifact-database/export-secret
-\end{lstlisting}
-
-Adapt TCP-port of artifact-server, if the default has to be changed
-(default:8181):
-\begin{lstlisting}
-  cd /opt/artifact-server
-  vim conf/conf.xml
-  
-  # in conf/conf.xml edit the element artifact-database/rest-server/port
-\end{lstlisting}
-
-Integrate artifact-server in startup-process of operating system:
-\begin{lstlisting}
-  cp -i /opt/artifact-server/bin/debian/artifact-server /etc/init.d/
-  chmod +x /etc/init.d/artifact-server
-  update-rc.d artifact-server defaults
-\end{lstlisting}
-
-The server can be started and stopped via
-\begin{lstlisting}
-  /etc/init.d/artifact-server {start | stop}
-\end{lstlisting}
-
-The installation of the artifact-server is finished. It can be tested
-now.
-
-\subsubsection*{Test of the Installation}
-\label{ref:artifact-server-testing}
-  Start the server:
-  \begin{lstlisting}
-  /etc/init.d/artifact-server start
-  \end{lstlisting}
-  
-  1. Operating System: Check if the process of the server called "App"
-  is running:
-  \begin{lstlisting}
-  jps
-  
-  # Example with list of java processes:
-  19252
-  19509 Jps
-  19441 App
-
-  cat /var/run/artifact-server
-  \end{lstlisting}
-
-  Task: Compare the running process numbers.
-
-  2. Network: Check if the artifact-server opens a TCP-port (default: 8181)
-  \begin{lstlisting}
-  netstat -nltp
-  
-  # Check for an entry like:
-  tcp        0      0 127.0.0.1:8181          0.0.0.0:*  LISTEN 18648/java
-  \end{lstlisting}
-
-  3. Artifact-Server ready for communication with client?
-  \begin{lstlisting}
-  curl "http://localhost:8181/factories" | xmllint --format -
-  \end{lstlisting}
-  
-  Task: Check for a XML-document describing possible expert information
-  systems (FIS)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/admin-manual/installation-artifact-server.tex	Thu May 06 07:56:46 2010 +0000
@@ -0,0 +1,137 @@
+\subsection{Artifact-Server}
+The Artifact-Server contains the entire business logic of the system.
+The server provides a RESTful interface with a XML-based protocol to the
+webclient. Technically the server is a standalone java process serving the
+REST interface.
+
+\subsubsection*{Installation}
+\label{ref:artifact-server-install}
+
+Running the server with its own user\footnote{Remark: A group with the
+same name is created automatically.}: 
+\begin{lstlisting}
+  adduser artifacts
+\end{lstlisting}
+
+Setup and configuring logging:
+\begin{lstlisting}
+  cd /var/log
+  mkdir artifacts
+  chmod 770 artifacts
+  chmod g+s artifacts
+\end{lstlisting}
+
+The log level can be adjusted in the file \verb+ conf/log4j.properties+.
+Further information can be found there.
+
+Integrate software of artifact-server into filesystem:
+\begin{lstlisting}
+  cd /opt
+  tar xfvj /root/artifact-server-$VERSION.tar.bz2
+  ln -s artifact-server-$VERSION artifact-server
+  cd artifact-server
+\end{lstlisting}
+
+Setting the access rights:
+\begin{lstlisting}
+   bin/setup.sh
+\end{lstlisting}
+
+Configure connection to database:
+\begin{lstlisting}
+  cd /opt/artifact-server
+  vim conf/arcsdeconnectionpool.properties
+  
+  # in conf/arcsdeconnectionpool.properties do:
+  server=xyz.server.com
+  username=guest
+  credentials=XYZ
+  port=5151
+  database=esri_sde
+\end{lstlisting}
+
+Configure address for finding the WMS-Server:
+\begin{lstlisting}
+  cd /opt/artifact-server/
+  vim conf/conf.xml
+  # adapt the address in the element
+  # artifact-database/gnv/mapserver/server. This is
+  # the string the server uses to provide an address of the mapserver to enduser.
+  e.g. http://SERVER/cgi-bin/gnv-wrapper
+\end{lstlisting}
+
+The artifact server can export and import projects of the user's
+parameterizations. In order to protect the server against invalid files,
+configure a secret for signing artifacts.
+
+{\em Hint: If the secret is changed, all files that were created before
+are not valid anymore.}
+
+\begin{lstlisting}
+  # generate a randomized string, e.g.
+  cd /opt/artifact-server/
+  pwgen -s 30
+  # populate the tag artifact-database/export-secret
+\end{lstlisting}
+
+Adapt TCP-port of artifact-server, if the default has to be changed
+(default:8181):
+\begin{lstlisting}
+  cd /opt/artifact-server
+  vim conf/conf.xml
+  
+  # in conf/conf.xml edit the element artifact-database/rest-server/port
+\end{lstlisting}
+
+Integrate artifact-server in startup-process of operating system:
+\begin{lstlisting}
+  cp -i /opt/artifact-server/bin/debian/artifact-server /etc/init.d/
+  chmod +x /etc/init.d/artifact-server
+  update-rc.d artifact-server defaults
+\end{lstlisting}
+
+The server can be started and stopped via
+\begin{lstlisting}
+  /etc/init.d/artifact-server {start | stop}
+\end{lstlisting}
+
+The installation of the artifact-server is finished. It can be tested
+now.
+
+\subsubsection*{Test of the Installation}
+\label{ref:artifact-server-testing}
+  Start the server:
+  \begin{lstlisting}
+  /etc/init.d/artifact-server start
+  \end{lstlisting}
+  
+  1. Operating System: Check if the process of the server called "App"
+  is running:
+  \begin{lstlisting}
+  jps
+  
+  # Example with list of java processes:
+  19252
+  19509 Jps
+  19441 App
+
+  cat /var/run/artifact-server
+  \end{lstlisting}
+
+  Task: Compare the running process numbers.
+
+  2. Network: Check if the artifact-server opens a TCP-port (default: 8181)
+  \begin{lstlisting}
+  netstat -nltp
+  
+  # Check for an entry like:
+  tcp        0      0 127.0.0.1:8181          0.0.0.0:*  LISTEN 18648/java
+  \end{lstlisting}
+
+  3. Artifact-Server ready for communication with client?
+  \begin{lstlisting}
+  curl "http://localhost:8181/factories" | xmllint --format -
+  \end{lstlisting}
+  
+  Task: Check for a XML-document describing possible expert information
+  systems (FIS)

http://dive4elements.wald.intevation.org