ustorit_release/
|---- build/
|---- edu/
|---- stanford/
|---- ....
|---- html/
|---- index.html
|---- IOError.jsp
|---- image/
|---- folder.gif
|---- ....
|---- lib/
|---- cos-09May2002.jar
|---- mm.mysql-2.0.4-bin.jar
|---- multipart.jar
|---- ....
|---- metadata/
|---- web.xml
|---- mysql_scritps/
|---- create.sql
|---- drop.sql
|---- script/
|---- default.js
|---- style/
|---- defualt.css
|---- UserGuide.html
|---- InstallGuide.html
|---- SetupSSLForTomcat.html
For example, change the following line
CREATE TABLE IF NOT EXISTS database_name.users
to the following
CREATE TABLE IF NOT EXISTS ustorit.users
For example,
<context-param>
<param-name>DatabaseHost</param-name>
<param-value>xyz.stanford.edu</param-value>
</context-param>
<context-param>
<param-name>DatabaseName</param-name>
<param-value>ustorit</param-value>
</context-param>
<context-param>
<param-name>DatabaseUserName</param-name>
<param-value>dbuser</param-value>
</context-param>
<context-param>
<param-name>DatabaseUserPassword</param-name>
<param-value></param-value>
</context-param>
<context-param>
<param-name>UStoritRootDir</param-name>
<param-value>/ABC</param-value>
</context-param>
<context-param>
<param-name>UStoritAdminEmail</param-name>
<param-value>admin@xyz.stanford.edu</param-value>
</context-param>
Now you should see the following under the application context directory.
TOMCAT_HOME/
|---- webapps/
|---- ustorit/
|---- WEB-INF/
|---- classes/
|---- edu/
|---- stanford/
|---- ....
|---- lib/
|---- cos-09May2002.jar
|---- mm.mysql-2.0.4-bin.jar
|---- multipart.jar
|---- ....
|---- web.xml
|---- image/
|---- folder.gif
|---- ....
|---- script/
|---- default.js
|---- style/
|---- defualt.css
|---- index.html
|---- IOError.jsp
<Context path="/ustorit" docBase="ustorit"
debug="0" reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="localhost_ustorit_log." suffix=".txt"
timestamp="true"/>
</Context>
If you have not enabled the SSL, please refer to online document on how to configure SSL for tomcat at http://jakarta.apache.org/tomcat/tomcat-4.0-doc/ssl-howto.html