Workshop 3.3 + Liferay 4.1.3 (Tomcat bundle) portal not starting

I downloaded the Liferay Portal Professional 4.1.3 (Bundled with Tomcat for JDK 5.0) available at http://www.liferay.com/web/guest/downloads. I installed it on a an Eclipse 3.2.1 SDK and was able to successfully start deploy a portlet to it.
I then added the server runtime in BEA Workshop and added a new server to use this runtime and added my portlet project to it. When I try to start the server I get the dreaded "An internal error occurred during: ..." error dialog. Here is the contents of the log file:
!ENTRY org.eclipse.core.jobs 4 2 2006-12-05 22:04:40.468
!MESSAGE An internal error occurred during: "Starting server - liferay-portal(tomcat)-v4.1.1 1".
!STACK 0
java.lang.NullPointerException
     at com.bea.wstudio.debugger.WorkshopTomcatLaunchConfigurationDelegate.launch(Unknown Source)
     at com.bea.wstudio.debugger.WebAppServerLaunchConfigurationDelegate.launch(Unknown Source)
     at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:639)
     at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:565)
     at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:558)
     at org.eclipse.wst.server.core.internal.Server.start(Server.java:1226)
     at org.eclipse.wst.server.core.internal.Server.synchronousStart(Server.java:1611)
     at org.eclipse.wst.server.core.internal.StartServerJob.run(StartServerJob.java:34)
     at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
The server does not start. My initial guess is this has to do with some weird combination of the Liferay Tomcat bundle and BEA Workshop Studio. I am wondering if anyone else can try this and let me know if they have successfully got this to work.
Thanks in advance for any help.
-sud

Ok...I lied....
I also get this error on the Session Example Servlet that is packaged with Tomcat.....
-a

Similar Messages

  • Jenkins not deploying on Tomcat; SSH Service not starting

    So I've had a couple of problems happening. My first problem is that even though sshd.service and sshd.socket are enabled with systemctl, it does not automatically start. There are no errors reported in journalctl, it just does not start. When issuing systemctl status sshd.service and systemctl status sshd.socket, there is nothing to report. Once I manually start them, there are no errors reported, and everything works as expected.
    sshd.socket
    [Unit]
    Conflicts=sshd.service
    Wants=sshdgenkeys.service
    [Socket]
    ListenStream=22
    Accept=yes
    [Install]
    WantedBy=sockets.target
    sshd.service
    [Unit]
    Description=OpenSSH Daemon
    Wants=sshdgenkeys.service
    After=sshdgenkeys.service
    After=network.target
    [Service]
    ExecStart=/usr/bin/sshd -D
    ExecReload=/bin/kill -HUP $MAINPID
    KillMode=process
    Restart=always
    [Install]
    WantedBy=multi-user.target
    # This service file runs an SSH daemon that forks for each incoming connection.
    # If you prefer to spawn on-demand daemons, use sshd.socket and [email protected].
    The second problem is my tomcat service. It won't start the Jenkins. I've linked the jenkins.war file to the webapps folder. When I start tomcat using systemctl start tomcat8, this is the output of journalctl -xn
    -- Logs begin at Sat 2014-08-30 06:46:59 PDT, end at Sun 2014-09-14 15:45:38 PDT. --
    Sep 14 15:45:15 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:15 PM org.apache.coyote.AbstractProtocol stop
    INFO: Stopping ProtocolHandler ["http-nio-8080"]
    Sep 14 15:45:16 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:16 PM org.apache.coyote.AbstractProtocol stop
    INFO: Stopping ProtocolHandler ["ajp-nio-8009"]
    Sep 14 15:45:16 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:16 PM org.apache.coyote.AbstractProtocol destroy
    INFO: Destroying ProtocolHandler ["http-nio-8080"]
    Sep 14 15:45:16 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:16 PM org.apache.coyote.AbstractProtocol destroy
    INFO: Destroying ProtocolHandler ["ajp-nio-8009"]
    Sep 14 15:45:27 localhost systemd[1]: [/usr/lib/systemd/system/systemd-journal-upload.service:20] Unknown lvalue 'After' in section 'Install'
    Sep 14 15:45:38 localhost systemd[1]: Failed to reset devices.list on /system.slice: Invalid argument
    Sep 14 15:45:38 localhost jsvc[28476]: Cannot locate Java Home
    Sep 14 15:45:38 localhost systemd[1]: tomcat8.service: control process exited, code=exited status=1
    Sep 14 15:45:38 localhost systemd[1]: Failed to start Tomcat 8 servlet container.
    -- Subject: Unit tomcat8.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit tomcat8.service has failed.
    -- The result is failed.
    Sep 14 15:45:38 localhost systemd[1]: Unit tomcat8.service entered failed state.
    Here is the tomcat8.service file before my changes, as suggested here
    [Unit]
    Description=Tomcat 8 servlet container
    After=network.target
    [Service]
    Type=forking
    PIDFile=/var/run/tomcat8.pid
    Environment=CATALINA_PID=/var/run/tomcat8.pid
    Environment=TOMCAT_JAVA_HOME=/usr/lib/jvm/java-7-openjdk
    Environment=CATALINA_HOME=/usr/share/tomcat8
    Environment=CATALINA_BASE=/usr/share/tomcat8
    Environment=CATALINA_OPTS=
    ExecStart=/usr/bin/jsvc \
    -Dcatalina.home=${CATALINA_HOME} \
    -Dcatalina.base=${CATALINA_BASE} \
    -Djava.io.tmpdir=/var/tmp/tomcat8/temp \
    -cp /usr/share/java/commons-daemon.jar:/usr/share/java/eclipse-ecj.jar:${CATALINA_HOME}/bin/bootstrap.jar:${CATALINA_HOME}/bin/tomcat-juli.jar \
    -user tomcat8 \
    -java-home ${TOMCAT_JAVA_HOME} \
    -pidfile /var/run/tomcat8.pid \
    -errfile SYSLOG \
    -outfile SYSLOG \
    $CATALINA_OPTS \
    org.apache.catalina.startup.Bootstrap
    ExecStop=/usr/bin/jsvc \
    -pidfile /var/run/tomcat8.pid \
    -stop \
    org.apache.catalina.startup.Bootstrap
    [Install]
    WantedBy=multi-user.target
    And after
    [Unit]
    Description=Tomcat 8 servlet container
    After=network.target
    [Service]
    Type=forking
    PIDFile=/var/run/tomcat8.pid
    Environment=CATALINA_PID=/var/run/tomcat8.pid
    Environment=TOMCAT_JAVA_HOME=/usr/lib/jvm/java-7-openjdk
    Environment=CATALINA_HOME=/usr/share/tomcat8
    Environment=CATALINA_BASE=/usr/share/tomcat8
    Environment=CATALINA_OPTS=-DJENKINS_HOME=/usr/share/java/jenkins
    ExecStart=/usr/bin/jsvc \
    -Dcatalina.home=${CATALINA_HOME} \
    -Dcatalina.base=${CATALINA_BASE} \
    -Djava.io.tmpdir=/var/tmp/tomcat8/temp \
    -cp /usr/share/java/commons-daemon.jar:/usr/share/java/eclipse-ecj.jar:${CATALINA_HOME}/bin/bootstrap.jar:${CATALINA_HOME}/bin/tomcat-juli.jar \
    -user tomcat8 \
    -java-home ${TOMCAT_JAVA_HOME} \
    -pidfile /var/run/tomcat8.pid \
    -errfile SYSLOG \
    -outfile SYSLOG \
    $CATALINA_OPTS \
    org.apache.catalina.startup.Bootstrap
    ExecStop=/usr/bin/jsvc \
    -pidfile /var/run/tomcat8.pid \
    -stop \
    org.apache.catalina.startup.Bootstrap
    [Install]
    WantedBy=multi-user.target
    EDIT:
    The SSHD problem is fixed. I read more closely at the sshd.socket config, and it clearly states it conflicts with sshd.service. I disabled service and everything works fine. But I am still having trouble getting Jenkins to work with Tomcat.
    Last edited by ZMoore (2014-09-15 00:33:18)

    Thank you, but the problem is a little different from that. These are
    exploded web apps outside the applications dir. I deployed them
    through the console initially; on the other servers, when WL restarts,
    the apps are deployed back to their targets just fine. It's only this
    box that loses sense of the targets on WL restart.
    We're on 6.1, so a few people have suggested upgrading to 6.1 sp4 --
    they've said they've seen this problem, and the sp corrects it.
    That said, this is a production box and upgrading it is a hassle. I'll
    get started on scheduling that, but if anyone has any ideas in the
    meantime, I'd greatly appreciate it. If not, thanks anyway. :)
    Rob
    "Deepak Vohra" <[email protected]> wrote in message news:<3eebae8e$[email protected]>...
    WLServer should start in development mode for a application
    in the applications dir to deploy.
    STARTMODE=false
    [email protected] (Rob Young) wrote:
    On one of our production servers (just one), when I restart weblogic,
    my web applications are not deploying; I have to deploy them manually.
    This is bad, obviously, because the server won't restore properly
    after a restart.
    After a while, I get target="box,box,box,box" that represents the
    multiple times I've deployed that application to the target "box".
    From config.xml:
    <Application Deployed="true" Name="revx" Path="F:\revx">
    <WebAppComponent Name="revx"
    Targets="giocm,giocm,giocm,giocm,giocm,giocm,giocm"
    URI="revx"/>
    </Application>
    The operating system is Windows 2000 5.00.2195 ... everything was
    working fine until I re-installed the Windows service this weekend.
    I've checked permissions on the folder, on the file, and who the
    service is running as. I've manually edited config.xml to remove the
    duplicate target entries.
    I've seen some other posts from people who have also experienced
    applications not deploying on WL restart, but I don't see any
    resolutions.
    Rob

  • Tomcat service will not start with JRockit 8.0

    We are trying to use JRockit with Tomcat 4.0.1. It runs great as a console app
    but when we try to run it as a service it will not start. Has anyone had any luck
    with this.

    Hi Bob!
    You can use the jk_nt_service descibed and downloadble at
    http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/
    To make this work on JRockit you have to follow these instrcutions.
    But also do this:
    Make sure that you environment variables are set up correctly. Make sure
    that
    you have set your JAVA_HOME environment variable correctly, and that that
    "%JAVA_HOME%\bin" is available in your PATH environment variable before any
    other directory where any version of java.exe may exist. When running
    applications as Windows services it is crucial that you set these
    environment
    variables system wide. To do this open
    Start->Settings->Control Panel->System
    and select the Advanced tab. Click on the "Environment Variables." button.
    To
    set system wide environment variables you must edit in the lower part of
    this
    dialog, i.e. the part called System variables.
    When using jk_nt_service the Tomcat startup is defined in
    %CATALINA_HOME%\conf\jk\wrapper.properties
    Make sure that you set the three properties wrapper.tomcat_home,
    wrapper.java_home and wrapper.cmd_line are set accordingly.
    wrapper.tomcat_home must be set with the installation directory of tomcat
    wrapper.java_home must be set to the same value as the JAVA_HOME environment
    variable.
    The property wrapper.cmd_line defines the startup command.
    At the time of writing, this property should be set to
    wrapper.cmd_line=$(wrapper.javabin) -Xnohup
    -Djava.security.policy=="$(wrapper.tomcat_policy)"
    -Dtomcat.home="$(wrapper.tomcat_home)" -classpath $(wrapper.class_path)
    $(wrapper.startup_class) -config $(wrapper.server_xml) start
    for JRockit. Normally this command includes a non-standard option to stop
    the
    JVM from shutting down the process when a user logs off. For JRockit this
    non-standard option is -Xnohup, for the Sun JVM it is -Xrs.
    / Sten
    "Bob Siragusa" <[email protected]> wrote in message
    news:[email protected]...
    Thanks for your reply Sten.
    We slightly modified tomcat.exe to install our app as a service.
    Really the only changes we made were to the name of the service and weadded a
    few application parameters with -D. We still use the same startup andshutdown
    hooks to the Bootstrap jar. This is where we think there may be a
    problem.
    >>
    I am now trying to use SilverEgg Technologies open source Java ServiceWrapper
    but have not progressed very far yet.
    Bob
    "Sten Garmark" <[email protected]> wrote:
    Hi Bob!
    Are we talking Tomcat controlled by a Windows Service? If so, how are
    you
    trying to make this happen?
    Can you please point me to the documentation of this and the win32
    wrapper
    service that you are using?
    I would like to be able to re-produce your problem.
    / Sten
    "Bob Siragusa" <[email protected]> wrote in message
    news:[email protected]...
    We are trying to use JRockit with Tomcat 4.0.1. It runs great as aconsole
    app
    but when we try to run it as a service it will not start. Has anyonehad
    any luck
    with this.

  • TOMCAT Application does not start

    HI Guys,
    I have installed BOE 3.1 .
    Somehow TOMCAT application is not running.
    Can anyone tell me what could be the reason?
    Regards

    Hi,
    check the supported platforms Guide for BOE XI 3.1 SP2 on Windows here:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/402db6eb-845d-2c10-a38c-aafde85ec769?quicklink=index&overridelayout=true
    Please use a supported Server OS for your testings ad see it four error still exist on it.
    Regards
    -Seb.

  • Error : Apache tomcat 5.5 not starting with windows server 2003 32 bits

    I can not start Tomcat 5.5 installed and deployed from the Business Objects BI Edge 3.1.
    BO installs normally, but Tomcat does not start.
    I tried to start tomcat from the control panel -> administrative tools -> services. But also not start.
    You receive the following message: Windows could start in Apache Tomcat 5.5.20 on the local computer.
    The log is:
    06/05/2011 10:22:37 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 10:22:37 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 10:22:37 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 10:28:42 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 10:28:42 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 10:28:42 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 10:30:40 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 10:30:40 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 10:30:40 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 13:43:16 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 13:43:16 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 13:43:16 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 13:43:20 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 13:43:20 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 13:43:20 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 13:53:58 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 13:53:58 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 13:53:58 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 14:00:16 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 14:00:16 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 14:00:16 http://prunsrv.c 1179 error ServiceStart returned 2
    06/05/2011 14:00:45 http://409 javajni.c error Failed CreateJavaVM
    06/05/2011 14:00:45 http://930 prunsrv.c error Failed initializing java C: \ Program Files \ Business Objects \ Tomcat55 \ bin \ bootstrap.jar; C: \ Program Files \ Business Objects \ javasdk \ lib \ tools.jar
    06/05/2011 14:00:45 http://prunsrv.c 1179 error ServiceStart returned 2
    Help me, what should I do?

    hi
    By default the BO install tomcat with:
    Initial memory pool: 0 and
    Maximum memory pool: 1024
    I changed the settings in the Tomcat to:
    Tomcat -> Tomcat configuration -> java>
    Initial memory pool: 128 and
    Maximum memory pool: 256
    Then I accessed services.msc and start the Apache Tomcat.

  • Ciscoworks Tomcat service will not start

    Hi All,
    The Ciscoworks Tomcat Servlet Engine service on our server is not starting even if the start-up type is set to Automatic or Manual. With this, I cannot login to the Ciscoworks homepage since the "page cannot be displayed" screen appears when I click on the Ciscoworks icon. When I force the Tomcat service to Start, I get a pop-up error stating:
    "Could not start the Ciscoworks Tomcat Servlet Engine service on Local Computer. Error 1067:The process terminated unexpectedly."
    Any idea how to resolve this? Appreciate your response. Thanks!

    First, the service must always be set to Manual start. If you have changed it to Automatic, change it back, and reboot. Then post the NMSROOT/MDC/tomcat/logs/stdout.log and stderr.log along with any relevant events in the Windows Event Viewer.

  • Tomcat service does not start on Win2003

    Friends,
    I installed Apache Tomcat on Win2003 (after changing the installer to XP compatible mode). The installation went through without any visible errors. But when i try to start the Tomcat server, but it throws an error message "The Apache Tomcat service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service."
    I looked at the stderr.log file under the Tomcat/log folder. It says "java.lang.NoClassDefFoundError: org/apache/catalina/startup/Bootstrap
    Exception in thread "main"
    I am not having any problems in Win2K and XP. The installation works just fine.
    Any suggestions/feedback is appreciated.
    Thank you.
    Pat

    In the installation script you'll see that java.class.path has to be given to the service. There should be three JAR files:
    bootstrap.jar in the TOMCAT_HOME/bin directory
    servlet-api.jar in the TOMCAT_HOME/common/lib directory
    tools.jar in the JAVA_HOME/lib directory.
    Sounds like the service installation missed bootstrap.jar. Uninstall the service, modify the script to pass a parameter like this to the JVM:
    -Djava.class.path=TOMCAT_HOME/bin/bootstrap.jar;TOMCAT_HOME/common/lib/servlet-api.jar;JAVA_HOME/lib/tools.jarJust one caveat: they switched from JavaService to the new Jakarta Daemon class for implementing the service when they went from Tomcat 4.1 to 5.0. Things might be a little different.

  • Tomcat server is not running automatically

    Hi BO experts,
    I have installed SAP Business Objects XI 3.1 in my system and noticed that Tomcat server is not running in Central Configuration Manager where the status is "Stopped". If I start manually also it's not starting (In properties, the startup type is - Automatic).
    So I went this path "E:\Program Files\Business Objects\Tomcat55\bin" and double clicked "startup.bat" then I am able to login into Infoview. Could please someone explain that is there any possible way to run Tomcat automatally so that i do not need to start up manually every time?
    Thanks in advance!!

    I'm assuming that whoever installed the Apex Listener installed it under the Apache Tomcat application server. This isn't officially supported by Oracle, but it does work. You start Tomcat by executing "startup.bat" in its bin directory on Windows or "startup.sh" on Linux or other Unix-like OSes. In Windows, it will keep running as long as the command window is open (but you can minimize it) or I believe there is a way to set it up as a service - I'm not a Windows guru. In *nix, you can add an ampersand to the command to keep it running in background, or set it up to run as a daemon.
    Altogether, you probably need someone to learn more about how to run Tomcat if the person who set it up for you is no longer available. There is plenty of information on-line - just use Google or Bing.

  • Tomcat not starting up!

    i had tomcat installed and running until i installed the sun java studio creator.
    when i did that, tomcat would not start! i tried removing it and reinstalling it on port 8085 (i thought it would conflict with the studio creator's port number) but it's still not starting.
    help

    the only log that is on the /logs folder is this
    localhost_examples_log.2006-11-10.txt
    which contains
    2006-11-10 13:08:30 WebappLoader[/examples]: Deploying class repositories to work directory C:\Apache Group\Tomcat 4.1\work\Standalone\localhost\examples
    2006-11-10 13:08:30 WebappLoader[/examples]: Deploy class files /WEB-INF/classes to C:\Apache Group\Tomcat 4.1\webapps\examples\WEB-INF\classes
    2006-11-10 13:08:30 WebappLoader[/examples]: Reloading checks are enabled for this Context
    2006-11-10 13:08:30 ContextConfig[/examples] Parse error in default web.xml
    java.lang.ClassNotFoundException: org.apache.catalina.Container
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2540)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2566)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1061)
         at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.endNamespaceScope(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1548)
         at org.apache.catalina.startup.ContextConfig.defaultConfig(ContextConfig.java:487)
         at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:578)
         at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
         at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
         at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
    2006-11-10 13:08:30 ContextConfig[/examples]: Occurred at line 60 column 15
    2006-11-10 13:08:30 ContextConfig[/examples] Parse error in application web.xml
    java.lang.ClassNotFoundException: org.apache.catalina.deploy.FilterDef
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2540)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2566)
         at org.apache.commons.digester.Digester.startElement(Digester.java:1276)
         at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1548)
         at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:220)
         at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:579)
         at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:181)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3523)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1141)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:316)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2143)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
         at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
         at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
    2006-11-10 13:08:30 ContextConfig[/examples]: Occurred at line 15 column 13
    2006-11-10 13:08:30 ContextConfig[/examples]: Marking this application unavailable due to previous error(s)
    2006-11-10 13:08:30 StandardManager[/examples]: Seeding random number generator class java.security.SecureRandom
    2006-11-10 13:08:30 StandardManager[/examples]: Seeding of random number generator has been completed
    2006-11-10 13:08:30 StandardContext[/examples]: Context startup failed due to previous errors

  • How could force tomcat to stop and start on every build on Ide?

    How could force tomcat to stop and start on every build on Ide?

    Hello,
    See this help article:
    *[https://support.mozilla.org/en-US/kb/How%20to%20set%20the%20home%20page How to set the home page]
    Or try go to about:config page, search for "browser.startup.homepage" change its value to "about:home"(default) or "about:blank"(blank page)
    *[http://kb.mozillazine.org/About:config about:config]

  • CiscoWorks Tomcat Servlet Engine service does not start

    Hello!
    CiscoWorks  Tomcat Servlet Engine service does not start.
    Events in the Windows Event Viewer:
    The CiscoWorks Tomcat Servlet Engine service terminated unexpectedly. It has done this 1 time(s).
    output pdshow and file stderr.log,  hs_err_pid2128.log attached.
    Do  you have an idea how to resolve this?
    Thanks!

    The only things which I see are wrong are the start types for the IPM NG database engine and HUM database engine services.  They must be set to Manual, not Automatic.  However, that would not account for the Tomcat crash.  The crash points to an error in the code which processes regdaemon.xml, but I see no reason why that should be failing.  As I said before, I think it would be best to open a Service Request.  Remote access would be helpful to dig into this problem in more detail.
    Please support CSC Helps Haiti
    https://supportforums.cisco.com/docs/DOC-8895
    https://supportforums.cisco.com

  • Tomcat (3.2.8) service will not start in Windows 2003 Server

    We just upgraded one of our servers to Windows 2003 Server. I did change the port in server.xml from 8080 to 8060. When I try to start the tomcat service it fails with an error message:
    Could not start the Tomcat service on Local Computer.
    Error 1067: The process terminated unexpectedly.
    I can however start it with the startup.bat file in tomcat_home\bin
    Can anyone help.. was running fine under windows 2000 server

    Corection Tomcat version is 3.2.4

  • Tomcat Manager Portal in BlazeDS Turnkey Server

    Hi all,
    Im pretty new to blazeds, and liking what i have experienced thus far. Could anyone please tell me how to access the Tomcat Manager Portal within the BlazeDS Turnkey Server Installation.
    Like in know it runs on port 8400 by default. So running it then opening http://localhost:8400 gets me the blazeds turnkey home page with links to the sample apps.
    However I want to get to the Tomcat Portal to change file access permissions etc. And if i wanted to deploy apps from there etc.
    Is this possible?
    Please advise!
    Kind Regards
    Willem

    Follow the instructions here:
    http://blog.techstacks.com/2009/05/tomcat-management-setting-up-tomcat.html
    Basically just add a user and role to the $CATALINA_HOME/conf/tomcat-users.xml:
    <?xml version='1.0' encoding='utf-8'?>
    <tomcat-users>
      <role rolename="manager"/>
      <user username="tomcat" password="tomcat" roles="manager"/>
    </tomcat-users>
    Then use the URL: http://localhost:8400/manager/html to access the manager.

  • Apache Tomcat 5.5.20 could not start

    Hi experts,
    i have the following problem by starting TomCat. I have install BO Enterprise XI 3.0.
    Before getting this problem it was very difficult to start the Server. I had to click at least five Minutes till the server starts.
    Now it is not starting anymore.
    SIA ist working without problem.
    Could you please help?
    Thank you in Advance
    Cheers

    I'm evaluating Crystal reports server 2008 in Windows 2003 R2 server (4Gb Ram). When upgrading Win 2003 to SP2 Tomcat service couldn't start.
    "C:\Archivos de programa\Business Objects\Tomcat55\bin\tomcat5.exe" //RS//BOE120Tomcat -requestreport 8000
    According to
    http://www.forumtopics.com/busobj/viewtopic.php?p=554540&sid=112a146801723064a073894175a24404
    http://commons.apache.org/daemon/procrun.html
    I changed XX:MaxPermSize at HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Procrun 2.0\BOE120Tomcat\Parameters\Java\Options
    -Djava.library.path=C:\WINDOWS\system32\;C:\Archivos de programa\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\
    -Dcatalina.base=C:\Archivos de programa\Business Objects\Tomcat55\
    -Dcatalina.home=C:\Archivos de programa\Business Objects\Tomcat55\
    -Djava.endorsed.dirs=C:\Archivos de programa\Business Objects\Tomcat55\common\endorsed\
    -Dbobj.enterprise.home=C:\Archivos de programa\Business Objects\BusinessObjects Enterprise 12.0\
    -Xrs
    -XX:MaxPermSize=50m
    -Dbusinessobjects.olap.bin=
    -Dbusinessobjects.olap.stylesheets=C:\Archivos de programa\Business Objects\OLAP Intelligence 12.0\stylesheets\
    -Djava.awt.headless=true
    nothing happened. It seemed --JvmMx was the parameter (jvmMx key?). It was 1024 then I set it to 128
    tomcat service starts successfully again
    Edited by: asaidel on Jun 17, 2009 11:19 PM

  • After BI install SIA and Tomcat could not start with service account.

    Hi BO Gurus,
    I want to install BO child node (Expand the parent install)
    Client IT prepared a system with MS Server 2012 with Windows 8 as OS, and assigned a Service Account for me.
    I gave service account following permissions -
    Act as a part of operating system
    log on as a batch
    log on as a service
    After this I rebooted the system and logged in with Service Account credentials. Started the installer, performed custom/expand install.
    the install was successful.
    When I opened CCM, both Tomcat and SIA are running under 'localsystem' account.
    I want them to run under service account --> i sopped SIA and changed credentials in 'Log on as' box under SIA properties.--> Click on 'apply' and 'OK'
    When I go on and start SIA I get following error -
    ' The Service did not start due to log on failure'.
    The same service account runs services on 3 other BO boxes including parent node of the above install and 2 other DS boxes and everything apart from this machine works exactly fine.
    Please help!
    Thanks,
    Maitreyee

    Maitreyee,
          BI 4.x Platform will NOT work on Desktop OS like Windows 7 / 8.x / 8.1, it required 64bit Server Operating system.   See attached screenshot.
    Regards,
    Ajay

Maybe you are looking for

  • Some HTML Emails Do Not Display Properly

    Recently, some HTML emails do not display properly in Mail. All I see is HTML. Yet, 98% of my HTML emails render properly. Any thoughts on why this happens with some emails? Is it a Mail issue or are these emails not coded properly?

  • A/V Cable not working

    I have a AV - RCA Cable that goes into the earphone socket, but it just comes up blank.

  • Is it possible to sync an iTouch 4 with iTunes on a NetBook?

    I JUST bought an iTouch 4, and for some strange reason, it wont appear on iTunes. The computer I have used in the past broke, so I've been using a NetBook instead. The cord is in perfect condition and I've gone through all the Apple Suport Steps. Not

  • Updating iphone3 is it good or bad?

    updating iphone3 is it good or bad?

  • Battery Saver stuck...

    Hello everyone... From yesterday night my battery saver has stuck... Look at the photo at the bottom of this post, to understand... All those bars are from the background... I am 99% sure that the apps are not running in the background because I dont