~ludovicc/uj/tomcat6

« back to all changes in this revision

Viewing changes to debian/README.Debian

  • Committer: Ludovic
  • Date: 2010-02-13 22:24:13 UTC
  • Revision ID: ludovic.claude@laposte.net-20100213222413-s3s3dd1c7im0pysf
* Remove poms from the Debian packaging, use upstream pom files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Getting started:
2
 
  * The server should be accessible at http://localhost:8080/ once installed.
3
 
  * If you install tomcat6-admin, then Tomcat administration will be accessible
4
 
    on http://localhost:8080/manager/, the default username is tomcat and 
5
 
    the password is also tomcat.
6
 
  * Tomcat is NOT secured by default. Before exposing your Tomcat instance to
7
 
    the internet, please change at least the passwords in 
8
 
    /etc/tomcat6/tomcat-users.xml and turn on Java security: edit your 
9
 
    /etc/default/tomcat6 file and set TOMCAT6_SECURITY="yes".
10
 
    After you may need to change the policy files in /etc/tomcat6/policy.d/
11
 
    if the application doesn't start or produces new Exceptions. 
 
2
  * After installing the tomcat6 package, the server should be accessible
 
3
    at http://localhost:8080/
 
4
  * If you install tomcat6-admin, then you need to edit 
 
5
    /etc/tomcat6/tomcat6-users.xml and add to it the following:
 
6
      <role rolename="manager"/>
 
7
      <user username="tomcat" password="s3cret" roles="manager"/>
 
8
    Tomcat administration will be accessible on http://localhost:8080/manager/
 
9
  * Tomcat is not running under a Java security manager by default. If you
 
10
    expose your Tomcat instance to the internet, please consider editing
 
11
    your /etc/default/tomcat6 file and set TOMCAT6_SECURITY="yes", then
 
12
    adjust policy files in /etc/tomcat6/policy.d/ as explained in
 
13
    http://tomcat.apache.org/tomcat-6.0-doc/security-manager-howto.html
12
14
  * To run more than one Tomcat instance on your server, install the package
13
15
    tomcat6-user and run the tomcat6-instance-create utility.
 
16
    You should remove the tomcat6 package if you don't want Tomcat to
 
17
    start as a daemon at boot time.
14
18
  * If you configure your Tomcat to listen on one
15
19
    or more privileged ports (such as port 80 or port 443), then you
16
20
    may now enable authbind in your /etc/default/tomcat6 file.  The