Hope you can help me. I have a strange org.apache.catalina.startup.Bootstrap icon on my dock in mac. Im using the 10.7.2 version with Lion. I've use this: export JAVA_OPTS="-Djava.awt.headless=true" at the startup.sh and shutdown.sh but got the same problem. Thanks in advance.
If you don't want Tomcat (AKA Apache Catalina) to appear in the OS X dock or as a running application, stop your Tomcat and edit its conf/catalina.properties
file, adding this line:
java.awt.headless=true
The next time you start Tomcat, it will not appear in the dock or as a running application.
export CATALINA_OPTS="-Djava.awt.headless=true"
in your .bashrc/.bashprofile/.profile –
Ratoon conf/catalina.properties
would only affect that specific installation of Tomcat and not others. It depends on what the user wants to accomplish. –
Rhythm if $darwin; then CATALINA_OPTS="$CATALINA_OPTS -Djava.awt.headless=true" fi
(or you could blindly set it w/o the OS check) –
Selfpropelled actually, I have to disagree that out of memory and bootstrap appearing in the dock are unrelated, because, I am having exactly the same problem, it only happens when tomcat either crashes, and/or out of memory error appears. BTW I am generating jasperREports when this happens.
As a fact it looks like The out of memory error and the appearance of Tomcat (AKA Apache Catalina) in your dock are related, I am still looking for the solution .
I also strongly suggest not to fix the problem this way:
java.awt.headless=true
this only masks the issue, and makes it more difficult to find the root cause.
© 2022 - 2024 — McMap. All rights reserved.