Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ecf-dev] Jenkins not responding

On 02/26/2014 06:01 PM, Scott Lewis wrote:
> The Jenkins webapp doesn't seem to be responding right now [1]. How can
> it be restarted, bumped or whatever necessary?
> 
> I believe that I caused the failure (happened twice yesterday)...by
> trying to run/build the 'zooserver' project.  As I recall, the vm failed
> with an OutOfMemoryError...because of PermGen.    I don't know why
> building the zooserver project would cause the webapp to fail (which is
> seemingly what happened), but it did.
> 
> Anyway...once Jenkins starts up again, I won't personally be running the
> zooserver build...until someone familiar with it takes a look.

Hi,

here is what I do when Jenkins needs a kick:

mkuppe@ecf-builds ~ $ sudo /etc/init.d/tomcat-6 stop
 * Stopping Tomcat ...
[ !! ]
 * ERROR: tomcat-6 failed to stop
mkuppe@ecf-builds ~ $ sudo /etc/init.d/tomcat-6 zap
 * Manually resetting tomcat-6 to stopped state
mkuppe@ecf-builds ~ $ sudo su - tomcat
tomcat@ecf-builds ~ $ ps axu|grep java
tomcat    9161 13.6 11.5 986584 467028 ?       Ssl  Feb25 178:18
/opt/sun-jdk-1.6.0.35/bin/java
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
-Djava.util.logging.config.file=/var/lib/tomcat-6//conf/logging.properties
-DHUDSON_HOME=/opt/hudson -Xmx512m -classpath
/usr/share/tomcat-6//lib:/opt/sun-jdk-1.6.0.35/lib/tools.jar:/usr/share/tomcat-6//bin/bootstrap.jar:/usr/share/tomcat-6//bin/tomcat-juli.jar
-Dcatalina.base=/var/lib/tomcat-6/ -Dcatalina.home=/usr/share/tomcat-6/
-Djava.io.tmpdir=/var/lib/tomcat-6//temp
org.apache.catalina.startup.Bootstrap start
tomcat@ecf-builds ~ $ kill -9 9161
tomcat@ecf-builds ~ $ logout
mkuppe@ecf-builds ~ $ sudo /etc/init.d/tomcat-6 start
 * Starting Tomcat ...

                                                    [ ok ]
mkuppe@ecf-builds ~ $

Jenkins should now be running again.

M.



Back to the top