You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by wi...@apache.org on 2013/02/20 12:03:15 UTC

svn commit: r1448073 [1/3] - in /incubator/marmotta/site/trunk: ./ content/ content/markdown/ content/resources/css/ content/resources/images/

Author: wikier
Date: Wed Feb 20 11:03:15 2013
New Revision: 1448073

URL: http://svn.apache.org/r1448073
Log:
some site improvements

Added:
    incubator/marmotta/site/trunk/content/markdown/configuration.md
    incubator/marmotta/site/trunk/content/markdown/download.md
    incubator/marmotta/site/trunk/content/markdown/installation.md
    incubator/marmotta/site/trunk/content/resources/css/apache-maven-fluido.min.css
Modified:
    incubator/marmotta/site/trunk/content/markdown/index.md
    incubator/marmotta/site/trunk/content/resources/css/site.css
    incubator/marmotta/site/trunk/content/resources/images/marmotta.png
    incubator/marmotta/site/trunk/content/site.xml
    incubator/marmotta/site/trunk/pom.xml

Added: incubator/marmotta/site/trunk/content/markdown/configuration.md
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/markdown/configuration.md?rev=1448073&view=auto
==============================================================================
--- incubator/marmotta/site/trunk/content/markdown/configuration.md (added)
+++ incubator/marmotta/site/trunk/content/markdown/configuration.md Wed Feb 20 11:03:15 2013
@@ -0,0 +1,3 @@
+# Configuring Apache Marmotta 
+
+@@TODOO

Added: incubator/marmotta/site/trunk/content/markdown/download.md
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/markdown/download.md?rev=1448073&view=auto
==============================================================================
--- incubator/marmotta/site/trunk/content/markdown/download.md (added)
+++ incubator/marmotta/site/trunk/content/markdown/download.md Wed Feb 20 11:03:15 2013
@@ -0,0 +1,3 @@
+# Getting Apache Marmotta 
+
+@@TODOO

Modified: incubator/marmotta/site/trunk/content/markdown/index.md
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/markdown/index.md?rev=1448073&r1=1448072&r2=1448073&view=diff
==============================================================================
--- incubator/marmotta/site/trunk/content/markdown/index.md (original)
+++ incubator/marmotta/site/trunk/content/markdown/index.md Wed Feb 20 11:03:15 2013
@@ -7,9 +7,9 @@ to publish Linked Data or build custom a
 Right now the project is being setting up installed in the Apache Software Foundation 
 infrastructure. Regular meetings are held at IRC 
 ([see logs](http://wilderness.apache.org/archives/#logs-apachemarmotta)). For further 
-details, please check the [wiki](http://wiki.apache.org/marmotta}wiki), the 
+details, please check the [wiki](http://wiki.apache.org/marmotta), the 
 [incubator proposal](http://wiki.apache.org/incubator/MarmottaProposal) or the 
-[project podling status]http://incubator.apache.org/projects/marmotta.html).
+[project podling status](http://incubator.apache.org/projects/marmotta.html).
   
 ## Background 
 

Added: incubator/marmotta/site/trunk/content/markdown/installation.md
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/markdown/installation.md?rev=1448073&view=auto
==============================================================================
--- incubator/marmotta/site/trunk/content/markdown/installation.md (added)
+++ incubator/marmotta/site/trunk/content/markdown/installation.md Wed Feb 20 11:03:15 2013
@@ -0,0 +1,65 @@
+# Installing Apache Marmotta 
+
+Apache Marmotta is implemented as a Java Web Application that can, in principle, 
+be deployed to any Java Application Container. It has been tested under Jetty 6.x 
+and Tomcat 7.x. It can be installed using the source code or as a binary package.
+
+## Requirements
+
+* Hardware
+ * standard workstation (Dual-Core or similar)
+ * 1GB main memory
+ * about 100MB hard disk
+* Software
+ * Java JDK 6 or higher
+ * Java Application Server (Tomcat 7.x or Jetty 6.x)
+ * Database (PostgreSQL, MySQL - if not explicitly configured, an embedded H2 database will be used)
+
+## Installation (standalone)
+
+The most straightforward way of installing the Marmota is to use the standalone installer, which will 
+automatically install and configure all core components of Marmotta, including a version of Apache Tomcat 
+for running the web application.
+
+To install the standalone version, download the `marmotta-installer-x.y.z.jar` file from the 
+[downloads section](download.html) and execute the jar file (double click or `java -jar` command).
+
+**IMPORTANT:** The installation path on windows systems may not contain whitespaces (e.g. `'C:/Program Files'` 
+is not usable). This is a serious bug of Tomcat application server and will most probably be fixed in further 
+versions.
+
+Depending on the underlying operating system, the installer will also create shortcuts for starting/stopping 
+Marmotta:
+
+* on Windows, these can be found in the Start Menu under "Apache -> Marmotta"
+* on Linux, these are created on the desktop and also in the Applications menu under "Apache Marmotta"
+* on MacOS, there are two actions "Start Marmotta" and "Shutdown Marmotta" in the program folder of the Marmotta installation
+
+After installation, you can access the administration interface of Marmottta by pointing your browser to 
+[http://localhost:8080/](http://localhost:8080/) or by clicking on the Marmotta systray icon and selecting 
+"Administration" from the menu.
+
+# Installation (binary)
+
+@@TODO@@
+
+# Installation (maven)
+
+@@TODO@@
+
+# Installation (source)
+
+Considering you have git and maven installed, you just need to run the following commands:
+
+    git clone https://git-wip-us.apache.org/repos/asf/incubator-marmotta.git marmotta
+    cd marmotta
+    mvn clean install
+
+And then you'd have all artifact installed in your local Maven repository. Therefore you would be able to run 
+the webapp launcher:
+
+    cd launchers/webapp
+    mvn tomcat7:run
+
+This will launch Marmotta on an embedded Tomcat running at [http://localhost:8080/](http://localhost:8080/).
+