Localhost:8080 doesnt work

hiiiiii
When I execute C:\jakarta-tomcat-4.1.30\bin\startup......
and try to open http://localhost:8080,,,,it didnt find the page......
I am not behind the proxy.....
If it is port problem...then suggest me how to change port no ....

Nope, that's the default port.
You should see the welcome page if you type http://localhost:8080 into the browser. From there you can log into admin or manager pages. This suggests that your install is bad.
What messages are written to the logs? How 'bout to the command shell?

Similar Messages

  • Tomcat in JWSDP - localhost:8080 doesnt work!

    Hi there,
    I am using tomcat 4.0 that comes with the Java Web Services Development Pack and I'm having a bit of a nightmare time with this.
    Basically when I goto http://localhost:8080/index.html, I get an error. When I use http://127.0.0.1:8080/ it goes to the index page, which is all well and good.
    After some research I located the "hosts.sam" file and "hosts" files and have made sure they contain the correct info and are in the right pace (i.e. C:\windows for win98). But still tomcat refuses to co-operate. Does anyone have any ideas about how to deal with this, esp given that its in the JWSDP.
    Many thanks
    JS

    Hi, raj cmu. I have ie 5.0 but I checked the 6.0 version on the pc of a collegue and I found the identical option "use automatic configuration script". I recap what you have to do to find it: when you are on the internet go to Tools - Internet Options - connections - LAN settings. There you should find that option. Hope I could help you. Let me know.

  • Localhost:8080 redirects to localhost.ie:8080

    Hi All,
    I am interested in learning more about webservices and have just install Sun Java System Application Server 8.
    After starting the server, I needed to see if the server and installation went ok. This is done by typing :
    http:localhost:8080 into the browser (internet explorer 6)
    HOWEVER when I do this I get redirected to localhost.ie:8080 which yields an error as it can't find localhost.ie.
    it only works if I use http:\\127.0.0.1:8080.
    where is it getting the "localhost.ie" part from. I cannot seem to find the configuration file to edit it and replace localhost.ie with localhost.
    can anyone help me here.
    kind regards,
    Will.

    You probably just need to update your hosts file to include an entry for localhost

  • What is the Username and Password of the localhost:8080 to login to Apex?

    I just installed the Oracle Application Express to or above SQL of Oracle DB 11g Enterprise Edition. It said it was successfull installation. But when I login to Apex admin, using Firefox browser, (localhost:8080/apex/apex_admin), the firefox browser ask for my Username and Password. I used SYS and my password when I installed Oracle DB 11g, it didn't work.
    Please help me solve this problem so that I continue learning Apex. Now I'm stuck.

    Hi,
    Does it ask XDB password?
    If yes, did you unlock ANONYMOUS account?
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21673/otn_install.htm#CHDEIGGI
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Opendoc : to pass  variable doesnt work

    hy,
    i want pass variable from one report to another
    i use this formula :
    "<a href='http://myserver:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Ad6ICMdlQV9ElilBHmITZpg&lsSpays=u201D[Pays]u201D&sRefresh=Y&sWindow=New'>detail</a>"
    pays is a prompt
    [pays] is my query object in a table
    when i clic on detail i want open detail report with prompt pays=value  line
    it's doesnt work my prompt is nul
    thank's
    Edited by: PHILIPPE REMIS on Oct 20, 2009 5:34 PM

    it's ok now

  • Straming video doesnt work.

    Streaming video doesnt work. Video in Skype is OK. Play locally stored video OK in MediaPlayer as well as iTunes. Downloaded Adobe Flash and Shockwave. Still no steraming after restart of PC.
    Firefox is upgraded.
    Windows XP home

    Hi,
    Can you please cross check the following :
    1. The rtmp URL is edited accordingly to point to the correct FMS server instead of localhost etc.
    2. The above code snippet should be bundled as an AIR app and published for iOS.
    If you are using HTTP instead of RTMP, you need to follow HLS streaming for iOS which makes use of the HTML5 video tags instead of any flash/AIR based applications. Please let us know if you are looking for this.
    Thank you !

  • Can anyone tell me why this doesnt' work please

    Be gentle :o)
    I am trying out this printing in version 1.4 I am wanting to print out the contents of a text file
    Below is the code but it does nothing
    It compiles but doesn't function??
    HELP
    import java.io.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class PrintFile {
         public static void main(String args[]) {
              PrintFile pf = new PrintFile();
         public PrintFile() {
              /* Construct the print request specification.
              * The print data is Postscript which will be
              * supplied as a stream. The media size
              * required is A4, and 1 copy are to be printed
              DocFlavor flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_HOST;
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              aset.add(new Copies(1));
              aset.add(Sides.TWO_SIDED_LONG_EDGE);
              aset.add(Finishings.STAPLE);
              /* locate a print service that can handle it */
              PrintService[] pservices =
                   PrintServiceLookup.lookupPrintServices(flavor, aset);
              if (pservices.length > 0) {
                   System.out.println("selected printer " + pservices[0].getName());
                   /* create a print job for the chosen service */
              DocPrintJob pj = pservices[0].createPrintJob();
                   try {
                        * Create a Doc object to hold the print data.
                        * Since the data is postscript located in a disk file,
                        * an input stream needs to be obtained
                        * BasicDoc is a useful implementation that will if requested
                        * close the stream when printing is completed.
                        FileInputStream fis = new FileInputStream("EventFile.txt");
                        Doc doc = new SimpleDoc(fis, flavor, null);
                        /* print the doc as specified */
                        pj.print(doc, aset);
                        * Do not explicitly call System.exit() when print returns.
                        * Printing can be asynchronous so may be executing in a
                        * separate thread.
                        * If you want to explicitly exit the VM, use a print job
                        * listener to be notified when it is safe to do so.
                   } catch (IOException ie) {
                        System.err.println(ie);
                   } catch (PrintException e) {
                        System.err.println(e);
    }

    I too find the same problem not locating all the print services, then i use defualt print service and it works, another error i was getting that of invalid flavor so i then get all the doc flavor supported by my printer and use AUTOSENSE. Following is the code that u can test:
    import java.io.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class PrintText1 {
         public static void main(String[] args) {
              System.out.println("Print Text");
              PrintText1 ps = new PrintText1();
         public PrintText1() {
              /* Construct the print request specification.
              * The print data is Postscript which will be
              * supplied as a stream. The media size
              * required is A4, and 2 copies are to be printed
              System.out.println(0);
              DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              aset.add(new Copies(1));
              aset.add(Sides.ONE_SIDED);
              //aset.add(Finishings.STAPLE);
              /* locate a print service that can handle it */
              System.out.println(1);
              PrintService defpservices = PrintServiceLookup.lookupDefaultPrintService();
              System.out.println("Default Printer " + defpservices.getName());
              /* create a print job for the chosen service */
              DocPrintJob pj = defpservices.createPrintJob();
              System.out.println(2);
              try {
                   * Create a Doc object to hold the print data.
                   * Since the data is postscript located in a disk file,
                   * an input stream needs to be obtained
                   * BasicDoc is a useful implementation that will if requested
                   * close the stream when printing is completed.
                   FileInputStream fis = new FileInputStream("file.txt");
                        Doc doc = new SimpleDoc(fis, flavor, null);
                        System.out.println(3);
                        /* print the doc as specified */
                        pj.print(doc, aset);
                        * Do not explicitly call System.exit() when print returns.
                        * Printing can be asynchronous so may be executing in a
                        * separate thread.
                        * If you want to explicitly exit the VM, use a print job
                        * listener to be notified when it is safe to do so.
              } catch (IOException ie) {
                   System.err.println("IOException " + ie);
              } catch (PrintException e) {
                   System.err.println("PrinterException " + e);
    Try this code it will work for you to print the text file.
    Now my problem is i am trying to print the html file and its printing the html file including all the html tags, can anybody help how can i be able to print only that area that viewable to user in the internet explorer and not all the html tags:
    Following is my code which i had written using servlet:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.util.Properties;
    import java.net.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class printServlet extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response)
              throws ServletException, IOException
              // Set the mime type
              response.setContentType("text/html");
              // Create a PrintWriter Object
              PrintWriter out = response.getWriter();
              /* Construct the print request specification.
              * The print data is HTMl which will be
              * supplied as a stream. The media size
              * required is A4, and 1 copies are to be printed
              System.out.println(0);
              //DocFlavor htmlFlavor = DocFlavor.URL.TEXT_HTML_US_ASCII;
              DocFlavor htmlFlavor = new DocFlavor("application/octet-stream", "java.net.URL");
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              aset.add(new Copies(1));
              aset.add(Sides.ONE_SIDED);
              /* locate a print service that can handle it */
              System.out.println(1);
              //PrintService[] pservices =
                   //PrintServiceLookup.lookupPrintServices(htmlFlavor, aset);
              PrintService pservices = PrintServiceLookup.lookupDefaultPrintService();
                   //System.out.println("Printer Length " + pservices.length);
                   //PrintService service = pservices[0];
              System.out.println("selected printer " + pservices.getName());
              DocFlavor[] sdf = pservices.getSupportedDocFlavors();
              System.out.println("Supported DocFlavors are: ");
              for( int r = 0; r < sdf.length; r++ )
                   System.out.println(sdf[r].toString());
              /* create a print job for the chosen service */
              String urlString = "http://localhost:8080/printengine/jsp/hello.html";
              URL url = new URL(urlString);
              DocPrintJob pj = pservices.createPrintJob();
              Doc doc = new SimpleDoc(url, htmlFlavor, null);
              out.println("<html><body>" + doc + "</body></html>");
              System.out.println(3);
              /* print the doc as specified */
              try
                   pj.print(doc, aset);
                   System.out.println(4);
                   * Do not explicitly call System.exit() when print returns.
                   * Printing can be asynchronous so may be executing in a
                   * separate thread.
                   * If you want to explicitly exit the VM, use a print job
                   * listener to be notified when it is safe to do so.
                   out.println("<html><body>Printing Successful</body></html>");
              catch (PrintException e)
                   System.err.println("PrinterException " + e);
    Please help me out

  • DNS error for localhost:8080 with Tomcat

    jdk1.2.2 is up and running and then I installed Tomcat on my Windows2000 PC.
    Then in a DOS window I did this:
    C:\Program Files\Apache Group\Tomcat 4.1\bin>startup
    And this display resulted:
    Using CATALINA_BASE: C:\Program Files\Apache Group\Tomcat 4.1\
    Using CATALINA_HOME: C:\Program Files\Apache Group\Tomcat 4.1\
    Using CATALINA_TMPDIR: C:\Program Files\Apache Group\Tomcat 4.1\\temp
    Using JAVA_HOME: C:\jdk1.2.2
    But I get "Cannot find server or DNS error" when I try
    http://localhost:8080/ or http://127.0.0.1:8080/admin
    Any suggestions would be appreciated.
    Thanks!

    Apparently the problem was caused by incompatibility between jdk1.2.2 and Tomcat4 as discussed in another topic on this forum.
    When I switched to a Tomcat3 version, everything worked fine.

  • Localhost:8080 won't start

    I am new to J2EE. I installed the J2EE 1.4 for Windows downloaded from SUN.
    I started the Default server successfully, and the http://localhost:8080 works. After a while, I finished my dinner, my computer (Windows XP) went to "Standby". When I get in again, and refresh the iexplore, it seems just hang there.
    I tried to stop the server, it seems hang there too ....? After I restart my computer, and then started the default server, the servers started ok, the message displayed are " .... ready to take request ...", but the http://localhost:8080 still doesn't work. I check the config files, the domain.xml files, the http port is actually 8080.
    What's going on? This takes me two days already. I restart my computer many times already.
    Help me please!!!!!!

    this is may happen if all the connection is not closed properly once you shutdown the server.
    My suggestion is Start the server and check the server log message for whether the http service is started or not.. Sometimes http port 8080 may be used by some other application also. if so, kill that application and start the server again.
    Even above is not working, then you can check the server status by running the command "asadmin list-domains" in the start-->Run--> cmd-->command prompt, if the server is running then do the below mentioned
    If running, then try to change the http port using the asadmin command mentioned in the asadmin document and restart the server.
    Hope this work
    Regards
    Moin

  • Localhost is not working

    HI Guys,
    We have multisite application with two urls
    If i use one of the url then i am able to run application properly
    ex :http://xxx.com:8080/contextRoot
    but if i give the url like this http://localhost:8080/contextRoot then i am getting
    Oops! Google Chrome could not connect to localhost:8080
    this error
    why its happening like this
    if i want to access with localhost what  we have to do

    SiteManager creates sitemap based on siterepository, So u don't need to worry mapping.
    The reason we use default site, so that If something goes wrong,we will atleast have one working site.
    for default site : atg\multisite\DefaultSiteRuleFilter :
                   defaultSiteId=mystore
                   enabled=true
    for site mapping : If u wish u can provide url mapping too(No need) in atg\multisite\URLPatternMatchingRuleFilter
              URLs=\localhost:7001/shop/mystore=mystore,localhost:7001/shop/mystore2=mystore2
    Enable virtual context root service so that ur virtual context root can be recognized by ATG. MUST DO for multisite
                   \atg\dynamo\service\VirtualContextRootService enabled=true
    Most common error: site is not enabled, change the property in siterepository.
    Now also if it's not working Provide see the logs :
    atg\sitemap\SitemapGeneratorService
    Try to debug the issue with logs, It will always be helpful.
    Thanks,
    Nitin.

  • HT2693 hello, HP LaserJet 400 colorMFP M475dw printers smtp mail client doesnt work. Bad username or password. everything is correct. Any idea?

    hello, HP LaserJet 400 colorMFP M475dw printers smtp mail client doesnt work. Bad username or password. everything is correct. Any idea?

    Solved, just had to change the hostname order in /etc/hosts (I need to correct this on the arch wiki) :
    Before :
    127.0.0.1 localhost.localdomain localhost BodyArch-PC
    ::1 localhost.localdomain localhost BodyArch-PC
    After :
    127.0.0.1 localhost.localdomain BodyArch-PC localhost
    ::1 localhost.localdomain BodyArch-PC localhost

  • Localhost:8080 for Tomcat causes Cycle Error

    I want to maintain a TomCat installation that is located at http://localhost:8080
    Everytime I go to it, I get the error:
    Cycle Detected
    Description: Your request is prohibited because it would cause a cycle.
    what gives with this ? Yes, I upgraded to FF 4 and so far its a pain.
    What the HELL happened to the status bar at the bottom of the page??!!

    Apparently the problem was caused by incompatibility between jdk1.2.2 and Tomcat4 as discussed in another topic on this forum.
    When I switched to a Tomcat3 version, everything worked fine.

  • MSI GF4 Ti-4200 doesnt work with WindowsXP

    I can't get the MSI display tools to work - it crashes,
    the vbios.dll doesnt load, it also crashes.
    the tv in doesnt work ,it crashes
    the tv out doesnt work ,it crashes.
    all the supplied software also crashes "application has encountered an error and cannot continue. sorry for any inconvenience"
    the intervideo software (windvr, wincoder, winproducer) and MSI PVI software all crashes as well.
    what's the deal with this stuff?  ?(
    I have a Dual AMD athlon Tyan thunder k7 motherboard,
    MSI Ti-4200-VTD video card and MSI tv anywhere card.
    is there any resolution for this?

    I'm sorry gfilitti if I don't have my system listed, but I thought my question was pretty simple...
    Has ANYONE been able to make the InterVideo WinProducer 2 software, that comes with the retail version of the MSI G4Ti4200-VTD64 card, work successfully under the Windows XP Home or Pro operating system?
    If the answer is YES, then I will begin investigating why my system can't.
    If the answer is NO, then I only ask for other people's recommendations of what software WILL work in place of that. I NEED those functions to work. That's why I paid extra for the VIVO.
    All we've heard so far in this thread are NO votes. I would like to see just how widespread this is. If I can find ONE person who claims it works fine on his/her computer under Windows XP, then my NEXT question would be if they had to do anything different to make it run, or was it just a straight install? Did they add the program patch available from the MSI website? See where I'm going with this?
    If you would REALLY like my system details, here ya go...
    ========================================
    CASE - ANTEC SX1000II with 4 internal 8cm fans
    POWER SUPPLY - ANTEC 400W "True Power" w/dual fans
    MOTHERBOARD - MSI 645E MAX (MS-6547 Ver 2.0)
    BIOS - AMI Ver 3.2 (10/21/02)
    PROCESSOR - PENTIUM 4 2.0aGHz (Rev/Step 2/4(9) )
    MEMORY - 1 Corsair 512MB DDR RAM (Winbond chips)
    DISABLED IN CMOS - FLOPPY Controller, AUDIO Device, MODEM Device, Serial Port B, MIDI Port, and GAME Port
    AGP SLOT - MSI G4Ti4200-VTD64 - IRQ 16
      DRIVER: MSI 31.00
      CAPTURE DRIVER -  nVidia 1.08
    SLOT 1 - Creative SB0090 Audigy Sound Blaster - IRQ 17
      DRIVER - Creative 3.0.0.18 9/20/02
    SLOT 1 - Creative SB1394 FireWire Controller - IRQ 18
      DRIVER - MS 5.1.2535.0 7/1/01
    SLOT 2 - NIC #1 D-Link DFE-530TX Ethernet - IRQ 18 (LAN)
      DRIVER - REALTEK RTL8139 5.396.0530.2001
    SLOT 3 - Adaptec 29160N Ultra160 SCSI Controller - IRQ 19
      DRIVER - Adaptec 6.2.0.0 3/19/2002
    SLOT 4 - EMPTY
    SLOT 5 - MSI SYSTEM D-Bracket
    SLOT 6 - NIC #2 NetGear FA312 Ethernet - IRQ 18
      DRIVER - Windows XP Pro native driver
    NOTE:
    NIC #1 is for home LAN
    NIC #2 is for Alcatel SpeedTouch External DSL modem
    SCSI DRIVES:
    ID 0 - COMPAQ (Seagate) ST318451LW, 18GB, 15K RPM
    ID 1 - QUANTUM Typhoon Atlas II, 18GB, 10K RPM
    ID 2 - Seagate ST39103LW, 9G, 10K RPM
    ID 3 - Plextor CD-RW PX-W1219S
    ID 4 - Toshiba DVD-ROM SD-M1201
    ID 5 - EPSON Perfection 1640SU Flatbed Scanner
    ATA/ATAPI DRIVES:
    Primary Master - No Connection
    Primary Slave - No Connection
    Secondary Master - MATSHITA LS-120 Ver F523
    Secondary Slave - No Connection
    USB DEVICES:
    DIAMOND SupraMAX 56K V.92 Model:SUP2920
    Generic Flash Memory programmer and other assorted USB devices on occasion.
    MONITOR - HITACHI SuperScan Pro 21 w/5-BNC input
    ========================================
    BTW, I would think when investigating a program's FLAT refusal to run, that the MOST important things aren't listed in these signature files. It has to do with what ELSE is running at the same time. Which services are running and which are NOT? What memory resident programs are loaded at boot-up? Any service packs installed? How about any security patches from Microsoft? Which anti-virus software (if any)? Which DirectX version? Personal firewall? Etc., etc.
    Granted, the hardware DOES have a factor, but I feel all of these are MORE important factors than the speed or brand of a persons hardware. I look at the signitures more as bragging rights than anything else.
    Now, this is just my opinion and may not reflect the feelings of the more sane people around me.  
    Cheers!

  • Macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again

    macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again lik it did before

    If you have records that show that you've taken your MacBook Pro in for a year to fix the machine, I would escalate the problem to Apple Customer Relations - unfortunately I don't have a number for Spain.
    It would only seem logical to me that if you've been trying to have the machine repaired during the time that the 'recall' was in effect that you should be eligible for a new logic board. But only customer relations will be able to make that call.
    Good luck - take the issue as high up the food chain as you can and see what happens.
    Clinton

  • On Safari, ipad connects to the internet.  But when in applications such as Keynote, I try to e-mail presentattion it doesnt work.

    I am a teacher and have my own iPad with a data plan.  We also have a router in teh classroom for wifi, and it has a very strong signal.  On Safari, the ipads can connect to the internet.  But when in applications such as Keynote and HTML Egg, I try to e-mail presentat. or post website to web, it doesnt work.  I tried re-setting the proxies and the router, no luck.  Please Help!  I am a teacher and want my students to be able to post their websites on to the web, and e-mail themselves and their parents their Keynote Presentations.

    Try this. Turn your iPad Off. Then disconnect the power going to the router for 30 seconds or longer. Then replug the power to the router (allow it to initialize) and turn On the iPad. Hopefully everything will connect. If not, see below.
    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

Maybe you are looking for

  • How to find out web-inf path from the physical drive?

    How to find out web-inf path from the physical drive? I have some user profiles in web-inf directory.SO I want to know the path from root directory like d:/program files/allaire/jrun/appname/web-inf/profiles/username like that. Presently I am able to

  • HT4993 my iphone4 says searching in the top left corner how do i get it to stop and get my service back?

    my iphone4 says searching in the top left corner and i can not make calls or get calls how do i fix it so i have my service back

  • Is CS2 compatible with windows 8

    I have just purchaeed a new windows 8 PC and I'm having problems installing my CS2. Is CS2 compatible with windows 8. It won't let me intall into the programs (x86) folder. I have manually put a Adobe folder into the programs (x86) folder and install

  • Is there any field on waste packaging information in MM03

    Please help me in finding any field on waste packaging information in MM03. If it is there please let me know in which view we can find it, if not let me know where else i can find information on Waste packaging.

  • Adding a background?

    Okay, so I have designed a simple layout in PS. The image is the header, navigation bar, and background for the entire site all wrapped into one image. I would like to make this the background for my site and be able edit the regions where the backgr