Home > jenkins error > jenkins error during ajp13 listener init or shutdown

Jenkins Error During Ajp13 Listener Init Or Shutdown

- 15th for workshops, presentations and all things Jenkins Learn more Export Tools JenkinsJENKINS-8321Windows service restarts failLog In ExportXMLWordPrintable Details Type: Bug Status: Resolved Priority: Major Resolution: Incomplete Component/s: core Labels: None Similar Issues: Show Description Every few restarts (via clicking the restart button in the UI), Hudson does not actually go down. Today I got this message in hudson.out.log (should be .err.log?): [Winstone 2010/12/16 08:57:20] - Error during AJP13 listener init or shutdown java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(Unknown Source) at java.net.ServerSocket.bind(Unknown Source) at java.net.ServerSocket.(Unknown Source) at java.net.ServerSocket.(Unknown Source) at winstone.ajp13.Ajp13Listener.run(Ajp13Listener.java:99) at java.lang.Thread.run(Unknown Source) [Winstone 2010/12/16 08:57:20] - Error during HTTP listener init or shutdown java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(Unknown Source) at java.net.ServerSocket.bind(Unknown Source) at java.net.ServerSocket.(Unknown Source) at java.net.ServerSocket.(Unknown Source) at winstone.HttpListener.getServerSocket(HttpListener.java:102) at winstone.HttpListener.run(HttpListener.java:116) at java.lang.Thread.run(Unknown Source) If I stop the Hudson service and try starting it manually, it won't come back up. The only way to fix it is to kill Java.exe. AttachmentsActivity All Comments History Activity Ascending order - Click to sort in descending order Hide Permalink evernat added a comment - 2013/Feb/02 6:11 PM Is it reproduced with a recent Jenkins version? Show evernat added a comment - 2013/Feb/02 6:11 PM Is it reproduced with a recent Jenkins version? Hide Permalink Daniel Beck added a comment - 2014/May/31 5:55 PM No response to comment posted 15 months ago, so resolving as incomplete. Also, needs to be reproduced in 1.566 (yes, really!) as that version will contain a fix related to restarting Jenkins service on Windows. Show Daniel Beck added a comment - 2014/May/31 5:55 PM No response to comment posted 15 months ago, so resolving as incomplete. Also, needs to be reproduced in 1.566 (yes, really!) as that version will contain a fix related to restarting Jenkins service on Windows. People Assignee: Unassigned Reporter: bnovc Votes: 0 Vote for this issue Watchers: 2 Start watching this issue Dates Created:

- 15th for workshops, presentations and all things Jenkins Learn more Export Tools JenkinsJENKINS-7293multiple hudson instances on one portLog In ExportXMLWordPrintable Details Type: Bug Status: Resolved Priority: Critical Resolution: Duplicate Component/s: core Labels: None Environment: Windows, V1.373 Similar Issues: Show Description When the hudosn service is started twice (can happen accidently) using "net start Hudson", binding the second Hudson to thr same port https://issues.jenkins-ci.org/browse/JENKINS-8321 failes. However, the second Hudson does not get terminated, but keeps running in "head-less" mode. Could this be changed that the second Hudson terminates itslef, except if it is explicitly configured to run without any web interface? hudson.out.log: Running from: X:\hudson\hudson.war [Winstone 2010/08/23 23:13:07] - Beginning extraction https://issues.jenkins-ci.org/browse/JENKINS-7293 from war file hudson home directory: X:\hudson Using one-time self-signed certificate [Winstone 2010/08/23 23:13:10] - AJP13 Listener started: port=8009 [Winstone 2010/08/23 23:13:10] - HTTP Listener started: port=8080 [Winstone 2010/08/23 23:13:10] - Winstone Servlet Engine v0.9.10 running: controlPort=disabled Green Balls! Running from: X:\hudson\hudson.war [Winstone 2010/08/24 23:14:28] - Beginning extraction from war file hudson home directory: X:\hudson [Winstone 2010/08/24 23:14:33] - Error during HTTP listener init or shutdown java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(Unknown Source) at java.net.ServerSocket.bind(Unknown Source) at java.net.ServerSocket.(Unknown Source) at java.net.ServerSocket.(Unknown Source) at winstone.HttpListener.getServerSocket(HttpListener.java:102) at winstone.HttpListener.run(HttpListener.java:116) at java.lang.Thread.run(Unknown Source) [Winstone 2010/08/24 23:14:33] - HTTP Listener shutdown successfully [Winstone 2010/08/24 23:14:33] - Error during AJP13 listener init or shutdown java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(Unknown Source) at java.net.ServerSocket.bind(Unknown Source) at java.net.ServerSocket.(Unknown Source) at java.net.ServerSocket.(Unknown Source) at winstone.ajp13.Ajp13Listener.run(Ajp13Listener.java:99) at java.lang.Thread.run(Unknown Source) [

| Threaded Open this post in threaded view ♦ ♦ | Report Content as Inappropriate ♦ ♦ How to change AJP13 port http://jenkins-ci.361315.n4.nabble.com/How-to-change-AJP13-port-td375766.html Hi All, I want to install Hudson 1.261 into my windows server with single server mode. I mean use Winstone Servlet Engine not any servlet container. but I https://github.com/jdsn/jenkinsci--winstone/blob/master/src/java/winstone/LocalStrings.properties have installed JBoss in this server. I got below error message. How to deal with it? [Winstone 2008/11/13 15:00:34] - HTTP Listener started: port=9091 [Winstone 2008/11/13 15:00:34] - jenkins error Error during AJP13 listener init or shutdown java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(Unknown Source) at java.net.ServerSocket.bind(Unknown Source) at java.net.ServerSocket.(Unknown Source) at java.net.ServerSocket.(Unknown Source) at winstone.ajp13.Ajp13Listener.run(Ajp13Listener.java:98) at java.lang.Thread.run(Unknown Source) Scott Tatum-2 Reply | Threaded Open this post in threaded view ♦ ♦ | Report jenkins error during Content as Inappropriate ♦ ♦ Re: How to change AJP13 port If you're running it with winstone, you can pass in the --ajp13Port parameter, like this: java -jar hudson.war --ajp13Port=8010 Also, if you have installed it as a windows service, look for hudson.xml in your hudson home dir. In there, find the arguments element (you should see httpPort there). You can add --ajp13Port=your-new-port to that element and it will get picked up the next time you start the service. You can also set it to -1 to disable it entirely. I assume you'd only want it enabled if you plan on hooking up to a web server like apache. For all options available when running with winstone, run: java -jar hudson.war --help -Scott On Thu, Nov 13, 2008 at 8:23 PM, Xu, Lei-Ming (TSG-GDCC-SH) <[hidden email]> wrote: > > Hi All, > I want to install Hudson 1.261 into my windows server with single server > mode. > I mean use Winstone Servlet Engine not any servlet container. > but I have installed JBo

Sign in Pricing Blog Support Search GitHub This repository Watch 1 Star 0 Fork 29 jdsn/jenkinsci--winstone forked from jenkinsci/winstone Code Pull requests 0 Projects 0 Pulse Graphs Permalink Branch: master Switch branches/tags Branches Tags ajp13-disabled incoming jetty master recovery winstone-0.9 Nothing to show winstone-2.1 winstone-2.0 winstone-0.9.10-jenkins-48 winstone-0.9.10-jenkins-47 winstone-0.9.10-jenkins-46 winstone-0.9.10-jenkins-45 winstone-0.9.10-jenkins-44 winstone-0.9.10-jenkins-43 winstone-0.9.10-jenkins-42 winstone-0.9.10-jenkins-41 winstone-0.9.10-jenkins-40 winstone-0.9.10-jenkins-39 disabled-ajp 0.9.10-jenkins-37 0.9.10-jenkins-36 0.9.10-jenkins-35 0.9.10-jenkins-34 0.9.10-jenkins-33 0.9.10-jenkins-32 0.9.10-jenkins-31 0.9.10-jenkins-29 0.9.10-jenkins-28 0.9.10-jenkins-27 0.9.10-jenkins-26 0.9.10-jenkins-25 0.9.10-hudson-24 0.9.10-hudson-23 0.9.10-hudson-22 0.9.10-hudson-21 0.9.10-hudson-20 0.9.10-hudson-19 0.9.10-hudson-18 0.9.10-hudson-17 Nothing to show Find file Copy path jenkinsci--winstone/src/java/winstone/LocalStrings.properties Fetching contributors… Cannot retrieve contributors at this time Raw Blame History 143 lines (133 sloc) 10.2 KB ServerVersion=Winstone Servlet Engine v2.0 Logger.StreamWriteError=Error writing log message: [#0] WebAppConfig.LoggerError=Error instantiating access logger class: [#0] WebAppConfig.LoggerDisabled=Access logging disabled - no logger class defined HostConfig.PrefixUnknown=Unknown webapp prefix: [#0] HostConfig.WebAppDirNotFound=Webapps dir [#0] not found HostConfig.WebAppDirIsNotDirectory=Webapps dir [#0] is not a directory HostConfig.InitComplete=Initialized [#0] webapps: prefixes - [#1] HostConfig.SkippingWarfileDir=Webapp dir deployment [#0] skipped, since there is a war file of the same name to check for re-extraction HostConfig.DeployingWebapp=Deployed web application found at [#0] HostConfig.ParsingWebXml=Parsing web.xml HostConfig.WebXmlParseComplete=Finished parsing web.xml HostConfig.WebXmlParseFailed=Failure parsing the web.xml file. Ignoring and continuing as if no web.xml was found. HostConfig.WarFileInvalid=The warfile supp

 

Related content

jenkins error invalid testlink installation

Jenkins Error Invalid Testlink Installation p - th for workshops presentations and all things Jenkins Learn more Export Tools JenkinsJENKINS- Jenkins-Plugin working with Testlink Log In ExportXMLWordPrintable Details relatedl Type Bug Status Open Priority Major Resolution Unresolved Component s testlink-plugin Labels None Environment Testlink WIN Similar Issues Show Description Config Testlink jenkins Plugin creating testreports from jenkins built still working but integrating test results to testlink does not work Has anyone tested the plugin for compatibility with testlink error result C Program Files Jenkins workspace Jenkins TestLink Plug-in examples exit Preparing TestLink client API ERROR Invalid TestLink installation Finished FAILURE

jenkins error creating properties files for forking

Jenkins Error Creating Properties Files For Forking p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only takes a minute Sign up Maven error in Jenkins JMeter