views:

290

answers:

3

I can't find it, I have looked at:

/etc/tomcat6 cd ~tomcat6 -> /usr/share/tomcat6

Where can I find the tomcat.conf in Linux Ubuntu?

+2  A: 

There is no means of a tomcat.conf file in a default and plain vanilla Tomcat installation. You however can find several configuration files in the /conf folder. Details/manuals about those can be found at the Apache Tomcat Configuration Reference.

Hope this helps.

BalusC
+2  A: 
sudo updatedb
locate tomcat.conf | less
dasilvj
+1  A: 

Not sure what you're looking for but here is the filelist of the package tomcat6 on karmic:

/etc/cron.daily/tomcat6
/etc/default/tomcat6
/etc/init.d/tomcat6
/etc/tomcat6/catalina.properties
/etc/tomcat6/context.xml
/etc/tomcat6/logging.properties
/etc/tomcat6/policy.d/01system.policy
/etc/tomcat6/policy.d/02debian.policy
/etc/tomcat6/policy.d/03catalina.policy
/etc/tomcat6/policy.d/04webapps.policy
/etc/tomcat6/policy.d/50local.policy
/etc/tomcat6/server.xml
/etc/tomcat6/tomcat-users.xml
/etc/tomcat6/web.xml
/usr/share/doc/tomcat6/changelog.Debian.gz
/usr/share/doc/tomcat6/copyright
/usr/share/tomcat6/webapps/default_root/META-INF/context.xml
/usr/share/tomcat6/webapps/default_root/index.html
/var/lib/tomcat6/conf
/var/lib/tomcat6/logs
/var/lib/tomcat6/work
Pascal Thivent
I am looking at this (http://wiki.foochal.org/index.php/CruiseControl_FAQ) tutorial and it told me to Configure tomcat.conf to specify dashboard-config.xml So that was my problem.. thanks anyways...
hkshambesh
I've checked the tutorial and have no idea of what *"Configure tomcat.conf to specify dashboard-config.xml"* could mean. This doesn't make any sense...
Pascal Thivent
I googled a bit and it *look like* that there's a `tomcat.conf` in Apache JK connector. At any way, hkshambesh, whenever having startup problems with a particular product, in the future please refer the vendor-supplied documentation instead of some blogs/sites of which you never know if they are correct. Always use vendor-supplied docs.
BalusC
@BalusC Oh, indeed, there are references to `tomcat.conf` in the JK connector documentation. I don't think this is what the tutorial refers to though and agree with your comment.
Pascal Thivent