Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updating Sesame instructions

...

Code Block
languagebash
$ curl -L -O https://dist.apache.org/repos/dist/release/tomcat/tomcat-7/v7.0.42/bin/apache-tomcat-7.0.42.tar.gz
$ tar xvfz apache-tomcat-7.0.42.tar.gz
$ vi 
  • Edit the Tomcat configuration file (apache-tomcat-7.0.42/conf/server.xml) to use a different port (e.g., 8081 instead of 8080).
  • Download Sesame from http://sourceforge.net/projects/sesame/files/Sesame%202/
  • Unpack Sesame and move the Sesame WAR file into the Tomcat webapps directory, then start Tomcat.
Code Block
languagebash

$ apache-tomcat-7.0.42/bin/startup.sh
$ curl -L -O http://sourceforge.net/projects/sesame/files/Sesame%202/2.7.7/openrdf-sesame-2.7.7-sdk.tar.gz
$ tar xvfz openrdf-sesame-2.7.7-sdk.tar.gz 
$ cp openrdf-sesame-2.7.7/war/openrdf-sesame.war <tomcat/webapps/directory>apache-tomcat-7.0.42/webapps/
$ apache-tomcat-7.0.42/bin/startup.sh

Sesame should now be running at: http://localhost:80808081/openrdf-sesame/homesystem/overview.view

  • Once Sesame is running, use the console application to create a repository:

...