You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by ha...@apache.org on 2017/05/07 14:40:03 UTC

svn commit: r1794206 [3/6] - in /clerezza/site/production: getting-started/tutorial/ legacy/getting-started/ legacy/getting-started/building-clerezza/ legacy/getting-started/building-clerezza/index-content-el/ legacy/getting-started/index-content-el/ l...

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-content.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-content.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-content.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-content.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.html Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			Forwarding ports
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,16 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2-title"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2-title">
+    <j.0:infoBit rdf:parseType="Literal">Forwarding ports</j.0:infoBit>
+    <rdf:type rdf:resource="http://discobits.org/ontology#XHTMLInfoDiscoBit"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2-title.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			Forwarding ports
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.html Sun May  7 14:40:01 2017
@@ -0,0 +1,141 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
+          <head>
+            <link type="text/css" href="/style/style.css" rel="stylesheet"/>
+            <title>Forwarding ports
+</title>
+          </head>
+          <body>
+            <div class="zz-header">
+
+              <div class="bar"></div>
+              <div class="logo">
+                <a href="http://clerezza.apache.org/" style=""><img src="/images/logo.png" alt="logo"/></a>
+              </div>
+            </div>
+            <div class="column nav">
+              <ul>
+                <li class="top-nav-entry"><div class="title">Documentation</div>
+
+                  <ul class="nav-entries">
+                    <li><a href="/getting-started/">Getting Started</a></li>
+                    <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                    <li><a href="http://clerezza.apache.org/apidocs/" target="_blank">API docs</a></li>
+                    <li><a href="/faq/">FAQ</a></li>
+                  </ul>
+                </li>
+
+                <li class="top-nav-entry"><div class="title">Project Infos</div>
+                  <ul class="nav-entries">
+                    <li><a href="/downloads/">Downloads</a></li>
+                    <li><a href="/contributing/">Contributing</a></li>
+                    <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                    <li><a href="/mailinglists/">Mailing lists</a></li>
+                    <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                    <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                  </ul>
+                </li>
+                <li class="top-nav-entry"><div class="title">Sponsorship</div>
+                  <ul class="nav-entries">
+                    <li><a href="/thanks/">Thanks</a></li>
+                    <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                    <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                  </ul>
+                </li>
+              </ul>
+            </div>
+
+            <div class="zz-content">
+              <h1>Forwarding ports
+</h1>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+
+            </div>
+            <div class="footer">
+              <div class="logos"><img src="/images/feather.png"/><img src="/images/sw-vert-w3c.png"/><img src="/images/footer-logo.png"/></div>
+
+              <div class="divider"></div>
+              <div class="dark">
+                <div class="sitemap">
+                  <div class="sitemap-title">Sitemap</div>
+                  <div class="sitemap-content">
+                    <div class="sitemap-column">
+                      <div class="title">Documentation</div>
+                      <ul>
+
+                        <li><a href="/getting-started/">Getting Started</a></li>
+                        <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                        <li><a href="http://clerezza,apache.org/apidocs/" target="_blank">API docs</a></li>
+                        <li><a href="/faq/">FAQ</a></li>
+                      </ul>
+
+                    </div>
+                    <div class="sitemap-column">
+
+                      <div class="title">Project Infos</div>
+                      <ul>
+                        <li><a href="/downloads/">Downloads</a></li>
+                        <li><a href="/contributing/">Contributing</a></li>
+                        <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                        <li><a href="mailinglists/">Mailing lists</a></li>
+                        <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                        <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                      </ul>
+                    </div>
+                    <div class="sitemap-column">
+                      <div class="title">Sponsorship</div>
+                      <ul>
+                        <li><a href="/thanks/">Thanks</a></li>
+                        <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                        <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                      </ul>
+                    </div>
+                  </div>
+
+                </div>
+                <div class="copyright">Apache Clerezza, Clerezza, Apache, the Apache feather logo, and the Apache Clerezza project logo are trademarks of The Apache Software Foundation. <br></br>© 2011 The Apache Software Foundation.</div>
+              </div>
+            </div>
+
+
+          </body>
+        </html>
\ No newline at end of file

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,27 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A1">
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2-content"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A2">
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2-title"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2">
+    <j.0:contains rdf:nodeID="A1"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#TitledContent"/>
+    <j.0:contains rdf:nodeID="A2"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content-el/2.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,141 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+          <head>
+            <link type="text/css" href="/style/style.css" rel="stylesheet"/>
+            <title>Forwarding ports
+</title>
+          </head>
+          <body>
+            <div class="zz-header">
+
+              <div class="bar"></div>
+              <div class="logo">
+                <a href="http://clerezza.apache.org/" style=""><img src="/images/logo.png" alt="logo"/></a>
+              </div>
+            </div>
+            <div class="column nav">
+              <ul>
+                <li class="top-nav-entry"><div class="title">Documentation</div>
+
+                  <ul class="nav-entries">
+                    <li><a href="/getting-started/">Getting Started</a></li>
+                    <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                    <li><a href="http://clerezza.apache.org/apidocs/" target="_blank">API docs</a></li>
+                    <li><a href="/faq/">FAQ</a></li>
+                  </ul>
+                </li>
+
+                <li class="top-nav-entry"><div class="title">Project Infos</div>
+                  <ul class="nav-entries">
+                    <li><a href="/downloads/">Downloads</a></li>
+                    <li><a href="/contributing/">Contributing</a></li>
+                    <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                    <li><a href="/mailinglists/">Mailing lists</a></li>
+                    <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                    <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                  </ul>
+                </li>
+                <li class="top-nav-entry"><div class="title">Sponsorship</div>
+                  <ul class="nav-entries">
+                    <li><a href="/thanks/">Thanks</a></li>
+                    <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                    <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                  </ul>
+                </li>
+              </ul>
+            </div>
+
+            <div class="zz-content">
+              <h1>Forwarding ports
+</h1>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+
+            </div>
+            <div class="footer">
+              <div class="logos"><img src="/images/feather.png"/><img src="/images/sw-vert-w3c.png"/><img src="/images/footer-logo.png"/></div>
+
+              <div class="divider"></div>
+              <div class="dark">
+                <div class="sitemap">
+                  <div class="sitemap-title">Sitemap</div>
+                  <div class="sitemap-content">
+                    <div class="sitemap-column">
+                      <div class="title">Documentation</div>
+                      <ul>
+
+                        <li><a href="/getting-started/">Getting Started</a></li>
+                        <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                        <li><a href="http://clerezza,apache.org/apidocs/" target="_blank">API docs</a></li>
+                        <li><a href="/faq/">FAQ</a></li>
+                      </ul>
+
+                    </div>
+                    <div class="sitemap-column">
+
+                      <div class="title">Project Infos</div>
+                      <ul>
+                        <li><a href="/downloads/">Downloads</a></li>
+                        <li><a href="/contributing/">Contributing</a></li>
+                        <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                        <li><a href="mailinglists/">Mailing lists</a></li>
+                        <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                        <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                      </ul>
+                    </div>
+                    <div class="sitemap-column">
+                      <div class="title">Sponsorship</div>
+                      <ul>
+                        <li><a href="/thanks/">Thanks</a></li>
+                        <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                        <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                      </ul>
+                    </div>
+                  </div>
+
+                </div>
+                <div class="copyright">Apache Clerezza, Clerezza, Apache, the Apache feather logo, and the Apache Clerezza project logo are trademarks of The Apache Software Foundation. <br></br>© 2011 The Apache Software Foundation.</div>
+              </div>
+            </div>
+
+
+          </body>
+        </html>
\ No newline at end of file

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.html Sun May  7 14:40:01 2017
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>The following is known to work on recent Ubuntu Linux distributions.
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">You need to place a clerezza.conf file in the directory /etc/init. The following is an example that assumes Clerezza is to be run as user reto in /home/reto/clerezza using the jar platform.launcher.jar therein.</p>
+/etc/init/clerezza.conf
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode"># Apache Clerezza - job file
+
+description "Start Apache Clerezza as user reto"
+
+# When to start the service
+start on runlevel [2345]
+
+# When to stop the service
+stop on runlevel [016]
+
+# Automatically restart process if crashed
+respawn
+
+# Start the process
+exec su reto sh -c "cd /home/reto/clerezza &amp;&amp; java -XX:MaxPermSize=400m -Xmx800m -jar platform.launcher.jar -NCS"
+</div>
+</div>
+
+	<div><h1>Forwarding ports
+</h1>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,33 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/2"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A1">
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/0"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A2">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A3">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content-el/1"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content">
+    <rdf:type rdf:resource="http://discobits.org/ontology#OrderedContent"/>
+    <j.0:contains rdf:nodeID="A3"/>
+    <j.0:contains rdf:nodeID="A0"/>
+    <j.0:contains rdf:nodeID="A1"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1">
+    <j.0:contains rdf:nodeID="A2"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-content.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>The following is known to work on recent Ubuntu Linux distributions.
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">You need to place a clerezza.conf file in the directory /etc/init. The following is an example that assumes Clerezza is to be run as user reto in /home/reto/clerezza using the jar platform.launcher.jar therein.</p>
+/etc/init/clerezza.conf
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode"># Apache Clerezza - job file
+
+description "Start Apache Clerezza as user reto"
+
+# When to start the service
+start on runlevel [2345]
+
+# When to stop the service
+stop on runlevel [016]
+
+# Automatically restart process if crashed
+respawn
+
+# Start the process
+exec su reto sh -c "cd /home/reto/clerezza &amp;&amp; java -XX:MaxPermSize=400m -Xmx800m -jar platform.launcher.jar -NCS"
+</div>
+</div>
+
+	<div><h1>Forwarding ports
+</h1>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.html Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			On Ubuntu Linux
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,16 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-title"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-title">
+    <rdf:type rdf:resource="http://discobits.org/ontology#XHTMLInfoDiscoBit"/>
+    <j.0:infoBit rdf:parseType="Literal">On Ubuntu Linux</j.0:infoBit>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1-title.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			On Ubuntu Linux
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.html Sun May  7 14:40:01 2017
@@ -0,0 +1,171 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
+          <head>
+            <link type="text/css" href="/style/style.css" rel="stylesheet"/>
+            <title>On Ubuntu Linux
+</title>
+          </head>
+          <body>
+            <div class="zz-header">
+
+              <div class="bar"></div>
+              <div class="logo">
+                <a href="http://clerezza.apache.org/" style=""><img src="/images/logo.png" alt="logo"/></a>
+              </div>
+            </div>
+            <div class="column nav">
+              <ul>
+                <li class="top-nav-entry"><div class="title">Documentation</div>
+
+                  <ul class="nav-entries">
+                    <li><a href="/getting-started/">Getting Started</a></li>
+                    <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                    <li><a href="http://clerezza.apache.org/apidocs/" target="_blank">API docs</a></li>
+                    <li><a href="/faq/">FAQ</a></li>
+                  </ul>
+                </li>
+
+                <li class="top-nav-entry"><div class="title">Project Infos</div>
+                  <ul class="nav-entries">
+                    <li><a href="/downloads/">Downloads</a></li>
+                    <li><a href="/contributing/">Contributing</a></li>
+                    <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                    <li><a href="/mailinglists/">Mailing lists</a></li>
+                    <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                    <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                  </ul>
+                </li>
+                <li class="top-nav-entry"><div class="title">Sponsorship</div>
+                  <ul class="nav-entries">
+                    <li><a href="/thanks/">Thanks</a></li>
+                    <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                    <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                  </ul>
+                </li>
+              </ul>
+            </div>
+
+            <div class="zz-content">
+              <h1>On Ubuntu Linux
+</h1>
+<div class='tx-content'>
+
+	<div>The following is known to work on recent Ubuntu Linux distributions.
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">You need to place a clerezza.conf file in the directory /etc/init. The following is an example that assumes Clerezza is to be run as user reto in /home/reto/clerezza using the jar platform.launcher.jar therein.</p>
+/etc/init/clerezza.conf
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode"># Apache Clerezza - job file
+
+description "Start Apache Clerezza as user reto"
+
+# When to start the service
+start on runlevel [2345]
+
+# When to stop the service
+stop on runlevel [016]
+
+# Automatically restart process if crashed
+respawn
+
+# Start the process
+exec su reto sh -c "cd /home/reto/clerezza &amp;&amp; java -XX:MaxPermSize=400m -Xmx800m -jar platform.launcher.jar -NCS"
+</div>
+</div>
+
+	<div><h2>Forwarding ports
+</h2>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+</div>
+
+</div>
+
+            </div>
+            <div class="footer">
+              <div class="logos"><img src="/images/feather.png"/><img src="/images/sw-vert-w3c.png"/><img src="/images/footer-logo.png"/></div>
+
+              <div class="divider"></div>
+              <div class="dark">
+                <div class="sitemap">
+                  <div class="sitemap-title">Sitemap</div>
+                  <div class="sitemap-content">
+                    <div class="sitemap-column">
+                      <div class="title">Documentation</div>
+                      <ul>
+
+                        <li><a href="/getting-started/">Getting Started</a></li>
+                        <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                        <li><a href="http://clerezza,apache.org/apidocs/" target="_blank">API docs</a></li>
+                        <li><a href="/faq/">FAQ</a></li>
+                      </ul>
+
+                    </div>
+                    <div class="sitemap-column">
+
+                      <div class="title">Project Infos</div>
+                      <ul>
+                        <li><a href="/downloads/">Downloads</a></li>
+                        <li><a href="/contributing/">Contributing</a></li>
+                        <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                        <li><a href="mailinglists/">Mailing lists</a></li>
+                        <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                        <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                      </ul>
+                    </div>
+                    <div class="sitemap-column">
+                      <div class="title">Sponsorship</div>
+                      <ul>
+                        <li><a href="/thanks/">Thanks</a></li>
+                        <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                        <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                      </ul>
+                    </div>
+                  </div>
+
+                </div>
+                <div class="copyright">Apache Clerezza, Clerezza, Apache, the Apache feather logo, and the Apache Clerezza project logo are trademarks of The Apache Software Foundation. <br></br>© 2011 The Apache Software Foundation.</div>
+              </div>
+            </div>
+
+
+          </body>
+        </html>
\ No newline at end of file

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,27 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A1">
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-title"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A2">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1-content"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1">
+    <rdf:type rdf:resource="http://discobits.org/ontology#TitledContent"/>
+    <j.0:contains rdf:nodeID="A1"/>
+    <j.0:contains rdf:nodeID="A2"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/1.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,171 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+          <head>
+            <link type="text/css" href="/style/style.css" rel="stylesheet"/>
+            <title>On Ubuntu Linux
+</title>
+          </head>
+          <body>
+            <div class="zz-header">
+
+              <div class="bar"></div>
+              <div class="logo">
+                <a href="http://clerezza.apache.org/" style=""><img src="/images/logo.png" alt="logo"/></a>
+              </div>
+            </div>
+            <div class="column nav">
+              <ul>
+                <li class="top-nav-entry"><div class="title">Documentation</div>
+
+                  <ul class="nav-entries">
+                    <li><a href="/getting-started/">Getting Started</a></li>
+                    <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                    <li><a href="http://clerezza.apache.org/apidocs/" target="_blank">API docs</a></li>
+                    <li><a href="/faq/">FAQ</a></li>
+                  </ul>
+                </li>
+
+                <li class="top-nav-entry"><div class="title">Project Infos</div>
+                  <ul class="nav-entries">
+                    <li><a href="/downloads/">Downloads</a></li>
+                    <li><a href="/contributing/">Contributing</a></li>
+                    <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                    <li><a href="/mailinglists/">Mailing lists</a></li>
+                    <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                    <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                  </ul>
+                </li>
+                <li class="top-nav-entry"><div class="title">Sponsorship</div>
+                  <ul class="nav-entries">
+                    <li><a href="/thanks/">Thanks</a></li>
+                    <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                    <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                  </ul>
+                </li>
+              </ul>
+            </div>
+
+            <div class="zz-content">
+              <h1>On Ubuntu Linux
+</h1>
+<div class='tx-content'>
+
+	<div>The following is known to work on recent Ubuntu Linux distributions.
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">You need to place a clerezza.conf file in the directory /etc/init. The following is an example that assumes Clerezza is to be run as user reto in /home/reto/clerezza using the jar platform.launcher.jar therein.</p>
+/etc/init/clerezza.conf
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode"># Apache Clerezza - job file
+
+description "Start Apache Clerezza as user reto"
+
+# When to start the service
+start on runlevel [2345]
+
+# When to stop the service
+stop on runlevel [016]
+
+# Automatically restart process if crashed
+respawn
+
+# Start the process
+exec su reto sh -c "cd /home/reto/clerezza &amp;&amp; java -XX:MaxPermSize=400m -Xmx800m -jar platform.launcher.jar -NCS"
+</div>
+</div>
+
+	<div><h2>Forwarding ports
+</h2>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+</div>
+
+</div>
+
+            </div>
+            <div class="footer">
+              <div class="logos"><img src="/images/feather.png"/><img src="/images/sw-vert-w3c.png"/><img src="/images/footer-logo.png"/></div>
+
+              <div class="divider"></div>
+              <div class="dark">
+                <div class="sitemap">
+                  <div class="sitemap-title">Sitemap</div>
+                  <div class="sitemap-content">
+                    <div class="sitemap-column">
+                      <div class="title">Documentation</div>
+                      <ul>
+
+                        <li><a href="/getting-started/">Getting Started</a></li>
+                        <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                        <li><a href="http://clerezza,apache.org/apidocs/" target="_blank">API docs</a></li>
+                        <li><a href="/faq/">FAQ</a></li>
+                      </ul>
+
+                    </div>
+                    <div class="sitemap-column">
+
+                      <div class="title">Project Infos</div>
+                      <ul>
+                        <li><a href="/downloads/">Downloads</a></li>
+                        <li><a href="/contributing/">Contributing</a></li>
+                        <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                        <li><a href="mailinglists/">Mailing lists</a></li>
+                        <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                        <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                      </ul>
+                    </div>
+                    <div class="sitemap-column">
+                      <div class="title">Sponsorship</div>
+                      <ul>
+                        <li><a href="/thanks/">Thanks</a></li>
+                        <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                        <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                      </ul>
+                    </div>
+                  </div>
+
+                </div>
+                <div class="copyright">Apache Clerezza, Clerezza, Apache, the Apache feather logo, and the Apache Clerezza project logo are trademarks of The Apache Software Foundation. <br></br>© 2011 The Apache Software Foundation.</div>
+              </div>
+            </div>
+
+
+          </body>
+        </html>
\ No newline at end of file

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.html Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,16 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content-el/0">
+    <j.0:infoBit rdf:parseType="Literal">When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)</j.0:infoBit>
+    <rdf:type rdf:resource="http://discobits.org/ontology#XHTMLInfoDiscoBit"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content-el/0"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content-el/0.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.html Sun May  7 14:40:01 2017
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,21 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content">
+    <rdf:type rdf:resource="http://discobits.org/ontology#OrderedContent"/>
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content-el/0"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A1">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2">
+    <j.0:contains rdf:nodeID="A1"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-content.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.html Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			On other platforms
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,16 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-title">
+    <j.0:infoBit rdf:parseType="Literal">On other platforms</j.0:infoBit>
+    <rdf:type rdf:resource="http://discobits.org/ontology#XHTMLInfoDiscoBit"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A0">
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-title"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2-title.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			On other platforms
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.html Sun May  7 14:40:01 2017
@@ -0,0 +1,108 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
+          <head>
+            <link type="text/css" href="/style/style.css" rel="stylesheet"/>
+            <title>On other platforms
+</title>
+          </head>
+          <body>
+            <div class="zz-header">
+
+              <div class="bar"></div>
+              <div class="logo">
+                <a href="http://clerezza.apache.org/" style=""><img src="/images/logo.png" alt="logo"/></a>
+              </div>
+            </div>
+            <div class="column nav">
+              <ul>
+                <li class="top-nav-entry"><div class="title">Documentation</div>
+
+                  <ul class="nav-entries">
+                    <li><a href="/getting-started/">Getting Started</a></li>
+                    <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                    <li><a href="http://clerezza.apache.org/apidocs/" target="_blank">API docs</a></li>
+                    <li><a href="/faq/">FAQ</a></li>
+                  </ul>
+                </li>
+
+                <li class="top-nav-entry"><div class="title">Project Infos</div>
+                  <ul class="nav-entries">
+                    <li><a href="/downloads/">Downloads</a></li>
+                    <li><a href="/contributing/">Contributing</a></li>
+                    <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                    <li><a href="/mailinglists/">Mailing lists</a></li>
+                    <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                    <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                  </ul>
+                </li>
+                <li class="top-nav-entry"><div class="title">Sponsorship</div>
+                  <ul class="nav-entries">
+                    <li><a href="/thanks/">Thanks</a></li>
+                    <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                    <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                  </ul>
+                </li>
+              </ul>
+            </div>
+
+            <div class="zz-content">
+              <h1>On other platforms
+</h1>
+<div class='tx-content'>
+
+	<div>When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+</div>
+
+</div>
+
+            </div>
+            <div class="footer">
+              <div class="logos"><img src="/images/feather.png"/><img src="/images/sw-vert-w3c.png"/><img src="/images/footer-logo.png"/></div>
+
+              <div class="divider"></div>
+              <div class="dark">
+                <div class="sitemap">
+                  <div class="sitemap-title">Sitemap</div>
+                  <div class="sitemap-content">
+                    <div class="sitemap-column">
+                      <div class="title">Documentation</div>
+                      <ul>
+
+                        <li><a href="/getting-started/">Getting Started</a></li>
+                        <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                        <li><a href="http://clerezza,apache.org/apidocs/" target="_blank">API docs</a></li>
+                        <li><a href="/faq/">FAQ</a></li>
+                      </ul>
+
+                    </div>
+                    <div class="sitemap-column">
+
+                      <div class="title">Project Infos</div>
+                      <ul>
+                        <li><a href="/downloads/">Downloads</a></li>
+                        <li><a href="/contributing/">Contributing</a></li>
+                        <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                        <li><a href="mailinglists/">Mailing lists</a></li>
+                        <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                        <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                      </ul>
+                    </div>
+                    <div class="sitemap-column">
+                      <div class="title">Sponsorship</div>
+                      <ul>
+                        <li><a href="/thanks/">Thanks</a></li>
+                        <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                        <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                      </ul>
+                    </div>
+                  </div>
+
+                </div>
+                <div class="copyright">Apache Clerezza, Clerezza, Apache, the Apache feather logo, and the Apache Clerezza project logo are trademarks of The Apache Software Foundation. <br></br>© 2011 The Apache Software Foundation.</div>
+              </div>
+            </div>
+
+
+          </body>
+        </html>
\ No newline at end of file

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,27 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2">
+    <rdf:type rdf:resource="http://discobits.org/ontology#TitledContent"/>
+    <j.0:contains rdf:nodeID="A1"/>
+    <j.0:contains rdf:nodeID="A2"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A1">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-content"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A2">
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2-title"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content">
+    <j.0:contains rdf:nodeID="A0"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content-el/2.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,108 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+          <head>
+            <link type="text/css" href="/style/style.css" rel="stylesheet"/>
+            <title>On other platforms
+</title>
+          </head>
+          <body>
+            <div class="zz-header">
+
+              <div class="bar"></div>
+              <div class="logo">
+                <a href="http://clerezza.apache.org/" style=""><img src="/images/logo.png" alt="logo"/></a>
+              </div>
+            </div>
+            <div class="column nav">
+              <ul>
+                <li class="top-nav-entry"><div class="title">Documentation</div>
+
+                  <ul class="nav-entries">
+                    <li><a href="/getting-started/">Getting Started</a></li>
+                    <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                    <li><a href="http://clerezza.apache.org/apidocs/" target="_blank">API docs</a></li>
+                    <li><a href="/faq/">FAQ</a></li>
+                  </ul>
+                </li>
+
+                <li class="top-nav-entry"><div class="title">Project Infos</div>
+                  <ul class="nav-entries">
+                    <li><a href="/downloads/">Downloads</a></li>
+                    <li><a href="/contributing/">Contributing</a></li>
+                    <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                    <li><a href="/mailinglists/">Mailing lists</a></li>
+                    <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                    <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                  </ul>
+                </li>
+                <li class="top-nav-entry"><div class="title">Sponsorship</div>
+                  <ul class="nav-entries">
+                    <li><a href="/thanks/">Thanks</a></li>
+                    <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                    <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                  </ul>
+                </li>
+              </ul>
+            </div>
+
+            <div class="zz-content">
+              <h1>On other platforms
+</h1>
+<div class='tx-content'>
+
+	<div>When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+</div>
+
+</div>
+
+            </div>
+            <div class="footer">
+              <div class="logos"><img src="/images/feather.png"/><img src="/images/sw-vert-w3c.png"/><img src="/images/footer-logo.png"/></div>
+
+              <div class="divider"></div>
+              <div class="dark">
+                <div class="sitemap">
+                  <div class="sitemap-title">Sitemap</div>
+                  <div class="sitemap-content">
+                    <div class="sitemap-column">
+                      <div class="title">Documentation</div>
+                      <ul>
+
+                        <li><a href="/getting-started/">Getting Started</a></li>
+                        <li><a href="/architecture/">The Apache Clerezza Stack</a></li>
+                        <li><a href="http://clerezza,apache.org/apidocs/" target="_blank">API docs</a></li>
+                        <li><a href="/faq/">FAQ</a></li>
+                      </ul>
+
+                    </div>
+                    <div class="sitemap-column">
+
+                      <div class="title">Project Infos</div>
+                      <ul>
+                        <li><a href="/downloads/">Downloads</a></li>
+                        <li><a href="/contributing/">Contributing</a></li>
+                        <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                        <li><a href="mailinglists/">Mailing lists</a></li>
+                        <li><a href="http://issues.apache.org/jira/browse/CLEREZZA" target="_blank">Issue Tracker</a></li>
+
+                        <li><a href="https://git-wip-us.apache.org/repos/asf?p=clerezza.git" target="_blank">Source Repository</a></li>
+                      </ul>
+                    </div>
+                    <div class="sitemap-column">
+                      <div class="title">Sponsorship</div>
+                      <ul>
+                        <li><a href="/thanks/">Thanks</a></li>
+                        <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Become a Sponsor</a></li>
+                        <li><a href="http://www.apache.org/foundation/buy_stuff.html" target="_blank">Buy Stuff</a></li>
+                      </ul>
+                    </div>
+                  </div>
+
+                </div>
+                <div class="copyright">Apache Clerezza, Clerezza, Apache, the Apache feather logo, and the Apache Clerezza project logo are trademarks of The Apache Software Foundation. <br></br>© 2011 The Apache Software Foundation.</div>
+              </div>
+            </div>
+
+
+          </body>
+        </html>
\ No newline at end of file

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content.html Sun May  7 14:40:01 2017
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>The following describes ho to install Clerezza as a service, i.e. to start up in the background typically when the system is bootet. It is recommended to first try to start Clerezza manually following the instrcutions <a xmlns="http://www.w3.org/1999/xhtml" href="/getting-started/launching-clerezza/">here</a>.
+</div>
+
+	<div><h1>On Ubuntu Linux
+</h1>
+<div class='tx-content'>
+
+	<div>The following is known to work on recent Ubuntu Linux distributions.
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">You need to place a clerezza.conf file in the directory /etc/init. The following is an example that assumes Clerezza is to be run as user reto in /home/reto/clerezza using the jar platform.launcher.jar therein.</p>
+/etc/init/clerezza.conf
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode"># Apache Clerezza - job file
+
+description "Start Apache Clerezza as user reto"
+
+# When to start the service
+start on runlevel [2345]
+
+# When to stop the service
+stop on runlevel [016]
+
+# Automatically restart process if crashed
+respawn
+
+# Start the process
+exec su reto sh -c "cd /home/reto/clerezza &amp;&amp; java -XX:MaxPermSize=400m -Xmx800m -jar platform.launcher.jar -NCS"
+</div>
+</div>
+
+	<div><h2>Forwarding ports
+</h2>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+</div>
+
+</div>
+</div>
+
+	<div><h1>On other platforms
+</h1>
+<div class='tx-content'>
+
+	<div>When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+</div>
+
+</div>
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content.rdf
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content.rdf?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content.rdf (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content.rdf Sun May  7 14:40:01 2017
@@ -0,0 +1,33 @@
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:j.0="http://discobits.org/ontology#" > 
+  <rdf:Description rdf:nodeID="A0">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/2"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A1">
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/1"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A2">
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content"/>
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</j.0:pos>
+  </rdf:Description>
+  <rdf:Description rdf:nodeID="A3">
+    <j.0:pos rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</j.0:pos>
+    <j.0:holds rdf:resource="http://clerezza.apache.org/getting-started/install-as-service/index-content-el/0"/>
+    <rdf:type rdf:resource="http://discobits.org/ontology#Entry"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index">
+    <j.0:contains rdf:nodeID="A2"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://clerezza.apache.org/getting-started/install-as-service/index-content">
+    <rdf:type rdf:resource="http://discobits.org/ontology#OrderedContent"/>
+    <j.0:contains rdf:nodeID="A0"/>
+    <j.0:contains rdf:nodeID="A3"/>
+    <j.0:contains rdf:nodeID="A1"/>
+  </rdf:Description>
+</rdf:RDF>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-content.xhtml
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-content.xhtml?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-content.xhtml (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-content.xhtml Sun May  7 14:40:01 2017
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			
+
+	<div>The following describes ho to install Clerezza as a service, i.e. to start up in the background typically when the system is bootet. It is recommended to first try to start Clerezza manually following the instrcutions <a xmlns="http://www.w3.org/1999/xhtml" href="/getting-started/launching-clerezza/">here</a>.
+</div>
+
+	<div><h1>On Ubuntu Linux
+</h1>
+<div class='tx-content'>
+
+	<div>The following is known to work on recent Ubuntu Linux distributions.
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">You need to place a clerezza.conf file in the directory /etc/init. The following is an example that assumes Clerezza is to be run as user reto in /home/reto/clerezza using the jar platform.launcher.jar therein.</p>
+/etc/init/clerezza.conf
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode"># Apache Clerezza - job file
+
+description "Start Apache Clerezza as user reto"
+
+# When to start the service
+start on runlevel [2345]
+
+# When to stop the service
+stop on runlevel [016]
+
+# Automatically restart process if crashed
+respawn
+
+# Start the process
+exec su reto sh -c "cd /home/reto/clerezza &amp;&amp; java -XX:MaxPermSize=400m -Xmx800m -jar platform.launcher.jar -NCS"
+</div>
+</div>
+
+	<div><h2>Forwarding ports
+</h2>
+<div class='tx-content'>
+
+	<div>By default Clerezza listens to port 8080 for http requests and to port 8022 for ssh connections. As Clerezza is typically run as an unpriviledged user (user reto in the example above) it cannot listen to default ports like port 80 for the web.
+</div>
+
+	<div>One way to redirect the default web port 80 to port 8080 is to use xinetd. This is not installed by default.
+</div>
+
+	<div>Install xinetd with
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo apt-get install xinetd
+</div>
+</div>
+
+	<div><p xmlns="http://www.w3.org/1999/xhtml">For redirecting the http port 80 to 8080 you can place a file with following content into the directory /etc/xinet.d.</p>
+/etc/xinet.d/http
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">service http 
+{
+ disable = no
+ flags = REUSE
+ socket_type = stream
+ protocol = tcp
+ user = root
+ wait = no
+ port = 80
+ redirect = 127.0.0.1 8080
+ log_type = FILE /tmp/xinetdssl.log
+}
+</div>
+</div>
+
+	<div>Finally tell xinetd to reload the config with:
+<div xmlns="http://www.w3.org/1999/xhtml" class="tx-blockcode">sudo /etc/init.d/xinetd reload
+</div>
+</div>
+
+	<div>Alternatives to xinetd include inet.d and iptables
+</div>
+
+</div>
+</div>
+
+</div>
+</div>
+
+	<div><h1>On other platforms
+</h1>
+<div class='tx-content'>
+
+	<div>When running clerezza as service you should start it with the -NCS command line option as it otherwise attempts to open a shell on the console (which is not available to services)
+</div>
+
+</div>
+</div>
+
+
+	</body>
+</html>

Added: clerezza/site/production/legacy/getting-started/install-as-service/index-title.html
URL: http://svn.apache.org/viewvc/clerezza/site/production/legacy/getting-started/install-as-service/index-title.html?rev=1794206&view=auto
==============================================================================
--- clerezza/site/production/legacy/getting-started/install-as-service/index-title.html (added)
+++ clerezza/site/production/legacy/getting-started/install-as-service/index-title.html Sun May  7 14:40:01 2017
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+	<head>
+		<link type="text/css" href="/style/style.css" rel="stylesheet" />
+		<meta content="noindex, nofollow" name="robots"/>
+		<title>Untitled Content</title>
+	</head>
+	<body>
+			Installing Clerezza as a Service
+
+	</body>
+</html>