Cannot open TCP port for JNLP agents

2018-09-13 Thread Fábio Cabrita
Hello,

I am trying to connect one windows agent with a jenkins server, where both 
are in the same network, and that windows is at reach of jenkins server, 
but still I am getting this error:

[image: Screenshot_3.jpg]

This windows can ping to jenkins.XXX.local without problem, but seems like 
port 8090 is closed from outside:


[image: Screenshot_5.jpg]

And from jenkins server perspective I have add that 8090 port to firewall 
but still nothing, so I think that I can conclud that there is no service 
running in that port:


[image: Screenshot_6.jpg]

I have already reboot jenkins but no effect has been done.

Anyone knows if I need to config anything else then port number in jenkins 
server?

-- 
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/8c7ad78a-88c7-4ab6-837d-87a6aeabd9f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Directory does not exist while compilling just through Jenkins

2018-03-13 Thread Fábio Cabrita


This is the pipeline configuration that is being used:

<https://lh3.googleusercontent.com/-1x5-pcHGmbM/WqeoLhEfFfI/u9Y/BadgNQNNCrMq4lYL1iwaTB-tbpKjYtxgQCLcBGAs/s1600/Screenshot_10.png>


segunda-feira, 12 de Março de 2018 às 14:35:33 UTC, Fábio Cabrita escreveu:
>
> Hello,
>
> I am trying to compile one repo with a jenkinsfile from a remote git, when 
> a change is detected, but while it tries to compile I receive this error:
>
> :: error: (1180) directory "dist/default/production" does not exist
>
> And I really dont know why, since I am able to compile manually in this 
> system, and while it is compiling it creates new folders and files during 
> compilation.
>
>
> In jenkins there is no sign of new folders, I have already double checked at 
> jenkins home directory. 
>
>
> Do you know what can be the source of this problem?
>
>
> Thanks!
>
>

-- 
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/066bfdef-fdc1-4509-83f7-a0fbd24c2cef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Directory does not exist while compilling just through Jenkins

2018-03-13 Thread Fábio Cabrita


segunda-feira, 12 de Março de 2018 às 14:35:33 UTC, Fábio Cabrita escreveu:
>
> Hello,
>
> I am trying to compile one repo with a jenkinsfile from a remote git, when 
> a change is detected, but while it tries to compile I receive this error:
>
> :: error: (1180) directory "dist/default/production" does not exist
>
> And I really dont know why, since I am able to compile manually in this 
> system, and while it is compiling it creates new folders and files during 
> compilation.
>
>
> In jenkins there is no sign of new folders, I have already double checked at 
> jenkins home directory. 
>
>
> Do you know what can be the source of this problem?
>
>
> Thanks!
>
>

-- 
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/aa5ad89c-cf45-4d4f-8c88-47cfc0bac6c5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Directory does not exist while compilling just through Jenkins

2018-03-12 Thread Fábio Cabrita
Hello,

I am trying to compile one repo with a jenkinsfile from a remote git, when 
a change is detected, but while it tries to compile I receive this error:

:: error: (1180) directory "dist/default/production" does not exist

And I really dont know why, since I am able to compile manually in this system, 
and while it is compiling it creates new folders and files during compilation.


In jenkins there is no sign of new folders, I have already double checked at 
jenkins home directory. 


Do you know what can be the source of this problem?


Thanks!

-- 
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/9374a848-e90d-46ab-9540-a192f658d5bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Question about JDK and Maven through Jenkins

2018-02-19 Thread Fábio Cabrita
Thats the strange part because I have *javac *installed in this system.

Now I have added a new field for jdk in jenkinsfile(as well as in Global 
Tools Installer) and its working:

tools {
jdk 'java_9'
}


Thanks for the help Cyrille Le Clerc!

segunda-feira, 19 de Fevereiro de 2018 às 13:54:39 UTC, Cyrille Le Clerc 
escreveu:
>
> Can you install "java-1.8.0-openjdk-devel" on your server so that 
> javac-1.8 is also installed?
>
> I suspect that Jenkins and Maven get tricked by the fact that your default 
> "java" installation doesn't have a "javac" compiler.
>
> If you cannot install "java-1.8.0-openjdk-devel", I strongly recommend to 
> rely on Jenkins' capability to install a JDK:
>
>- In Jenkins UI, with Jenkins administrator privileges, navigate to 
>"Manage Jenkins / Global Tools Installer"
>- In the "JDK" section, click on "JDK Installations..." then "Add JDK"
>   - Choose the name "1.8"
>   - Select a JDK 8 version (e.g. "Java SE Development Kit 8u162")
>   - Enter oracle.com credentials 
>- Update your pipeline script and add "jdk: '1.8' "to your 
>"withMaven"() step: "withMaven(jdk: 1.8', ...){...}"
>
> Cyrille
>
> On Monday, February 19, 2018 at 11:29:09 AM UTC+1, Fábio Cabrita wrote:
>>
>> Here are both command paths:
>>
>> root@jenkins-server /h/jenkins> which java
>> /bin/java
>> root@jenkins-server /h/jenkins> which javac
>> /bin/javac
>>
>> While checking mvn, I notice that Java home is set to JRE instead of JDK:
>>
>> [jenkins@jenkins-server ~]$ mvn --version
>> Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-
>> 18T08:58:13+01:00)
>> Maven home: /usr/local/maven
>> Java version: 1.8.0_161, vendor: Oracle Corporation
>> Java home: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/
>> jre
>> Default locale: en_US, platform encoding: UTF-8
>> OS name: "linux", version: "3.10.0-693.17.1.el7.x86_64", arch: "amd64", 
>> family: "unix"
>>
>> Checking Java version:
>>
>> [jenkins@jenkins-server ~]$ java -version
>> openjdk version "1.8.0_161"
>> OpenJDK Runtime Environment (build 1.8.0_161-b14)
>> OpenJDK 64-Bit Server VM (build 25.161-b14, mixed mode)
>>
>> In this system I have several Java's versions installed in this system:
>>
>> [root@jenkins-server ~]# sudo update-alternatives --config java
>>
>> There are 2 programs which provide 'java'.
>>
>>   SelectionCommand
>> ---
>> *+ 1   java-1.8.0-openjdk.x86_64 (/usr/lib/jvm/java-1.8.0-openjdk
>> -1.8.0.161-0.b14.el7_4.x86_64/jre/bin/java)
>>2   java-1.7.0-openjdk.x86_64 (/usr/lib/jvm/java-1.7.0-openjdk
>> -1.7.0.161-2.6.12.0.el7_4.x86_64/jre/bin/java)
>>
>> [root@jenkins-server ~]# sudo update-alternatives --config javac
>>
>> There is 1 program that provides 'javac'.
>>
>> Selection Command
>> ---
>> *+ 1 java-1.7.0-openjdk.x86_64 (/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.161
>> -2.6.12.0.el7_4.x86_64/bin/javac)
>>
>> But dont know how to set mavens to use java JDK.
>>
>

-- 
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/0dc56b5f-bc7f-442d-a991-dc77efaa177d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Question about JDK and Maven through Jenkins

2018-02-19 Thread Fábio Cabrita
Here are both command paths:

root@jenkins-server /h/jenkins> which java
/bin/java
root@jenkins-server /h/jenkins> which javac
/bin/javac

While checking mvn, I notice that Java home is set to JRE instead of JDK:

[jenkins@jenkins-server ~]$ mvn --version
Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T08:
58:13+01:00)
Maven home: /usr/local/maven
Java version: 1.8.0_161, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "3.10.0-693.17.1.el7.x86_64", arch: "amd64", 
family: "unix"

Checking Java version:

[jenkins@jenkins-server ~]$ java -version
openjdk version "1.8.0_161"
OpenJDK Runtime Environment (build 1.8.0_161-b14)
OpenJDK 64-Bit Server VM (build 25.161-b14, mixed mode)

In this system I have several Java's versions installed in this system:

[root@jenkins-server ~]# sudo update-alternatives --config java

There are 2 programs which provide 'java'.

  SelectionCommand
---
*+ 1   java-1.8.0-openjdk.x86_64 (/usr/lib/jvm/java-1.8.0-openjdk-
1.8.0.161-0.b14.el7_4.x86_64/jre/bin/java)
   2   java-1.7.0-openjdk.x86_64 (/usr/lib/jvm/java-1.7.0-openjdk-
1.7.0.161-2.6.12.0.el7_4.x86_64/jre/bin/java)

[root@jenkins-server ~]# sudo update-alternatives --config javac

There is 1 program that provides 'javac'.

Selection Command
---
*+ 1 java-1.7.0-openjdk.x86_64 (/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.161-
2.6.12.0.el7_4.x86_64/bin/javac)

But dont know how to set mavens to use java JDK.

-- 
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/4b27f009-70bd-4f94-89e4-63178e24195a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Question about JDK and Maven through Jenkins

2018-02-16 Thread Fábio Cabrita
Using *mvn -X *to get an extented debug I got:

[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on 
project jenkins-example: Compilation failure

 
<http://192.168.1.6:8080/blue/organizations/jenkins/jenkins-example-10/detail/jenkins-example-10/20/pipeline#step-16-log-438>[ERROR]
 No compiler is provided in this environment. Perhaps you are running on a JRE 
rather than a JDK?

 
<http://192.168.1.6:8080/blue/organizations/jenkins/jenkins-example-10/detail/jenkins-example-10/20/pipeline#step-16-log-439>[ERROR]
 -> [Help 1]

 
<http://192.168.1.6:8080/blue/organizations/jenkins/jenkins-example-10/detail/jenkins-example-10/20/pipeline#step-16-log-440>org.apache.maven.lifecycle.LifecycleExecutionException:
 Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on 
project jenkins-example: Compilation failure

 
<http://192.168.1.6:8080/blue/organizations/jenkins/jenkins-example-10/detail/jenkins-example-10/20/pipeline#step-16-log-441>No
 compiler is provided in this environment. Perhaps you are running on a JRE 
rather than a JDK?




quarta-feira, 14 de Fevereiro de 2018 às 18:42:01 UTC, Fábio Cabrita 
escreveu:
>
> Hello,
>
> Its my first time using jenkins and I am still learning how it works, so 
> if you see some unnecessary info dont be mad lol.
>
> I am using a CentOS 7, and I have installed JAVA(openjdk version 
> "1.8.0_161") and MAVEN(Apache Maven 3.5.2).
>
> Now, I have imported the repo from this tutorial(
> https://www.youtube.com/watch?v=s73nhwYBtzE), to my new account at 
> bitbucket.
>
> As plugins I have install several that to me was looking necessary for 
> that tutorial: https://pastebin.com/zU19r8PV
>
> Then I created a new Pipeline at Jenkins with the right login for my 
> bitbucket repo git.
>
> Then tried to 'Build Now' but it fails at Compile Stage:
>
> [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
> jenkins-example ---
> [INFO] Changes detected - recompiling the module!
> [INFO] Compiling 1 source file to 
> /var/lib/jenkins/workspace/jenkins-example/target/classes
> [INFO] -
> *[ERROR] COMPILATION ERROR :*
> [INFO] -
> *[ERROR] No compiler is provided in this environment. Perhaps you are 
> running on a JRE rather than a JDK?*
> [INFO] 1 error
> [INFO] 1 error
> [INFO] -
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 0.767 s
> [INFO] Finished at: 2018-02-13T16:45:06Z
> [INFO] Final Memory: 9M/102M
> [INFO] 
> 
> [INFO] [jenkins-event-spy] Generated 
> /var/lib/jenkins/workspace/jenkins-example@tmp/withMavenabb6bf9d/maven-spy-20180213-164505-820349381958923572055.log
> *[ERROR] Failed to execute goal 
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile 
> (default-compile) on project jenkins-example: Compilation failure*
> *[ERROR] No compiler is provided in this environment. Perhaps you are 
> running on a JRE rather than a JDK?*
> *[ERROR] -> [Help 1]*
> *[ERROR] *
> *[ERROR] To see the full stack trace of the errors, re-run Maven with the 
> -e switch.*
> *[ERROR] Re-run Maven using the -X switch to enable full debug logging.*
> *[ERROR] *
> *[ERROR] For more information about the errors and possible solutions, 
> please read the following articles:*
> *[ERROR] [Help 1] 
> http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException 
> <http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException>*
>
> Now a side of having JAVA and MAVIN installed in CentOS, I was trying to 
> use JDK from java.sun.com(with an account from Oracle) and Maven from 
> Apache through Jenkins webservice in Global Tool Configuration but still I 
> have the same output errors.
>
> Also at Maven I add the name of maven_3_5_2 and change it in jenkinsfile 
> in that repo that I have cloned to my account.
>
> This is a noob question, but I need some guidence here =|
>
> Thanks!
>

-- 
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/b66813b4-7f34-4225-b7ba-b1ce461de3ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Question about JDK and Maven through Jenkins

2018-02-14 Thread Fábio Cabrita
Hello,

Its my first time using jenkins and I am still learning how it works, so if 
you see some unnecessary info dont be mad lol.

I am using a CentOS 7, and I have installed JAVA(openjdk version 
"1.8.0_161") and MAVEN(Apache Maven 3.5.2).

Now, I have imported the repo from this tutorial(
https://www.youtube.com/watch?v=s73nhwYBtzE), to my new account at 
bitbucket.

As plugins I have install several that to me was looking necessary for that 
tutorial: https://pastebin.com/zU19r8PV

Then I created a new Pipeline at Jenkins with the right login for my 
bitbucket repo git.

Then tried to 'Build Now' but it fails at Compile Stage:

[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
jenkins-example ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to 
/var/lib/jenkins/workspace/jenkins-example/target/classes
[INFO] -
*[ERROR] COMPILATION ERROR :*
[INFO] -
*[ERROR] No compiler is provided in this environment. Perhaps you are 
running on a JRE rather than a JDK?*
[INFO] 1 error
[INFO] 1 error
[INFO] -
[INFO] 

[INFO] BUILD FAILURE
[INFO] 

[INFO] Total time: 0.767 s
[INFO] Finished at: 2018-02-13T16:45:06Z
[INFO] Final Memory: 9M/102M
[INFO] 

[INFO] [jenkins-event-spy] Generated 
/var/lib/jenkins/workspace/jenkins-example@tmp/withMavenabb6bf9d/maven-spy-20180213-164505-820349381958923572055.log
*[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:3.1:compile 
(default-compile) on project jenkins-example: Compilation failure*
*[ERROR] No compiler is provided in this environment. Perhaps you are 
running on a JRE rather than a JDK?*
*[ERROR] -> [Help 1]*
*[ERROR] *
*[ERROR] To see the full stack trace of the errors, re-run Maven with the 
-e switch.*
*[ERROR] Re-run Maven using the -X switch to enable full debug logging.*
*[ERROR] *
*[ERROR] For more information about the errors and possible solutions, 
please read the following articles:*
*[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException*

Now a side of having JAVA and MAVIN installed in CentOS, I was trying to 
use JDK from java.sun.com(with an account from Oracle) and Maven from 
Apache through Jenkins webservice in Global Tool Configuration but still I 
have the same output errors.

Also at Maven I add the name of maven_3_5_2 and change it in jenkinsfile in 
that repo that I have cloned to my account.

This is a noob question, but I need some guidence here =|

Thanks!

-- 
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/d2ce894c-c280-4976-94cb-13a213c56acc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.