Difference between revisions of "Website:WormMine"

From WormBaseWiki
Jump to navigationJump to search
(Created page with '== Background == Based on the Getting Started Tutorial: http://intermine.org/wiki/GettingStarted == Install Prerequisites (Debian) == (see http://intermine.org/wiki/Prere…')
 
Line 25: Line 25:
 
  // Set up users. If installed via the package manager
 
  // Set up users. If installed via the package manager
 
  $ sudo emacs /etc/tomcat6/tomcat-users.xml
 
  $ sudo emacs /etc/tomcat6/tomcat-users.xml
 +
 +
<tomcat-users>
 +
  <!-- you can add more users or roles if needed -->
 +
  <role rolename="manager"/>
 +
  <user username="manager" password="manager" roles="manager"/>
 +
</tomcat-users>

Revision as of 20:46, 13 October 2011

Background

Based on the Getting Started Tutorial:

   http://intermine.org/wiki/GettingStarted

Install Prerequisites (Debian)

(see http://intermine.org/wiki/Prerequisites)

 $ sudo apt-get install postgresql
 $ sudo apt-get install sun-java6-sdk
 $ sudo apt-get install ant

Tomcat

Via the package manner:

 $ sudo apt-get install tomcat6
 // Or via a stable binary
 $ curl -O http://mirror.csclub.uwaterloo.ca/apache/tomcat/tomcat-6/v6.0.33/bin/apache-tomcat-6.0.33.tar.gz
 $ tar -zxfv apache-tomcat-6* ; cd apache-tomcat*
 // startup.sh and shutdown.sh are found in apache-tomcat*/bin/
// Set up users. If installed via the package manager
$ sudo emacs /etc/tomcat6/tomcat-users.xml
<tomcat-users>
 <role rolename="manager"/>
 <user username="manager" password="manager" roles="manager"/>
</tomcat-users>