Issue with Active Choices plugin

2019-01-11 Thread MDKF
I created a multi select parameter in a pipeline job. When the job is run, 
all of the selected parameters are concatenated into a single long string 
instead of into a list as expected. How can I fix this?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/79d4605f-bd1b-4f6d-b0d3-1893588fe3fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: New Jenkins server and BlueOcean won't load

2018-12-18 Thread MDKF
When Jenkins installed, it installed some, but not all of the required 
BlueOcean plugins, hence the failure to load.

On Tuesday, December 11, 2018 at 11:42:01 AM UTC-5, MDKF wrote:
>
> It doesn't open in any browser.
>
> On Tuesday, December 11, 2018 at 5:00:02 AM UTC-5, Pranav Kv wrote:
>>
>> Remove cache in ur browser and try.. Hope, that will be resolve issues. 
>>
>> Pranav KV
>>
>> On Tue, 11 Dec 2018, 1:09 am MDKF >
>>> HI,
>>>  I just setup a new Jenkins instance and installed BlueOcean. Jenkins 
>>> works fine, but when clicking any link into BlueOcean, the blue progress 
>>> bar moves most of the way, but the page never loads. There are no errors in 
>>> jenkins.log. How do I debug this?
>>> -Michael
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Jenkins Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to jenkinsci-use...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/jenkinsci-users/d57df22a-d1a5-41a3-852e-b31994502c11%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/jenkinsci-users/d57df22a-d1a5-41a3-852e-b31994502c11%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b4a41bfa-3e54-4172-861b-3977580fb923%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: New Jenkins server and BlueOcean won't load

2018-12-11 Thread MDKF
It doesn't open in any browser.

On Tuesday, December 11, 2018 at 5:00:02 AM UTC-5, Pranav Kv wrote:
>
> Remove cache in ur browser and try.. Hope, that will be resolve issues. 
>
> Pranav KV
>
> On Tue, 11 Dec 2018, 1:09 am MDKF  
> wrote:
>
>> HI,
>>  I just setup a new Jenkins instance and installed BlueOcean. Jenkins 
>> works fine, but when clicking any link into BlueOcean, the blue progress 
>> bar moves most of the way, but the page never loads. There are no errors in 
>> jenkins.log. How do I debug this?
>> -Michael
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/d57df22a-d1a5-41a3-852e-b31994502c11%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/jenkinsci-users/d57df22a-d1a5-41a3-852e-b31994502c11%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/eea5782f-9c25-4cee-9b2c-357da81c4929%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


New Jenkins server and BlueOcean won't load

2018-12-10 Thread MDKF
HI,
 I just setup a new Jenkins instance and installed BlueOcean. Jenkins works 
fine, but when clicking any link into BlueOcean, the blue progress bar 
moves most of the way, but the page never loads. There are no errors in 
jenkins.log. How do I debug this?
-Michael

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d57df22a-d1a5-41a3-852e-b31994502c11%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Pipeline when condition issue

2018-08-28 Thread MDKF
Hi All,
 I have the following pipeline. I don't expect the steps in the when 
condition to run, but they are. Can anyone tell me what i'm doing wrong? (I 
know using an expression instead of a simple equals is overkill, but this 
is a simplified example to show my issue)
-Michael

pipeline {

 // Discarded: Promote Builds When...

 agent any
 environment {
Development = true
}
 stages {
stage('test') {
when {
not {
expression {
Development == ~/(?i)(1|Y|YES|T|TRUE|ON|RUN)/
}
}
   }
   steps {
   echo 'Development is false'
}
 }
 }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/f76ece7d-c962-4914-bdbd-c8addfb58ea9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Specifing git branch via a parameter

2018-08-09 Thread MDKF
Hi All,
 I have a pipeline that starts out like this:

pipeline {
>
>  agent any
>
>  parameters {
>
> string(defaultValue: 'develop', description: 'branch', name: 
>> 'Branch')
>
> }
>
>  stages {
>
>   stage('Checkout') {
>
>steps {
>
> checkout([$class: 'GitSCM', branches: [
>
>  [name: 'refs/remotes/origin/${params.Branch}']
>
>
> When the project it runs because the parameter isn't being inserted.:

> > C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
> "refs/remotes/origin/${params.Branch}^{commit}" # timeout=10
> > C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
> "refs/remotes/origin/refs/remotes/origin/${params.Branch}^{commit}" # 
> timeout=10 

> C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
> "refs/remotes/origin/${params.Branch}^{commit}" # timeout=10 


What am I doing wrong? Thanks,
-Michael

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/10da89a4-c57b-404c-acc9-cbf57b6808d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error Copying artifacts when specifying a build parameter

2013-03-04 Thread MDKF
Hi Chris,
 Thanks for your response. I'm still confused. Witch project do I put the 
Build Selector in, the project I'm copying from, or the one im copying to. 
I tried putting it in the one I'm copying to but then it just asks me to 
select a build.

On Monday, March 4, 2013 10:07:09 AM UTC-5, cjo wrote:

 As I stated you need to add a Build Selector for copy Artifact parameter 
 see image1
 which is then used in the build step image 2.


 Image 1


 https://lh3.googleusercontent.com/-cljdrCcGKUs/UTS3wvW0QLI/ACQ/EKAqDJOwGDw/s1600/copyParameter1.png

 Image 2


 https://lh6.googleusercontent.com/-a6o-fsuW7EY/UTS33AVdYYI/ACY/DujgVoCkKcg/s1600/copyParameter2.png




 And the error is caused because the parameter that you are using is not a 
 valid XML string. 

 This was a poor way of passing this from the parameter section to the 
 build step, and there is a Pull request to modify this, which has better 
 error checking for these cases.


 Chris


 On Monday, 4 March 2013 04:57:04 UTC, MDKF wrote:

 Yes. The configuration shown in the first box Copy Artifact box of the 
 image works fine but the second one does not.

 On Friday, March 1, 2013 6:38:34 AM UTC-5, cjo wrote:

 Have you enabled the build to be Parameterized and add a Copy Parameter 
 named Configuration which is used in the copy artifact buildstep.

 As it seems that that is missing in your case.

 Chris.


 On Thursday, 28 February 2013 22:50:05 UTC, MDKF wrote:

 I see my picture didn't make it the first time. 



-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Frequent crashes

2013-03-04 Thread MDKF
Unfortunately that's not really an option.

On Saturday, March 2, 2013 4:51:13 PM UTC-5, sti wrote:

 Unless someone comes up with better advice, I would suggest you 
 remove/disable the Active Directory plugin and try if it still crashes. 

 -- Sami 

 Michael Fowler michael...@gmail.com javascript: kirjoitti 28.2.2013 
 kello 18.21: 

  So It crashed again last night. No one was logged into the server and no 
 jobs were running. Any idea what happened? From the err.log 
  
  Feb 27, 2013 6:56:21 PM winstone.Logger logInternal 
  WARNING: Untrapped Error in Servlet 
  java.lang.NullPointerException 
  at 
 hudson.plugins.active_directory.ActiveDirectoryAuthenticationProvider.retrieveUser(ActiveDirectoryAuthenticationProvider.java:88)
  

  at 
 org.acegisecurity.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:119)
  

  at 
 org.acegisecurity.providers.ProviderManager.doAuthentication(ProviderManager.java:195)
  

  at 
 org.acegisecurity.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:45)
  

  at 
 org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:138)
  

  at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) 

  at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:64) 
  at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) 

  at 
 org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
  

  at 
 hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66)
  

  at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) 

  at 
 hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76) 
  at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164) 
  at 
 winstone.FilterConfiguration.execute(FilterConfiguration.java:194) 
  at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366) 
  at 
 org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:50)
  

  at 
 winstone.FilterConfiguration.execute(FilterConfiguration.java:194) 
  at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366) 
  at 
 hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81) 

  at 
 winstone.FilterConfiguration.execute(FilterConfiguration.java:194) 
  at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366) 
  at winstone.RequestDispatcher.forward(RequestDispatcher.java:331) 
  at 
 winstone.RequestHandlerThread.processRequest(RequestHandlerThread.java:227) 
  at winstone.RequestHandlerThread.run(RequestHandlerThread.java:150) 
  at java.util.concurrent.Executors$RunnableAdapter.call(Unknown 
 Source) 
  at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) 
  at java.util.concurrent.FutureTask.run(Unknown Source) 
  at 
 winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77) 
  at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown 
 Source) 
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown 
 Source) 
  at java.lang.Thread.run(Unknown Source) 
  
  
  
  stdout: 
  # 
  # A fatal error has been detected by the Java Runtime Environment: 
  # 
  #  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x77cae3be, pid=4648, 
 tid=2960 
  # 
  # JRE version: 6.0_41-b02 
  # Java VM: Java HotSpot(TM) Client VM (20.14-b01 mixed mode, sharing 
 windows-x86 ) 
  # Problematic frame: 
  # C  [ntdll.dll+0x2e3be] 
  # 
  # An error report file with more information is saved as: 
  # C:\Windows\system32\hs_err_pid4648.log 
  # 
  # If you would like to submit a bug report, please visit: 
  #   http://java.sun.com/webapps/bugreport/crash.jsp 
  # The crash happened outside the Java Virtual Machine in native code. 
  # See problematic frame for where to report the bug. 
  # 
  
  [error occurred during error reporting , id 0xc005] 
  
  
  On Tue, Feb 19, 2013 at 10:07 AM, Michael Fowler 
  michael...@gmail.comjavascript: 
 wrote: 
  Thanks James, 
   I've added that to the config, we'll see what happens next time it 
 crashes. 
  -Michael 
  
  
  On Tue, Feb 19, 2013 at 4:38 AM, teilo teilo+...@teilo.netjavascript: 
 wrote: 
  Presumably the service account under which Jenkins is running does not 
 have write permissions in the system32 folder. 
  
  You may want to add 
 “-XX:ErrorFile=c:\some\path\where\jenkins\can\write\hs_err_.log” to your 
 Jenkins JVM startup options so that in the event of a crash the log can be 
 found.   
  
  It may be caused by a fault in the JDK - and you may want to submit a 
 bug report to Oracle with this log file. 
  
  /James 
  
  
  On Monday, 18 February 2013 19:47:50 UTC, MDKF wrote: 
  Hi Stuart

Re: Frequent crashes

2013-03-04 Thread MDKF
And it crashed again. Jenkins averages about 4 hours uptime...
 
stdout: 
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x01a8a3e3, pid=4872, 
tid=3672
#
# JRE version: 6.0_41-b02
# Java VM: Java HotSpot(TM) Client VM (20.14-b01 mixed mode, sharing 
windows-x86 )
# Problematic frame:
# J  
org.kohsuke.stapler.jelly.groovy.GroovyFacet$1.dispatch(Lorg/kohsuke/stapler/RequestImpl;Lorg/kohsuke/stapler/ResponseImpl;Ljava/lang/Object;)Z
#
# An error report file with more information is saved as:
# C:\Windows\system32\hs_err_pid4872.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#
 

On Monday, March 4, 2013 2:10:25 PM UTC-5, MDKF wrote:

 Unfortunately that's not really an option.

 On Saturday, March 2, 2013 4:51:13 PM UTC-5, sti wrote:

 Unless someone comes up with better advice, I would suggest you 
 remove/disable the Active Directory plugin and try if it still crashes. 

 -- Sami 

 Michael Fowler michael...@gmail.com kirjoitti 28.2.2013 kello 18.21: 

  So It crashed again last night. No one was logged into the server and 
 no jobs were running. Any idea what happened? From the err.log 
  
  Feb 27, 2013 6:56:21 PM winstone.Logger logInternal 
  WARNING: Untrapped Error in Servlet 
  java.lang.NullPointerException 
  at 
 hudson.plugins.active_directory.ActiveDirectoryAuthenticationProvider.retrieveUser(ActiveDirectoryAuthenticationProvider.java:88)
  

  at 
 org.acegisecurity.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:119)
  

  at 
 org.acegisecurity.providers.ProviderManager.doAuthentication(ProviderManager.java:195)
  

  at 
 org.acegisecurity.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:45)
  

  at 
 org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:138)
  

  at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
  

  at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:64) 
  at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
  

  at 
 org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
  

  at 
 hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66)
  

  at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
  

  at 
 hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76) 
  at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164) 
  at 
 winstone.FilterConfiguration.execute(FilterConfiguration.java:194) 
  at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366) 
  at 
 org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:50)
  

  at 
 winstone.FilterConfiguration.execute(FilterConfiguration.java:194) 
  at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366) 
  at 
 hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)
  

  at 
 winstone.FilterConfiguration.execute(FilterConfiguration.java:194) 
  at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366) 
  at winstone.RequestDispatcher.forward(RequestDispatcher.java:331) 
  at 
 winstone.RequestHandlerThread.processRequest(RequestHandlerThread.java:227) 
  at winstone.RequestHandlerThread.run(RequestHandlerThread.java:150) 
  at java.util.concurrent.Executors$RunnableAdapter.call(Unknown 
 Source) 
  at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) 
  at java.util.concurrent.FutureTask.run(Unknown Source) 
  at 
 winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77) 
  at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown 
 Source) 
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown 
 Source) 
  at java.lang.Thread.run(Unknown Source) 
  
  
  
  stdout: 
  # 
  # A fatal error has been detected by the Java Runtime Environment: 
  # 
  #  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x77cae3be, pid=4648, 
 tid=2960 
  # 
  # JRE version: 6.0_41-b02 
  # Java VM: Java HotSpot(TM) Client VM (20.14-b01 mixed mode, sharing 
 windows-x86 ) 
  # Problematic frame: 
  # C  [ntdll.dll+0x2e3be] 
  # 
  # An error report file with more information is saved as: 
  # C:\Windows\system32\hs_err_pid4648.log 
  # 
  # If you would like to submit a bug report, please visit: 
  #   http://java.sun.com/webapps/bugreport/crash.jsp 
  # The crash happened outside the Java Virtual Machine in native code. 
  # See problematic frame for where to report the bug. 
  # 
  
  [error occurred during error reporting , id 0xc005] 
  
  
  On Tue, Feb 19, 2013 at 10:07 AM

Frequent crashes

2013-02-18 Thread MDKF
Hi all,
 Jenkins keeps crashing randomly. There seems to be no particular trigger. 
Any idea whats happening? 
 
Heres my log:
 
 
Running from: C:\Program Files (x86)\Jenkins\jenkins.war
webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
Jenkins home directory: C:\Program Files (x86)\Jenkins found at: 
EnvVars.masterEnvVars.get(JENKINS_HOME)
Running from: C:\Program Files (x86)\Jenkins\jenkins.war
webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
Jenkins home directory: D:\Jenkins_Home found at: 
EnvVars.masterEnvVars.get(JENKINS_HOME)
return code: 0
stderr: 
stdout: The command completed successfully.

Running from: C:\Program Files (x86)\Jenkins\jenkins.war
webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
Jenkins home directory: D:\Jenkins_Home found at: 
EnvVars.masterEnvVars.get(JENKINS_HOME)
return code: 0
stderr: 
stdout: The command completed successfully.

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x018d1a23, pid=1516, 
tid=3204
#
# JRE version: 6.0_39-b04
# Java VM: Java HotSpot(TM) Client VM (20.14-b01 mixed mode, sharing 
windows-x86 )
# Problematic frame:
# J  
org.kohsuke.stapler.jelly.groovy.GroovyFacet$1.dispatch(Lorg/kohsuke/stapler/RequestImpl;Lorg/kohsuke/stapler/ResponseImpl;Ljava/lang/Object;)Z
#
# An error report file with more information is saved as:
# C:\Windows\system32\hs_err_pid1516.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#
Running from: C:\Program Files (x86)\Jenkins\jenkins.war
webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
Jenkins home directory: D:\Jenkins_Home found at: 
EnvVars.masterEnvVars.get(JENKINS_HOME)
return code: 2
stderr: System error 85 has occurred.
The local device name is already in use.

stdout: 
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x0154dd23, pid=4728, 
tid=4012
#
# JRE version: 6.0_39-b04
# Java VM: Java HotSpot(TM) Client VM (20.14-b01 mixed mode, sharing 
windows-x86 )
# Problematic frame:
# J  
org.kohsuke.stapler.jelly.groovy.GroovyFacet$1.dispatch(Lorg/kohsuke/stapler/RequestImpl;Lorg/kohsuke/stapler/ResponseImpl;Ljava/lang/Object;)Z
#
# An error report file with more information is saved as:
# C:\Windows\system32\hs_err_pid4728.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#
 

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Installing Jenkins on Windows Server 2012 Standard fails

2012-11-26 Thread MDKF
Check for the cause in jenkins.err.log in the directory where jenkins.war 
is located. 

On Sunday, November 25, 2012 9:26:07 PM UTC-5, Drew Mace wrote:

 I'm trying to install Jenkins on a Windows Server 2012 Standard edition 
 box but hit a snag - I am getting an error: Service 'Jenkins' (Jenkins) 
 failed to start.  Verify that you have sufficient privileges to start 
 system services.  I ran the installer as administrator (elevated privs).  
 Anyone have any ideas what i could try?



Re: Can anoyone help determine the cause of a Jenkins crash.

2012-11-15 Thread MDKF
Can anyone help with this issue?

On Monday, November 12, 2012 10:36:13 AM UTC-5, MDKF wrote:

 Hi All,
  My Jenkins server died last night. I found the following text in the 
 error log. Can anyone help me decipher what happened? Ive had these out of 
 memory exceptions before.


 Nov 11, 2012 12:39:50 AM winstone.Logger logInternal
 SEVERE: Error while serving http://nwd2hscjnks/job/VectorGenerator/api/xml
 java.lang.reflect.InvocationTargetException
 at sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
 at java.lang.reflect.Method.invoke(Unknown Source)
 at 
 org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:288)
 at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:151)
 at 
 org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:90)
 at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:111)
 at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
 at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:203)
 at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
 at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:241)
 at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:488)
 at org.kohsuke.stapler.Stapler.service(Stapler.java:162)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:45)
 at winstone.ServletConfiguration.execute(ServletConfiguration.java:248)
 at winstone.RequestDispatcher.forward(RequestDispatcher.java:333)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:376)
 at 
 hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:95)
 at 
 hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:87)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
 at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:47)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
 at 
 hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:166)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:173)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:63)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
 at 
 hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)
 at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
 at 
 org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:50)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366

Re: Can anoyone help determine the cause of a Jenkins crash.

2012-11-14 Thread MDKF
Thanks for your reply Harpreet. 
The out of memory issue was caused by something failing. In this case 
increasing the heap space would not fix the issue. 

On Monday, November 12, 2012 7:53:31 PM UTC-5, Harpreet singh Wadhwa wrote:

 Looks like Memory issue *OutOfMemoryError: Java heap space*
 Try increasing in JAVA_OPTS 

 Thanks

 On Mon, Nov 12, 2012 at 9:06 PM, MDKF michael...@gmail.com 
 javascript:wrote:

 Hi All,
  My Jenkins server died last night. I found the following text in the 
 error log. Can anyone help me decipher what happened? Ive had these out of 
 memory exceptions before.


 Nov 11, 2012 12:39:50 AM winstone.Logger logInternal
 SEVERE: Error while serving 
 http://nwd2hscjnks/job/VectorGenerator/api/xml
 java.lang.reflect.InvocationTargetException
 at sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
 at java.lang.reflect.Method.invoke(Unknown Source)
 at 
 org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:288)
 at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:151)
 at 
 org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:90)
 at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:111)
 at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
 at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:203)
 at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
 at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:241)
 at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:488)
 at org.kohsuke.stapler.Stapler.service(Stapler.java:162)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:45)
 at 
 winstone.ServletConfiguration.execute(ServletConfiguration.java:248)
 at winstone.RequestDispatcher.forward(RequestDispatcher.java:333)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:376)
 at 
 hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:95)
 at 
 hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:87)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
 at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:47)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
 at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
 at 
 hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:166)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:173)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:63)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
 at 
 hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66)
 at 
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at 
 hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)
 at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)
 at winstone.FilterConfiguration.execute(FilterConfiguration.java:194

Can anoyone help determine the cause of a Jenkins crash.

2012-11-12 Thread MDKF
Hi All,
 My Jenkins server died last night. I found the following text in the error 
log. Can anyone help me decipher what happened? Ive had these out of memory 
exceptions before.


Nov 11, 2012 12:39:50 AM winstone.Logger logInternal
SEVERE: Error while serving http://nwd2hscjnks/job/VectorGenerator/api/xml
java.lang.reflect.InvocationTargetException
at sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:288)
at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:151)
at 
org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:90)
at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:111)
at 
org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:203)
at 
org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:241)
at 
org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:574)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:659)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:488)
at org.kohsuke.stapler.Stapler.service(Stapler.java:162)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:45)
at winstone.ServletConfiguration.execute(ServletConfiguration.java:248)
at winstone.RequestDispatcher.forward(RequestDispatcher.java:333)
at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:376)
at 
hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:95)
at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:87)
at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:47)
at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
at 
hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:166)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:173)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:63)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
at 
hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)
at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)
at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
at 
org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:50)
at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
at winstone.RequestDispatcher.doFilter(RequestDispatcher.java:366)
at 
hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)
at winstone.FilterConfiguration.execute(FilterConfiguration.java:194)
at