Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> 

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

 http://localhost:portNumber/ 

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answerfirst answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> 

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

 http://localhost:portNumber/ 

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> 

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

 http://localhost:portNumber/ 

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> 

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

http://localhost:portNumber/

 
 http://localhost:portNumber/ 

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

http://localhost:portNumber/

 

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> 

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

 http://localhost:portNumber/ 

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

added 89 characters in body
Source Link
Akhil Kooliyatt
  • 935
  • 4
  • 17
  • 38

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

http://localhost:portNumber/

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

http://localhost:portNumber/

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

Installing TOMCAT & Configuring:

Install the tomcat from here :select the required version from download.

Setting the environment variable:

System Properties->Advanced->Environment Variables

Variable Name : CATALINA_HOME
Variable Value: C:\TOMCAT 7.0.10 (your tomcat directory)

Check your port number in Tomcat--->conf--->server.xml

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

Please note that your oracle is having a default port number 8080. Make sure no conflicts are there

Start the server(Go to the bin folder of tomcat and use startup.bat in windows and startup.sh for linux)

Then try the url in any web browser :

http://localhost:portNumber/

If you get the tomcat homepage your tomcat is properly configured.

Deploying application war File :

Step 1:stop tomcat(Go to the bin folder of tomcat and use shutdown.bat in windows and shutdown.sh for linux) Step 2:move your war into "[tomcat install dir]/webapps" Step 3:start tomcat 

Then try to access your web application as explained in the first answer in any web browser

added 20 characters in body
Source Link
Akhil Kooliyatt
  • 935
  • 4
  • 17
  • 38
Loading
added 76 characters in body
Source Link
Akhil Kooliyatt
  • 935
  • 4
  • 17
  • 38
Loading
Source Link
Akhil Kooliyatt
  • 935
  • 4
  • 17
  • 38
Loading