cancel
Showing results for 
Search instead for 
Did you mean: 

3.2r the process not stop when shutdown [SOLVED]

yahoon
Champ in-the-making
Champ in-the-making
when I shutdown alfresco 3.2r with "./alfresco.sh stop"

all goes ok, the port shutdown, log showing "Nov 18, 2009 10:49:32 PM org.apache.coyote.http11.Http11Protocol destroy"

but when I check the process ,I found it still exists!

# ps -ef|grep java
root     17891 17548  0 22:34 pts/1    00:00:00 grep java
root     29245     1  0 Oct28 ?        00:08:13 /usr/local/jdk/bin/java -Xms128m -Xmx512m -XX:MaxPermSize=128m -server -Dalfresco.home=/opt/Alfresco -Dcom.sun.management.jmxremote -XX:CompileCommand=exclude,org/apache/lucene/index/IndexReader$1,doBody -XX:CompileCommand=exclude,org/alfresco/repo/search/impl/lucene/index/IndexInfo$Merger,mergeIndexes -XX:CompileCommand=exclude,org/alfresco/repo/search/impl/lucene/index/IndexInfo$Merger,mergeDeletions -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=/opt/Alfresco/tomcat/conf/logging.properties -Djava.endorsed.dirs=/opt/Alfresco/tomcat/endorsed -classpath :/opt/Alfresco/tomcat/bin/bootstrap.jar -Dcatalina.base=/opt/Alfresco/tomcat -Dcatalina.home=/opt/Alfresco/tomcat -Djava.io.tmpdir=/opt/Alfresco/tomcat/temp org.apache.catalina.startup.Bootstrap start

when I start again, it will start a new process.

why the process didn't stop after shutdown?
2 REPLIES 2

mrogers
Star Contributor
Star Contributor
Unfortunately its due to bugs. 

By default the shutdown backstop was turned off for 3.2r.

You can kill the process.
Or enable the shutdown backstop again.

yahoon
Champ in-the-making
Champ in-the-making
Unfortunately its due to bugs. 

By default the shutdown backstop was turned off for 3.2r.

You can kill the process.
Or enable the shutdown backstop again.

thanks so much

I enabled the shutdown backstop.
in ./tomcat/webapps/alfresco/WEB-INF/classes/alfresco/repository.properties
change
shutdown.backstop.enabled=false
to ture

it works