• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Not able to see the apache screen on localhost

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

when I point my browser to http://localhost:8080, the apache tomcat screen doesn't appear. Instaed, joomla folder is shown as i had earlier installed joomla.

I want apache tomcat screen should appear as i have to use apache manager for site deployment.


Thanks in advance.!

aditya
 
Saloon Keeper
Posts: 27763
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the JavaRanch, Aditya!

We prefer to use the simple name "Tomcat" instead of "Apache Tomcat". That's because otherwise people get confusion between the "real" Apache (httpd) server and Tomcat itself, since they're both Apache products, but Apache httpd is the more popular of the two programs. Also because it's very common to connect Tomcat to Apache, and it helps up figure out which is which.

Only one application server can own a tcp/ip port on a given computer. So if you already have a joomla server running, you have 2 choices:

1. Shut down joomla

2. pick a different port.

If Joomla were a J2EE webapp, you could also configure it to be a second webapp within Tomcat, but if I remember correctly, Joomla's not written in Java.

Really evil people (like me) can also do creative things with proxy servers and stuff like that, but that's a bit much to start with.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic