google app engine service unavailable

15,186

Solution 1

Found the answer. I need to run in JDK1.6. Once i changed the Java Compiler(right click project -> properties -> Java Compiler -> (Check) Enable project specific settings -> change the Compiler compliance level), its works fine now. Thanks.

Solution 2

I had the same problem. I justed changed the port from 8888 to 80 in the Debug Configuration and it worked for me.

Solution 3

When using Java 1.7, also check for the Execution Environment and set it to JavaSE-1.7.

You can look into the Execution Environment in:

Right Click -> Properties -> Java Compiler

And you have the option above Restore Defaults and Apply.

Solution 4

I had the same issue. for me the problem was one of my filters had an exception. specifically objectify - it was not loaded properly. you can delete the filter and see if that's it

Share:
15,186

Related videos on Youtube

chinna_82
Author by

chinna_82

Updated on June 04, 2022

Comments

  • chinna_82
    chinna_82 almost 2 years

    I'm was following http://googcloudlabs.appspot.com/ tutorial to create new Google App Engine project. It throws me an error as per below when I try to run the from my local host, but when I deployed it working fine. (http://mynewcloudcom.appspot.com/). Please help.

    HTTP ERROR: 503
    Problem accessing /. Reason:
    SERVICE_UNAVAILABLE
    Powered by Jetty://
    

    Eclipse Console

    Mar 05, 2012 10:42:46 AM com.google.apphosting.utils.jetty.JettyLogger info
    INFO: Logging to JettyLogger(null) via com.google.apphosting.utils.jetty.JettyLogger
    Mar 05, 2012 10:42:46 AM com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml
    INFO: Successfully processed C:\Smartag_Eclipse_Project\DontEditProject\war\WEB-INF/appengine-web.xml
    Mar 05, 2012 10:42:46 AM com.google.apphosting.utils.config.AbstractConfigXmlReader readConfigXml
    INFO: Successfully processed C:\Smartag_Eclipse_Project\DontEditProject\war\WEB-INF/web.xml
    Mar 05, 2012 6:42:48 PM com.google.appengine.tools.development.DevAppServerImpl start
    INFO: The server is running at http://localhost:8888/
    Mar 05, 2012 6:42:48 PM com.google.appengine.tools.development.DevAppServerImpl start
    INFO: The admin console is running at http://localhost:8888/_ah/admin
    
  • ZakTaccardi
    ZakTaccardi over 9 years
    how did you delete this filter? (I'm new to app engine)
  • yonojoy
    yonojoy over 8 years
    To temporarily delete the filter, edit web.xml, comment out <filter> and <filter-mapping>