Re: Jenkins help

2017-01-05 Thread Christoph Nenning
Hi, this is probably what you need: https://wiki.jenkins-ci.org/display/JENKINS/Running+Jenkins+behind+Apache Regards, Christoph > From: KingTux > To: Jenkins Users , > Date: 05.01.2017 00:59 > Subject: Re: Jenkins help > Sent by: jenkinsci-users@googlegroups.com > &

Re: Jenkins help

2017-01-04 Thread KingTux
Thank you, I have figured out question one, two, three. But I do have a new question. How do I make it be port 80 with apache running. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails fro

Re: Jenkins help

2017-01-04 Thread Slide
4. Januar 2017 17:03 > *To:* jenkinsci-users@googlegroups.com > *Subject:* Re: Jenkins help > > > > I don't think you want "Anyone can do anything" that would open the > instance up to a lot of security issues. > > > > On Wed, Jan 4, 2017 at 9:02 A

RE: Jenkins help

2017-01-04 Thread Jennifer Hofmeister
: Mittwoch, 4. Januar 2017 17:03 To: jenkinsci-users@googlegroups.com Subject: Re: Jenkins help I don't think you want "Anyone can do anything" that would open the instance up to a lot of security issues. On Wed, Jan 4, 2017 at 9:02 AM Jennifer Hofmeister mailto:jennifer.hofmeis.

Re: Jenkins help

2017-01-04 Thread Slide
left-hand side: Manage Jenkins > > MyJavaJob main page, left-hand side: Workspace > > > > ;) > > > > *From:* jenkinsci-users@googlegroups.com [mailto: > jenkinsci-users@googlegroups.com] *On Behalf Of *Jennifer Hofmeister > *Sent:* Mittwoch, 4. Januar 2017 17:00 >

RE: Jenkins help

2017-01-04 Thread Jennifer Hofmeister
: jenkinsci-users@googlegroups.com Subject: RE: Jenkins help Hi! 1: if you want only to compile one file, I guess you can just choose a “sh” or “batch” build step. Else, you need a build tool like maven, which is a little more complex (and requires some basic understanding of what’s going on). You

RE: Jenkins help

2017-01-04 Thread Jennifer Hofmeister
Sorry, I don’t know. Maybe ask https://plugins.jenkins.io/ if there’s a plugin for that. Cheers Jennifer From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of KingTux Sent: Mittwoch, 4. Januar 2017 15:11 To: Jenkins Users Subject: Jenkins help Hello,

Jenkins help

2017-01-04 Thread KingTux
Hello, I have some questions I hope some people can help me with. Question one: How do I compile a jar file? the system is getting the source from my Github https://github.com/KingTux2/ServerInfo Question Two: How do I make it be able to be download as a jar file. Question Three: How do I make my

Re: Problem running batch script from Jenkins - help please!

2014-07-04 Thread corneil.duples...@gmail.com
Another thing to keep in mind is to keep your scripts and build simple so that they modify local artefacts and then use a plugin to copy/publish the artefacts where you want them. On 3 July 2014 22:41, Slide wrote: > Yes, the service will be running as the local service account which > usually

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread Slide
Yes, the service will be running as the local service account which usually has access to nothing. You can edit the service configuration to login as a user that has the access to the UNC path. On Thu, Jul 3, 2014 at 12:32 PM, wrote: > I am running the job as a user who has access. is that dif

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread funeeldy11
YES! that was it. Jenkins was running as a system user. Thank you! On Thursday, July 3, 2014 12:23:38 PM UTC-4, slide wrote: > > Or, if you don't mind the security implications, you could run Jenkins as > a user that has access... > > > On Thu, Jul 3, 2014 at 8:21 AM, Les Mikesell > wrote: >

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread Les Mikesell
On Thu, Jul 3, 2014 at 2:32 PM, wrote: > I am running the job as a user who has access. is that different than the > user running jenkins? Yes, the user running jenkins will depend on how the slave agent was started. Or the master if you aren't using slaves. -- Les Mikesell lesmikes.

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread funeeldy11
I am running the job as a user who has access. is that different than the user running jenkins? On Thursday, July 3, 2014 12:23:38 PM UTC-4, slide wrote: > > Or, if you don't mind the security implications, you could run Jenkins as > a user that has access... > > > On Thu, Jul 3, 2014 at 8:21 A

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread Sam K
Oh, I have come across this error in my previous job. Unfortunately, I cannot test it now. But instead of %BuildResultsDir%, try $BuildResultsDir$ and see if it helps. On Thursday, July 3, 2014 7:31:12 AM UTC-7, funee...@gmail.com wrote: > > >We run our build.bat on a windows box. We ar

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread Slide
Or, if you don't mind the security implications, you could run Jenkins as a user that has access... On Thu, Jul 3, 2014 at 8:21 AM, Les Mikesell wrote: > On Thu, Jul 3, 2014 at 9:31 AM, wrote: > > > > > > We run our build.bat on a windows box. We are moving this into jenkins. > One of the comm

Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread Les Mikesell
On Thu, Jul 3, 2014 at 9:31 AM, wrote: > > > We run our build.bat on a windows box. We are moving this into jenkins. One > of the command line args is a UNC pathname. The batch script works fine on > the windows machine in a cmd window. When I execute the same command in > jenkins batch script,

Problem running batch script from Jenkins - help please!

2014-07-03 Thread funeeldy11
We run our build.bat on a windows box. We are moving this into jenkins. One of the command line args is a UNC pathname. The batch script works fine on the windows machine in a cmd window. When I execute the same command in jenkins batch script, it cannot see the unc path somehow. The batch