<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Tomcat_bash</id>
		<title>Tomcat bash - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Tomcat_bash"/>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Tomcat_bash&amp;action=history"/>
		<updated>2026-04-05T07:28:24Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Tomcat_bash&amp;diff=912&amp;oldid=prev</id>
		<title>Guillaume: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Tomcat_bash&amp;diff=912&amp;oldid=prev"/>
				<updated>2008-12-03T10:39:07Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 10:39, 3 December 2008&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Guillaume</name></author>	</entry>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Tomcat_bash&amp;diff=911&amp;oldid=prev</id>
		<title>192.168.20.177 at 17:43, 22 June 2008</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Tomcat_bash&amp;diff=911&amp;oldid=prev"/>
				<updated>2008-06-22T17:43:28Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;code&amp;gt;[bash]&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
#./Tomcat5.sh&lt;br /&gt;
#&lt;br /&gt;
JAVA_HOME=/usr/java/latest&lt;br /&gt;
CATALINA_HOME=/home/guillaume/Software/las7/tomcat/tomcat&lt;br /&gt;
DAEMON_HOME=/home/guillaume/Software/las7/tomcat/tomcat&lt;br /&gt;
TOMCAT_USER=guillaume&lt;br /&gt;
&lt;br /&gt;
# for multi instances adapt those lines.&lt;br /&gt;
TMP_DIR=/home/guillaume/Software/las7/tomcat/tomcat/var/tmp&lt;br /&gt;
PID_FILE=/home/guillaume/Software/las7/tomcat/tomcat/var/run/jsvc.pid&lt;br /&gt;
CATALINA_BASE=/home/guillaume/Software/las7/tomcat/tomcat&lt;br /&gt;
&lt;br /&gt;
CATALINA_OPTS=&amp;quot;-Djava.awt.headless=true -Xms256M -Xmx256M&amp;quot;&lt;br /&gt;
CLASSPATH=\&lt;br /&gt;
$JAVA_HOME/lib/tools.jar:\&lt;br /&gt;
$CATALINA_HOME/bin/commons-daemon.jar:\&lt;br /&gt;
$CATALINA_HOME/bin/bootstrap.jar&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
    #&lt;br /&gt;
    # Start Tomcat&lt;br /&gt;
    #&lt;br /&gt;
    $DAEMON_HOME/bin/jsvc \&lt;br /&gt;
    -verbose \&lt;br /&gt;
    -user $TOMCAT_USER \&lt;br /&gt;
    -home $JAVA_HOME \&lt;br /&gt;
    -Dcatalina.home=$CATALINA_HOME \&lt;br /&gt;
    -Dcatalina.base=$CATALINA_BASE \&lt;br /&gt;
    -Djava.io.tmpdir=$TMP_DIR \&lt;br /&gt;
    -wait 10 \&lt;br /&gt;
    -pidfile $PID_FILE \&lt;br /&gt;
    -outfile $CATALINA_HOME/logs/catalina.out \&lt;br /&gt;
    -errfile '&amp;amp;1' \&lt;br /&gt;
    $CATALINA_OPTS \&lt;br /&gt;
    -cp $CLASSPATH \&lt;br /&gt;
    org.apache.catalina.startup.Bootstrap&lt;br /&gt;
    #&lt;br /&gt;
    # To get a verbose JVM&lt;br /&gt;
    #-verbose \&lt;br /&gt;
    # To get a debug of jsvc.&lt;br /&gt;
    #-debug \&lt;br /&gt;
    sudo netstat -tlnp | grep 8080&lt;br /&gt;
    exit $?&lt;br /&gt;
    ;;&lt;br /&gt;
&lt;br /&gt;
  stop)&lt;br /&gt;
    #&lt;br /&gt;
    # Stop Tomcat&lt;br /&gt;
    #&lt;br /&gt;
    $DAEMON_HOME/bin/jsvc \&lt;br /&gt;
    -stop \&lt;br /&gt;
    -pidfile $PID_FILE \&lt;br /&gt;
    org.apache.catalina.startup.Bootstrap&lt;br /&gt;
    sudo netstat -tlnp | grep 8080&lt;br /&gt;
    exit $?&lt;br /&gt;
    ;;&lt;br /&gt;
&lt;br /&gt;
  *)&lt;br /&gt;
    echo &amp;quot;Usage tomcat.sh start/stop&amp;quot;&lt;br /&gt;
    exit 1;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Other references==&lt;br /&gt;
*[[Tomcat#/bin|Tomcat]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;/div&gt;</summary>
		<author><name>192.168.20.177</name></author>	</entry>

	</feed>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-56589921-5', 'auto');
  ga('send', 'pageview');
</script>