Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where tomcat.conf is located?

I can't find my tomcat.conf, I have looked in /etc/tomcat6, but it's not there, nor is it in /usr/share/tomcat6.

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

like image 353
hkshambesh Avatar asked Dec 09 '09 16:12

hkshambesh


People also ask

Where is conf Tomcat user xml?

Open the tomcat-users. xml file, which is located by default in $CATALINA_HOME\conf\tomcat-users.

How do I open Tomcat configuration?

You can configure the Tomcat service from the desktop by double-clicking the Manager tray icon, navigating to the "General" tab, and choosing "Automatic" for the "Startup type".

Where is Tomcat webapps folder Linux?

The default directory for Tomcat files will be in /usr/local/tomcat9, you can view the configuration files inside the conf folder, the main page that you have seen above, when you open your website on the 8080 port is in /usr/local/tomcat9/webapps/ROOT/.

Where is server xml located?

The Server. xml file is located at the root level of the conf directory.


3 Answers

Try:

sudo updatedb
locate tomcat.conf | less
like image 195
dasilvj Avatar answered Nov 15 '22 22:11

dasilvj


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.

like image 20
BalusC Avatar answered Nov 15 '22 21:11

BalusC


tomcat.conf is a file that the RedHat RPM package of Tomcat installs. See here. It's actually a nice way of managing tomcat config stuff in a file rather than environment variables.

like image 27
Marplesoft Avatar answered Nov 15 '22 22:11

Marplesoft