Desperately in need of help!! apache webserver question!

Guys,
I need ur help!! I am on the verge of breakdown!! what the funny part is i have done the tough part fairly easily but the easy part is annoying me. here is my problem:
I have setup virtualhosts defnition for my webserver. post configuration i have now Apache 2.0 + tomcat 5.5 and mod_jk running successfully on my machine.
The files that i have modified are
httpd.conf
workers.properties and
server.xml
what i want is:
when i give url: as http://www.mydomain.com
this has to bring up the tomcat web application which can otherwise be invoked by url: http://www.mydomain.com:8080/myapplication
what i am able to achieve is i can load the application via apache withou having to specify the port number like this:
http://www.mydomain.com/myapplication
but i want 'myapplication' to be automatically loaded when given just the servername itself!!
please this must be a simple thing..help me!
i have modified jkMount /myapplication/*.jsp
I have to get this working by today evening i am sick and tired of this...
-Sri

httpd.conf
<VirtualHost xxx.xx.xx.xx:8080>
ServerName xyz.domain.edu
ServerAlias xyz.domain.edu* www.domain.org domain.org
DocumentRoot /usr/tomcat/apache-tomcat-5.5.15/webapps
ServerPath /neuroMor
ErrorLog logs/xyz.domain.edu-error_log
CustomLog logs/xyz.domain.edu-access_log common
</VirtualHost>
<VirtualHost xxx.xx.xx.xx:8080>
ServerName www.domain.org
ServerPath /neuroMor
DocumentRoot /usr/tomcat/apache-tomcat-5.5.15/webapps
ErrorLog logs/www.domain.org-error_log
CustomLog logs/www.domain.org-access_log common
</VirtualHost>
#To be added at the end of your httpd.conf tomcat auto-configure
Include /usr/tomcat/apache-tomcat-5.5.15/conf/auto/mod_jk.conf
# Load mod_jk module
LoadModule jk_module libexec/mod_jk.so
# Where to find workers.properties
JkWorkersFile /usr/local/apache/workers.properties
# Where to put jk logs
JkLogFile /var/log/httpd/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel info
# Select the log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
# JkOptions indicate to send SSL KEY SIZE,
JkOptions ForwardKeySize ForwardURICompat ForwardDirectories
# JkRequestLogFormat set the request format
JkRequestLogFormat "%w %V %T"
# Static files in the neuroMor webapp are served by apache
Alias /neuroMor /usr/tomcat/apache-tomcat-5.5.15/webapps/neuroMor
# The following line prohibits users from directly access WEB-INF
<Location "/neuroMor/WEB-INF/">
AllowOverride None
deny from all
</Location>
#JkAutoAlias /usr/tomcat/apache-tomcat-5.5.15/webapps
# Send servlet for context /examples to worker named worker1
JkMount /index.jsp ajp13
# Send JSPs for conext /examples to worker named worker1
JkMount /* ajp13
I want to show neuroMor/index.jsp page when i give the url for
http://xyz.domain.edu without specifying any relative path name.
workers.properties
workers.tomcat_home=$CATALINA_HOME
workers.java_home=$JAVA_HOME
ps=/
worker.list=ajp13
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=ajp13
worker.inprocess.type=jni
worker.inprocess.class_path=$(workers.tomcat_home)$(ps)server$(ps)lib
worker.inprocess.cmd_line=start
worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)lib$(ps)
i386$(ps)server$(ps)libjvm.so
worker.inprocess.stdout=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stdout
worker.inprocess.stderr=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stderr
Everything is working just fine..all i want is to show my default page as my application index.jsp page.
-Many thanks for any kind of help
Sri

Similar Messages

  • Desperately in need of help restoring my photos from iPhone 3G!

    Hello All,
    This is the first time I've ever posted a question on the Internet and I am desperate.  I would go to an Apple Genius bar tomorrow if there was one near me...I really need to know if there is any way to restore the photos, list of contacts, etc. that I had stored on my iPhone 3G before I updated to iOS6.  I had hundreds of photos of my kids on my phone, then synced to my PC before updating.  I hadn't backed up anything, and am obviously not computer savvy at all and thought that the warning I saw meant that I needed to sync, not backup.  Are the photos gone forever? 
    I've been looking at the message boards but can't find the exact answer.  If someone could please help me I would be most appreciative. 
    Thank you so much. 
    PS - I also don't know what happened to the Apps I had...Shazam is gone and I'd really like it back.  YouTube app also gone.  All my music is gone too.  I want to cry.

    I found the following advice on one of the communities but it sounds a bit complicated and I'm wondering if this would work for me (not sure since I didn't backup).  Any thoughts?
    andrespibr
    Currently Being Moderated  Re: Photos gone after ios 5 update
    13-Oct-2011 5:57 AM (in response to jtamIsMe)
    Hey guys, i found a solution for our problem, at least it worked for me.
    1- Download Iphone Explorer (does not need to be a jailbroken device) http://www.macroplant.com/iphoneexplorer/
    2.) connect your iphone using the usb cable
    3.) launch iphone explorer
    4.) backup and then delete the following files:
    /Media/PhotoData/MISC/Info.plist
    /Media/PhotoData/Photos.sqlite (or /PhotoData/Photos.sqlite)
    /Media/PhotoData/PhotosAux.sqlite (or /PhotoData/PhotosAux.sqlite)
    5.) reboot your iphone
    After you reboot your device, windows will prompt if you wan to open your iphone on windows explorer as usual. After you open it, your photos are going to be there, just like it was before update.
    Resource: http://blog.mbentley.net/2010/06/iphone-ios-4-upgrade-restore-lost-pictures-in-c amera-roll/

  • Desperately in need of  help in Forte. Pleassee!!!

    please please help this is a simple error and I cannot get my way around it.
    java.io.BufferedReader dat1 = new java.io.BufferedReader(new java.io.FileReader("C:/Documents and Settings/s1.txt"));
    for(;;)
         java.lang.String line = data1.readLine();
         if(line == null) break;
         else
    try{
    int in1 = Integer.parseInt(line);
    catch(NumberFormatException nfe){
    System.out.println("File does not contain a number");
    //System.out.println(Dint_1);
    data1.close();
    System.out.println("done");
    catch(java.io.IOException e){
    System.out.println("Err "+e);
    I wrote this code to get a number out of a file and it is goingf horribly wrong with the string to integer conversion.
    i get two errors and everything I have tried has not worked.
    update.java [169:1] '.class' expected
    int dint1 = Integer.parseInt(line);
    ^
    update.java [169:1] not a statement
    int dint1 = Integer.parseInt(line);
    ^
    2 errors
    Errors compiling Lost_Update.

    I managed to solve most of it now but need help in getting the Err java.lang.NumberFormatException: null to go away.
    I think it is now down to the file reading the terminating character thus giving me the following error. Could anyone please tell me what to do about this. I think i need the trim() method.

  • I lost my IPhone need your help with a question ty

    I just lost my iphone on Nov. 17th, 07 and i just wonder does iphone has Satellite positioning function, if it does can i use serial and IMEI number to find where it is or they are both not related, any suggestions will be great thank you for paying attention.

    What is really unfortunate is that, if the phone is turned on, the carrier DOES know (within some area) where the phone is located. All carriers have a system for doing so, whether it is GPS enabled, or triangulation based on distance from the cell towers.
    Unfortunately, AT&T is not in the business of helping its customers track down lost phones.
    Oh so frustrating.

  • Need urgent help on these questions

    Q1. What are some of the important ways in which development that is done in connection with building and supporting a software product differs from development of internal applications used for only one business or group of users.
    Q2. what software are patterns are, why they are considered by many to be beneficial when used in connection with software development, and name as many different software patterns as you have heard of, or been exposed to. It is not necessary to describe or explain how any of the particular patterns work.
    Q3. what is the difference between a software framework and a software class library.

    A1. When you're building a software product for external users, you want to hide the bugs as well as possible so that even the tech support personnel are unaware of them; when coding in-house applications, it's better to document the bugs so that the management team can see that you've got a good grasp of the subject.
    A2. Software patterns most commonly occur in screen saver programs, but can be found elsewhere in computer applications. The famous MS solitaire game makes good use of the 1-7 pattern (sometimes erroneously referred to as the 7-1 pattern, or the Klondike pattern); the fact that the pattern "morphs" into different shapes as cards are moved is a good example of polymorphism (using that word should get some extra credit points!).
    A3. A software framework refers to the structure at Fry's that holds the software packages in place; a software class library refers to the small corner of the public library where general computer classes are held, usually using "XXX for Dummies" as the required text.
    Rich

  • Error when rendering! Desperately in need of help!

    Just out of nowhere I´m getting this error when rendering in a ProRes project:
    "Codec not found. You may be using a compression type without the corresponding hardware card"
    I have done nothing with my setup and have never had problems with this before. What can I do to fix this?

    I started getting this error after exporting prores 422 (and 422 HQ) files from AE and dropping them into FCP. It happened a couple of days ago, right after I updated to QT 7.6.2. i checked out the details on the QT update and the update seems to focus on prores 422 functionality. so i think your theory about this having something to do with the update is spot on.
    my solution was to export out of AE using photo-jpeg. it's pretty close to identical on the visual and color correctable if not. this project has the flexibility for this type of codec switch since everything originates in AE -- you may not have that flexibility.

  • Desperately in need of help regarding GS70 2PE Stealth Pro fans

    Hi
    The fans have become unbearably loud lately, as in resembling a plane engine.
    I noticed that the fans on the stealth pro is strongly attached to the heatsink (i think, the with the copper-looking texture) and i was wondering if it is safe to separate them, to change the parts or at least take a closer look at, and if it is easily re-attachable.
    Thanks

    According to the following video, it seems that it's impossible to separate the cooper part and the fan .
    https://www.youtube.com/watch?v=PitR1QFZ91c
    I guess that you can use a laptop cooler , clear the fan or renew ec firmware. 

  • Help needed to loadjava apache poi jars into oracle database.

    Help needed to loadjava apache poi jars into oracle database. Many classes left unresolved. (Poi 3.7, database 11.1.0.7). Please share your experience!

    Hi,
    The first 3 steps are just perfect.
    But with
    loadjava.bat -user=user/pw@connstr -force -resolve geronimo-stax-api_1.0_spec-1.0.jar
    the results are rather unexpected. Here is a part of the log file:
    arguments: '-user' 'ccc/***@bisera7-db.dev.srv' '-fileout' 'c:\temp\load4.log' '-force' '-resolve' '-jarsasdbobjects' '-v' 'geronimo-stax-api_1.0_spec-1.0.jar'
    The following operations failed
    resource META-INF/MANIFEST.MF: creation (createFailed)
    class javax/xml/stream/EventFilter: resolution
    class javax/xml/stream/events/Attribute: resolution
    class javax/xml/stream/events/Characters: resolution
    class javax/xml/stream/events/Comment: resolution
    class javax/xml/stream/events/DTD: resolution
    class javax/xml/stream/events/EndDocument: resolution
    class javax/xml/stream/events/EndElement: resolution
    class javax/xml/stream/events/EntityDeclaration: resolution
    class javax/xml/stream/events/EntityReference: resolution
    class javax/xml/stream/events/Namespace: resolution
    class javax/xml/stream/events/NotationDeclaration: resolution
    class javax/xml/stream/events/ProcessingInstruction: resolution
    class javax/xml/stream/events/StartDocument: resolution
    class javax/xml/stream/events/StartElement: resolution
    class javax/xml/stream/events/XMLEvent: resolution
    class javax/xml/stream/StreamFilter: resolution
    class javax/xml/stream/util/EventReaderDelegate: resolution
    class javax/xml/stream/util/StreamReaderDelegate: resolution
    class javax/xml/stream/util/XMLEventAllocator: resolution
    class javax/xml/stream/util/XMLEventConsumer: resolution
    class javax/xml/stream/XMLEventFactory: resolution
    class javax/xml/stream/XMLEventReader: resolution
    class javax/xml/stream/XMLEventWriter: resolution
    class javax/xml/stream/XMLInputFactory: resolution
    class javax/xml/stream/XMLOutputFactory: resolution
    class javax/xml/stream/XMLStreamReader: resolution
    resource META-INF/LICENSE.txt: creation (createFailed)
    resource META-INF/NOTICE.txt: creation (createFailed)
    It seems to me that the root of the problem is the error:
    ORA-29521: referenced name javax/xml/namespace/QName could not be found
    This class exists in the SYS schema though and is valid. If SYS should be included as a resolver? How to solve this problem?

  • I need to reset my security questions but when I send an email to the rescue email it doesn't get to me its the wrong email. help?

    iTunes wont let me download any music and I have over $20 on my account. It says I need to answer my security questions but I don't know the answers. When I try to send an email to the rescue email, it doesn't work. It says the email starts with an "h" but none of my emails start with an "h". I also don't know how to edit the email. Someone please help!

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (111154)

  • I need to reset my security questions however there is no option to send a reset link to email address anyone help?

    I need to reset my security questions however there is no option to send a reset link to email address anyone help?

    Go to https://getsupport.apple.com ; click 'See all products and services', then 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Forgotten Apple ID security questions'.

  • I forgot secret questions to enter the account I need to help me put back on the questions and answers them  Your brother Mohammed Al-Ghamdi

    I forgot secret questions to enter the account But I know the PIN number to my account I need to help me put back on the questions and answers them
    Your brother Mohammed Al-Ghamdi

    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
      Or Email Here  >  Apple  Support  iTunes Store  Contact
    NOTE:
    It is not wise to post personal information on a Public forum. I have asked the Hosts to remove your Account Details and Phone Number.

  • Need QT help/ questions

    I've been using macs for a while, but need some help with qt7pro. These are really basic questions I'm sure, but I haven't used QT in a long time, other than watching a trailer or clicking on something a friend has sent.
    Whenever I try to open a QT mov, or doc, iTunes opens to play whatever trailer, slideshow, etc. is this a settings problem for me or is QT no longer a stand alone app?
    I have installed the QT Pro 7 key, but QT player opens.
    Often when I click on someone else's posted QT link, I get a page in my browser - Safari, CAmino, with the QT Q with a ?.
    It seems like in QT6, I always had the independent QT app launch, and I haven't seen that with QT7.
    TIA,
    Les Owens
    Bath, NC

    Many of the new trailers and the new iPod (.m4v) format are designed to use iTunes instead of the QuickTime Player.
    If the file is on your computer you can use the Get Info window to change the default "Open With" app. If you Control-Click (right click) on the file you can choose QuickTime from the Open With pop-up menu.
    Can you post a link to a page that gives you the QuickTime logo with the ?

  • Some question about 9iAs R1.2.2 & R2, need your help:

    Some question about 9iAs R1.2.2 & R2, need your help:
    Since 2000, we has used 9iAS Core (R1.2.2) to publish our website. The platform is Suns Solaris (SPARC). The database is Oracle 8i. But there are so many questions:
    1.     The Web Cache cant be installed well
    2.     The web pages use JSP to query database with SQL show errors when we refresh the page a few times. The error will disappear after restarting the 9iAS or refreshing the page again. On the other hand, the same pages dont show error on resin. The error is java.sql.SQLException : Closed Connection: next. I supposed that the connection of database has some hidden troubles, but I can find it, could you give me some advice.
    Now I have installed 9iAS R2, But when I visited the manage page, I found that a password is needed to visit the web cache manage page. I dont think I have set the password, and then I cant control the web cache. I want to know is a default password occurred? If not, what is the password.

    The default password for Web Cache is: administrator
    See walkthrough on the sample code page: http://otn.oracle.com/sample_code/products/ias/content.html
    HTH,
    Ashesh Parekh
    Oracle9iAS product management

  • My old Apple ID is still showing when i need to reset my security questions. And i am not able to buy on music on iTunes. someone help?!

    My old Apple ID is still showing when i need to reset my security questions. And i am not able to buy music on iTunes. someone help?!

    All apps, all paid and free apps include DRM protection which is tied to the iTunes account/Apple ID that was used to download the apps. You will need to use the Apple ID that was used to download the apps to install app updates.
    Apps downloaded with one Apple ID can't be transferred to another ID and accounts can't be merged.

  • HT5312 Hi I forgot my security question how I can rest becouse I was going APP this massage pop of in the app page I benn buying app in this iPod may time they are say for first time you are buying apps in iPod pls I need your help to resist my security q

    Hi I forgot my security question how I can rest becouse I was going APP this massage pop of in the app page I benn buying app in this iPod may time they are say for first time you are buying apps in iPod pls I need your help to resist my security question

    The Three Best Alternatives for Security Questions and Rescue Mail
         1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
         2.  Call Apple Support in your country: Customer Service: Contact Apple support.
         3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

Maybe you are looking for