Re: jenkins issue

2022-10-12 Thread pooja pooja
I tried above videos and  whatever suggestion avaialable in google but
still am getting same issue

On Wed, Oct 12, 2022, 2:22 PM Iván Fernández Calvo 
wrote:

> You do not pass any credentials around the script in the pipeline,
> So the command “git pull” failed because does not have a way to
> authenticate. Check the article and the video of my previous message, there
> is explained how to pass credentials to your script.
>
> El 12 oct 2022, a las 8:13, pooja pooja  escribió:
>
> 
> this is my deploy.sh file
> #!/bin/bash
>
> ssh ubuntu@65.0.256.137 < #cd /home/ubuntu/GJ_DEV/GJ_API
> cd  gj/pat
> sudo git pull
> pm2 restart all
> pm2 status
>
> pipeline script
> currentBuild.displayName = "gj-api-#"+currentBuild.number
> pipeline{
> agent any
> stages{
> stage("GITLAB_CHECKOUT"){
> steps{
> git branch: 'development', credentialsId: 'GITHUB1', url:'
> https://github.com/gj/pat.git'
> }
> }
> stage("pm2 start"){
> steps{
> sh 'chmod u+x ./scripts/deploy.sh'
> sh './scripts/deploy.sh'
> }
> }
> }
>
>
> can you guys tell me, where the script was wrong,am not able to find the
> error
>
>
>
> On Tue, Oct 11, 2022 at 10:00 PM Ivan Fernandez Calvo <
> kuisathave...@gmail.com> wrote:
>
>> one more thing to pass the Git credentials to your script you could check
>> this articles
>>
>> https://www.jenkins.io/blog/2021/07/27/git-credentials-binding-phase-1/
>> https://www.youtube.com/watch?v=HSA_mZoADSw
>>
>> El martes, 11 de octubre de 2022 a las 18:28:26 UTC+2, Ivan Fernandez
>> Calvo escribió:
>>
>>> The error is related to something your script is doing, it is not
>>> related to Jenkins at all. Try to review the code you are executing and
>>> figure out which line is and what is wrong. Googling the error seems
>>> related to configuring the git user and git email and the git
>>> authentication when you access GitHub using HTTPS URLs. It seems to be an
>>> error message from Ruby code. The solution seems to add the authentication
>>> to the URL or use an authentication store proper for your environment (I
>>> preferer to use gh see https://cli.github.com/manual/gh_auth_setup-git),
>>> but I am not sure depends on your script.
>>>
>>>
>>> https://stackoverflow.com/questions/54454853/fatal-could-not-read-username-for-https-github-com-no-such-device-or-addr
>>>
>>> https://stackoverflow.com/questions/69995273/access-organization-repo-on-github-using-personal-access-token-inside-bash-scrip
>>>
>>> https://itecnote.com/tecnote/ruby-on-rails-fatal-could-not-read-username-for-https-github-com-no-such-device-or-address/
>>> https://github.com/github/hub/issues/1644
>>>
>>> El martes, 11 de octubre de 2022 a las 13:37:53 UTC+2,
>>> pooja...@gmail.com escribió:
>>>
 Hi mark and Mithun,

 am getting error in jenkins
 [image: image.png]

 On Tue, Oct 11, 2022 at 9:59 AM pooja pooja  wrote:

> this is my exact issue
>
> [image: image.png]
>
> On Mon, Oct 10, 2022 at 7:15 PM Mithun Raj  wrote:
>
>> 1. Update your OS,
>>
>> 2. Check if the Git credentials are injected correctly,
>> If running from bastion host or jump box make sure your git hub or
>> enterprise hostnames and IP are updated (ask git admin) in the hosts file
>> under /etc/hosts
>>
>> 3. Update—env is the Git global env for git
>> You can either set or unset those in your Linux machine it’s your Git
>> ID and pass which you can set as global access. not recommended if you 
>> have
>> set it under Jenkins credentials.
>>
>>
>> On Mon, 10 Oct 2022 at 5:49 PM, pooja pooja 
>> wrote:
>>
>>> in jenkins am getting below error
>>> New release '22.04.1 LTS' available. Run 'do-release-upgrade' to
>>> upgrade to it.
>>>  fatal: could not read Username for 'https://github.com': No such
>>> device or address
>>>  Use --update-env to update environment variables
>>>
>>> --
>>> 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/cec7b2ee-88ba-417d-be66-95d4954dbbfen%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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
>> 

Re: jenkins issue

2022-10-12 Thread Iván Fernández Calvo
You do not pass any credentials around the script in the pipeline,So the command “git pull” failed because does not have a way to authenticate. Check the article and the video of my previous message, there is explained how to pass credentials to your script.El 12 oct 2022, a las 8:13, pooja pooja  escribió:this is my deploy.sh file#!/bin/bashssh ubuntu@65.0.256.137 <#cd /home/ubuntu/GJ_DEV/GJ_APIcd  gj/patsudo git pullpm2 restart allpm2 statuspipeline scriptcurrentBuild.displayName = "gj-api-#"+currentBuild.numberpipeline{    agent any     stages{        stage("GITLAB_CHECKOUT"){            steps{                git branch: 'development', credentialsId: 'GITHUB1', url:'https://github.com/gj/pat.git'            }        }        stage("pm2 start"){            steps{                sh 'chmod u+x ./scripts/deploy.sh'                sh './scripts/deploy.sh'            }        }    }can you guys tell me, where the script was wrong,am not able to find the errorOn Tue, Oct 11, 2022 at 10:00 PM Ivan Fernandez Calvo  wrote:one more thing to pass the Git credentials to your script you could check this articleshttps://www.jenkins.io/blog/2021/07/27/git-credentials-binding-phase-1/https://www.youtube.com/watch?v=HSA_mZoADSwEl martes, 11 de octubre de 2022 a las 18:28:26 UTC+2, Ivan Fernandez Calvo escribió:The error is related to something your script is doing, it is not related to Jenkins at all. Try to review the code you are executing and figure out which line is and what is wrong. Googling the error seems related to configuring the git user and git email and the git authentication when you access GitHub using HTTPS URLs. It seems to be an error message from Ruby code. The solution seems to add the authentication to the URL or use an authentication store proper for your environment (I preferer to use gh see https://cli.github.com/manual/gh_auth_setup-git), but I am not sure depends on your script.https://stackoverflow.com/questions/54454853/fatal-could-not-read-username-for-https-github-com-no-such-device-or-addrhttps://stackoverflow.com/questions/69995273/access-organization-repo-on-github-using-personal-access-token-inside-bash-scriphttps://itecnote.com/tecnote/ruby-on-rails-fatal-could-not-read-username-for-https-github-com-no-such-device-or-address/https://github.com/github/hub/issues/1644El martes, 11 de octubre de 2022 a las 13:37:53 UTC+2, pooja...@gmail.com escribió:Hi mark and Mithun,am getting error in jenkins On Tue, Oct 11, 2022 at 9:59 AM pooja pooja  wrote:this is my exact issueOn Mon, Oct 10, 2022 at 7:15 PM Mithun Raj  wrote:1. Update your OS,2. Check if the Git credentials are injected correctly,If running from bastion host or jump box make sure your git hub or enterprise hostnames and IP are updated (ask git admin) in the hosts file under /etc/hosts3. Update—env is the Git global env for gitYou can either set or unset those in your Linux machine it’s your Git ID and pass which you can set as global access. not recommended if you have set it under Jenkins credentials.On Mon, 10 Oct 2022 at 5:49 PM, pooja pooja  wrote:in jenkins am getting below errorNew release '22.04.1 LTS' available.
Run 'do-release-upgrade' to upgrade to it. fatal: could not read Username for 'https://github.com': No such device or address Use --update-env to update environment variables



-- 
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/cec7b2ee-88ba-417d-be66-95d4954dbbfen%40googlegroups.com.




-- 
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/CANwMLksgv3L6S%2BGdZmXxq0fw8eOCJ_HW-3sbRqpDhnqsB6X71A%40mail.gmail.com.






-- 
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/9bed72a1-5419-42fe-ae55-775f0793aa10n%40googlegroups.com.




-- 
You received this message because you are subscribed to a topic in the Google Groups "Jenkins Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jenkinsci-users/4MFd7CVFD3U/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 

Re: jenkins issue

2022-10-12 Thread pooja pooja
this is my deploy.sh file
#!/bin/bash

ssh ubuntu@65.0.256.137  wrote:

> one more thing to pass the Git credentials to your script you could check
> this articles
>
> https://www.jenkins.io/blog/2021/07/27/git-credentials-binding-phase-1/
> https://www.youtube.com/watch?v=HSA_mZoADSw
>
> El martes, 11 de octubre de 2022 a las 18:28:26 UTC+2, Ivan Fernandez
> Calvo escribió:
>
>> The error is related to something your script is doing, it is not related
>> to Jenkins at all. Try to review the code you are executing and figure out
>> which line is and what is wrong. Googling the error seems related to
>> configuring the git user and git email and the git authentication when you
>> access GitHub using HTTPS URLs. It seems to be an error message from Ruby
>> code. The solution seems to add the authentication to the URL or use an
>> authentication store proper for your environment (I preferer to use gh see
>> https://cli.github.com/manual/gh_auth_setup-git), but I am not sure
>> depends on your script.
>>
>>
>> https://stackoverflow.com/questions/54454853/fatal-could-not-read-username-for-https-github-com-no-such-device-or-addr
>>
>> https://stackoverflow.com/questions/69995273/access-organization-repo-on-github-using-personal-access-token-inside-bash-scrip
>>
>> https://itecnote.com/tecnote/ruby-on-rails-fatal-could-not-read-username-for-https-github-com-no-such-device-or-address/
>> https://github.com/github/hub/issues/1644
>>
>> El martes, 11 de octubre de 2022 a las 13:37:53 UTC+2, pooja...@gmail.com
>> escribió:
>>
>>> Hi mark and Mithun,
>>>
>>> am getting error in jenkins
>>> [image: image.png]
>>>
>>> On Tue, Oct 11, 2022 at 9:59 AM pooja pooja  wrote:
>>>
 this is my exact issue

 [image: image.png]

 On Mon, Oct 10, 2022 at 7:15 PM Mithun Raj  wrote:

> 1. Update your OS,
>
> 2. Check if the Git credentials are injected correctly,
> If running from bastion host or jump box make sure your git hub or
> enterprise hostnames and IP are updated (ask git admin) in the hosts file
> under /etc/hosts
>
> 3. Update—env is the Git global env for git
> You can either set or unset those in your Linux machine it’s your Git
> ID and pass which you can set as global access. not recommended if you 
> have
> set it under Jenkins credentials.
>
>
> On Mon, 10 Oct 2022 at 5:49 PM, pooja pooja 
> wrote:
>
>> in jenkins am getting below error
>> New release '22.04.1 LTS' available. Run 'do-release-upgrade' to
>> upgrade to it.
>>  fatal: could not read Username for 'https://github.com': No such
>> device or address
>>  Use --update-env to update environment variables
>>
>> --
>> 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/cec7b2ee-88ba-417d-be66-95d4954dbbfen%40googlegroups.com
>> 
>> .
>>
> --
> 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/CANwMLksgv3L6S%2BGdZmXxq0fw8eOCJ_HW-3sbRqpDhnqsB6X71A%40mail.gmail.com
> 
> .
>
 --
> 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/9bed72a1-5419-42fe-ae55-775f0793aa10n%40googlegroups.com
> 
> .
>

-- 
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 

Re: jenkins issue

2022-10-11 Thread Ivan Fernandez Calvo
one more thing to pass the Git credentials to your script you could check 
this articles

https://www.jenkins.io/blog/2021/07/27/git-credentials-binding-phase-1/
https://www.youtube.com/watch?v=HSA_mZoADSw

El martes, 11 de octubre de 2022 a las 18:28:26 UTC+2, Ivan Fernandez Calvo 
escribió:

> The error is related to something your script is doing, it is not related 
> to Jenkins at all. Try to review the code you are executing and figure out 
> which line is and what is wrong. Googling the error seems related to 
> configuring the git user and git email and the git authentication when you 
> access GitHub using HTTPS URLs. It seems to be an error message from Ruby 
> code. The solution seems to add the authentication to the URL or use an 
> authentication store proper for your environment (I preferer to use gh see 
> https://cli.github.com/manual/gh_auth_setup-git), but I am not sure 
> depends on your script.
>
>
> https://stackoverflow.com/questions/54454853/fatal-could-not-read-username-for-https-github-com-no-such-device-or-addr
>
> https://stackoverflow.com/questions/69995273/access-organization-repo-on-github-using-personal-access-token-inside-bash-scrip
>
> https://itecnote.com/tecnote/ruby-on-rails-fatal-could-not-read-username-for-https-github-com-no-such-device-or-address/
> https://github.com/github/hub/issues/1644
>
> El martes, 11 de octubre de 2022 a las 13:37:53 UTC+2, pooja...@gmail.com 
> escribió:
>
>> Hi mark and Mithun,
>>
>> am getting error in jenkins 
>> [image: image.png]
>>
>> On Tue, Oct 11, 2022 at 9:59 AM pooja pooja  wrote:
>>
>>> this is my exact issue
>>>
>>> [image: image.png]
>>>
>>> On Mon, Oct 10, 2022 at 7:15 PM Mithun Raj  wrote:
>>>
 1. Update your OS,

 2. Check if the Git credentials are injected correctly,
 If running from bastion host or jump box make sure your git hub or 
 enterprise hostnames and IP are updated (ask git admin) in the hosts file 
 under /etc/hosts

 3. Update—env is the Git global env for git
 You can either set or unset those in your Linux machine it’s your Git 
 ID and pass which you can set as global access. not recommended if you 
 have 
 set it under Jenkins credentials.


 On Mon, 10 Oct 2022 at 5:49 PM, pooja pooja  wrote:

> in jenkins am getting below error
> New release '22.04.1 LTS' available. Run 'do-release-upgrade' to 
> upgrade to it.
>  fatal: could not read Username for 'https://github.com': No such 
> device or address
>  Use --update-env to update environment variables
>
> -- 
> 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/cec7b2ee-88ba-417d-be66-95d4954dbbfen%40googlegroups.com
>  
> 
> .
>
 -- 
 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/CANwMLksgv3L6S%2BGdZmXxq0fw8eOCJ_HW-3sbRqpDhnqsB6X71A%40mail.gmail.com
  
 
 .

>>>

-- 
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/9bed72a1-5419-42fe-ae55-775f0793aa10n%40googlegroups.com.


Re: jenkins issue

2022-10-11 Thread Ivan Fernandez Calvo
The error is related to something your script is doing, it is not related 
to Jenkins at all. Try to review the code you are executing and figure out 
which line is and what is wrong. Googling the error seems related to 
configuring the git user and git email and the git authentication when you 
access GitHub using HTTPS URLs. It seems to be an error message from Ruby 
code. The solution seems to add the authentication to the URL or use an 
authentication store proper for your environment (I preferer to use gh see 
https://cli.github.com/manual/gh_auth_setup-git), but I am not sure depends 
on your script.

https://stackoverflow.com/questions/54454853/fatal-could-not-read-username-for-https-github-com-no-such-device-or-addr
https://stackoverflow.com/questions/69995273/access-organization-repo-on-github-using-personal-access-token-inside-bash-scrip
https://itecnote.com/tecnote/ruby-on-rails-fatal-could-not-read-username-for-https-github-com-no-such-device-or-address/
https://github.com/github/hub/issues/1644

El martes, 11 de octubre de 2022 a las 13:37:53 UTC+2, pooja...@gmail.com 
escribió:

> Hi mark and Mithun,
>
> am getting error in jenkins 
> [image: image.png]
>
> On Tue, Oct 11, 2022 at 9:59 AM pooja pooja  wrote:
>
>> this is my exact issue
>>
>> [image: image.png]
>>
>> On Mon, Oct 10, 2022 at 7:15 PM Mithun Raj  wrote:
>>
>>> 1. Update your OS,
>>>
>>> 2. Check if the Git credentials are injected correctly,
>>> If running from bastion host or jump box make sure your git hub or 
>>> enterprise hostnames and IP are updated (ask git admin) in the hosts file 
>>> under /etc/hosts
>>>
>>> 3. Update—env is the Git global env for git
>>> You can either set or unset those in your Linux machine it’s your Git ID 
>>> and pass which you can set as global access. not recommended if you have 
>>> set it under Jenkins credentials.
>>>
>>>
>>> On Mon, 10 Oct 2022 at 5:49 PM, pooja pooja  wrote:
>>>
 in jenkins am getting below error
 New release '22.04.1 LTS' available. Run 'do-release-upgrade' to 
 upgrade to it.
  fatal: could not read Username for 'https://github.com': No such 
 device or address
  Use --update-env to update environment variables

 -- 
 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/cec7b2ee-88ba-417d-be66-95d4954dbbfen%40googlegroups.com
  
 
 .

>>> -- 
>>> 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/CANwMLksgv3L6S%2BGdZmXxq0fw8eOCJ_HW-3sbRqpDhnqsB6X71A%40mail.gmail.com
>>>  
>>> 
>>> .
>>>
>>

-- 
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/35f000ba-871c-4fb8-97b4-0df516b19028n%40googlegroups.com.


Re: jenkins issue

2022-10-10 Thread Mithun Raj
1. Update your OS,

2. Check if the Git credentials are injected correctly,
If running from bastion host or jump box make sure your git hub or
enterprise hostnames and IP are updated (ask git admin) in the hosts file
under /etc/hosts

3. Update—env is the Git global env for git
You can either set or unset those in your Linux machine it’s your Git ID
and pass which you can set as global access. not recommended if you have
set it under Jenkins credentials.


On Mon, 10 Oct 2022 at 5:49 PM, pooja pooja  wrote:

> in jenkins am getting below error
> New release '22.04.1 LTS' available. Run 'do-release-upgrade' to upgrade
> to it.
>  fatal: could not read Username for 'https://github.com': No such device
> or address
>  Use --update-env to update environment variables
>
> --
> 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/cec7b2ee-88ba-417d-be66-95d4954dbbfen%40googlegroups.com
> 
> .
>

-- 
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/CANwMLksgv3L6S%2BGdZmXxq0fw8eOCJ_HW-3sbRqpDhnqsB6X71A%40mail.gmail.com.


Re: jenkins issue

2022-10-10 Thread Mark Waite


On Monday, October 10, 2022 at 6:19:34 AM UTC-6 Pooja wrote:

> in jenkins am getting below error
> New release '22.04.1 LTS' available. Run 'do-release-upgrade' to upgrade 
> to it.
>

That message is displayed when you're running an older version of Ubuntu, 
like 20.04 or 18.04.  They are trying to encourage you to upgrade so that 
you can remain on a supported operating system version.
 

>  fatal: could not read Username for 'https://github.com': No such device 
> or address
>

https://stackoverflow.com/questions/40274484/fatal-could-not-read-username-for-https-github-com-device-not-configured
 
indicates that usually means you're not using a credential with an HTTPS 
private git repository.  A credential is required and the credential has 
not been provided or is no longer valid.

 Use --update-env to update environment variables
>

Sorry, I don't recognize that message

Mark Waite

-- 
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/f80d74f9-adc5-4f70-a488-9a858a09dfb1n%40googlegroups.com.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-03-01 Thread iqbal md
Thanks all for your support.
The issue got resolved after upgrading Jenkins to the latest version i.e. 
2.89 along with latest plugins. All the plugins have been installed via 
Plugin Manager feature available in Jenkins.

-- 
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/350dcc63-104b-4813-848d-afbafe57770a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-26 Thread Slide
Several of the pipeline plugins have dependencies on plugins that require a
newer version of Jenkins, there is a warning in the plugin manager about
this when you are installing things. If you upgraded the pipeline plugins,
then this dependency was probably upgraded as well and requires at least
2.60.3 or something like that in order to run. You may need to upgrade to
that version at minimum.

On Mon, Feb 26, 2018 at 2:37 AM iqbal md  wrote:

> Hi Mark,
> I am using Jenkins 2.7.2.
> I tried installing the latest version of Pipeline:Job(workflow-job)
> plugins along with all the dependencies but still I am facing the same
> issue.
> Is it some problem with the Jenkins version, do I need to install the
> latest Jenkins version here or is it just the issue with plugins here?
>
> With Regards
> Iqbal
>
> --
> 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/fc36d85d-e81e-4557-990f-990de2de080c%40googlegroups.com
> 
> .
> 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/CAPiUgVfq65BWRMQubMaQe2JevPtvXU2PALve47b1o53X0-VhOA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-26 Thread iqbal md
Hi Mark,
I am using Jenkins 2.7.2.
I tried installing the latest version of Pipeline:Job(workflow-job) plugins 
along with all the dependencies but still I am facing the same issue.
Is it some problem with the Jenkins version, do I need to install the 
latest Jenkins version here or is it just the issue with plugins here?

With Regards
Iqbal

-- 
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/fc36d85d-e81e-4557-990f-990de2de080c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-24 Thread Daniel Beck

> On 24. Feb 2018, at 05:26, Mark Waite  wrote:
> 
> Installing a plugin by directly uploading an hpi file will not install any 
> additional dependencies, even if they are required.

This was fixed (for uploads through the UI) in Jenkins 2.1.

-- 
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/45F901ED-245A-4E67-BDAA-F3244D1B3ED7%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-23 Thread iqbal md
Thanks Mark.

Actually I have tried installing the plugins via Plugin Manager as well but 
that didn't resolve my issue.
I will try installing the latest workflow-job first followed by other 
plugins, will see if that addresses my issue, will keep you posted.

With Regards
Iqbal

-- 
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/30405cbd-93f0-4054-bc61-3001c2f62d4f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-23 Thread Mark Waite
On Fri, Feb 23, 2018 at 9:16 PM iqbal md  wrote:

>  Thanks Mark.
>
> I am bit curious to understand how did you manage to avoid installing
> additional dependencies beyond the ones which you have already installed in
> your image. As far as am aware once you install any plugin via Plugin
> Manager or directly uploading a hpi file in the Advanced section it pulls
> all the dependencies automatically.
>
>
Installing a plugin through the plugin manager will also install all the
mandatory dependencies of that plugin.

Installing a plugin by directly uploading an hpi file will *not* install
any additional dependencies, even if they are required.  My concern with
your description of your earlier attempts was that you mentioned at least
one of your techniques was to upload plugins directly.  That does not
install additional dependencies.


> I have gone through you list of your plugins shared as part of docker
> image but couldn't find the email-ext/email-ext-template plugins there.
>
>
I installed the plugin during a running session.  I did not change my
Docker image definition to add email-ext, since I don't use that plugin.

I did not install the email-ext-template plugin earlier.  This is the first
I've seen mention of that plugin.  I installed it interactively just now
and it did not add any additional plugins to my Jenkins installation.


> And moreover I can find the version of workflow-job as 2.9 as part of
> maven dependency in email-ext-template(V1.0)->email-ext-template(V2.43)
> while in your repository it is workflow-job(V2.17).
>

When I use a plugin, I prefer to use the most recent released versions of
that plugin.  When a plugin depends on an earlier version, later plugin
versions can be used to satisfy the dependency.

Mark Waite


> As advised by you, will install the support-core plugin and will try
> generating the bundle for comparison sake.
>
> With Regards
> Iqbal
>
> --
> 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/ed9d5e36-dff5-494a-b925-3a30a3ee9ce9%40googlegroups.com
> 
> .
> 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/CAO49JtHUK10JVJxaB3jEPfCVRibjYf44WiiGfGArnM-vHeD-Tw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-23 Thread iqbal md
 Thanks Mark.
 
I am bit curious to understand how did you manage to avoid installing 
additional dependencies beyond the ones which you have already installed in 
your image. As far as am aware once you install any plugin via Plugin 
Manager or directly uploading a hpi file in the Advanced section it pulls 
all the dependencies automatically.

I have gone through you list of your plugins shared as part of docker image 
but couldn't find the email-ext/email-ext-template plugins there.

And moreover I can find the version of workflow-job as 2.9 as part of maven 
dependency in email-ext-template(V1.0)->email-ext-template(V2.43) while in 
your repository it is workflow-job(V2.17).

As advised by you, will install the support-core plugin and will try 
generating the bundle for comparison sake.

With Regards
Iqbal

-- 
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/ed9d5e36-dff5-494a-b925-3a30a3ee9ce9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-21 Thread Mark Waite
I continue to suspect that the problem is due to manually uploading plugins 
without satisfying all the dependencies.

You might try installing the support-core plugin.  Use it to generate a 
support bundle so that it can be compared with a working system.

As an experiment, I installed the email-ext plugin in my Jenkins and it did 
not include any additional dependencies beyond the plugins I already have 
installed.  The plugins I have installed are listed in my docker image 
, 
in case you want to compare my plugin list and yours. I did not attempt to 
send mail with the email-ext plugin, I only tested installing it to see if 
it would require additional dependencies that I do not already have.

Mark Waite

On Wednesday, February 21, 2018 at 7:28:51 PM UTC-7, iqbal md wrote:
>
> Hi Mark,
>
> Thanks for replying.
>
> I am using Oracle Java 1.8.
>
> I have tried installing the email-extension template from the "Manage 
> Plugins" section as well as installed the .hpi file. In both the cases it 
> installed the necessary dependencies, meaning I didn't observed any 
> difference there with respect to dependencies atleast.
>
> Yes, I keep restarting the Jenkins after each installation to make the 
> changes effective. 
>
> Can you please brief me over the Plugin Manager page here which you are 
> asking for verifying upon the satisfaction of dependencies. Is it the 
> "Updates" section available in the "Manage Plugins" section or is the 
> Jenkins Plugin link which mentions the Required/Optional dependencies.
>
> The moment I get plugins(workflow-job and workflow-support) installed as 
> part of the dependencies I start hitting this issue, otherwise until then 
> the pipeline runs absolutely fine just that the email feature is not able 
> to relay mails.
>
> With Regards
> Iqbal
>
> On Wednesday, 21 February 2018 10:16:34 UTC+5:30, Mark Waite wrote:
>>
>> The RunWithSCM class is part of Jenkins core.  The report of class not 
>> found for a class in Jenkins core is quite surprising.  You say that you're 
>> running "Java 1.8".  Are you running Oracle Java 1.8, OpenJDK 1.8, or IBM 
>> Java 1.8?  If you're using IBM Java 1.8, then there are known problems 
>> running Jenkins over the IBM Java Runtime Environment.  Switch to OpenJDK 
>> or Oracle JDK. 
>>
>> The missing class message for the mail related class seems to indicate 
>> that one or more required plugins might be missing from your installation.
>>
>> Have you checked the "Manage Plugins" page to see if it highlights any 
>> dependencies which are not satisfied?  Have you restarted the Jenkins 
>> server recently and reviewed the Plugin Manager page to confirm that 
>> required dependencies are satisfied?
>>
>> Did you install all the plugins using the plugin manager, or did you 
>> install some of them using the "Advanced" option to upload a specific 
>> plugin (instead of using the plugin manager)?  If you use the Advanced 
>> option, then you are responsible to upload all the required dependencies.
>>
>> Mark Waite
>>
>> On Tue, Feb 20, 2018 at 9:28 PM iqbal md  wrote:
>>
>>> I have been setting up pipeline job in Jenkins which is basically aimed 
>>> at checking out code from Subversion, build and deploy it into Weblogic, 
>>> run Cucumber test and then send out an email notification.
>>>
>>> PFB my environment related information:
>>> Java 1.8
>>> Weblogic 12c
>>> SMTP server(For mailing)
>>>
>>> My pipeline is running fine until executing Cucumber test but the job 
>>> meant for sending email is not working for me. I have tried sending email 
>>> as individual job also but no luck.
>>>
>>> I installed the email-ext template plugin thinking it will resolve my 
>>> issue around triggering emails. However this plugin mandates the email-ext 
>>> plugin to upgrade to 1.0 along with which workflow related 
>>> plugins(workflow-job and workflow-support) get installed as dependencies. 
>>> And then when I trigger any job I keep getting this error:
>>>
>>> FATAL: jenkins/scm/RunWithSCM
>>> java.lang.NoClassDefFoundError: jenkins/scm/RunWithSCM
>>> at java.lang.ClassLoader.defineClass1(Native Method)
>>> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
>>> at 
>>> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1139)
>>> at 
>>> hudson.ClassicPluginStrategy$AntClassLoader2.defineClassFromData(ClassicPluginStrategy.java:878)
>>> at 
>>> jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1310)
>>> at 
>>> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1366)
>>> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1326)
>>> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1079)
>>> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
>>> at 
>>> org.jenkinsci.plugins.workflow.job.WorkflowJob$SCMListenerImpl.onCheckout(WorkflowJob.java:651)
>>> at 
>>> 

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-21 Thread iqbal md
Hi Mark,

Thanks for replying.

I am using Oracle Java 1.8.

I have tried installing the email-extension template from the "Manage 
Plugins" section as well as installed the .hpi file. In both the cases it 
installed the necessary dependencies, meaning I didn't observed any 
difference there with respect to dependencies atleast.

Yes, I keep restarting the Jenkins after each installation to make the 
changes effective. 

Can you please brief me over the Plugin Manager page here which you are 
asking for verifying upon the satisfaction of dependencies. Is it the 
"Updates" section available in the "Manage Plugins" section or is the 
Jenkins Plugin link which mentions the Required/Optional dependencies.

The moment I get plugins(workflow-job and workflow-support) installed as 
part of the dependencies I start hitting this issue, otherwise until then 
the pipeline runs absolutely fine just that the email feature is not able 
to relay mails.

With Regards
Iqbal

On Wednesday, 21 February 2018 10:16:34 UTC+5:30, Mark Waite wrote:
>
> The RunWithSCM class is part of Jenkins core.  The report of class not 
> found for a class in Jenkins core is quite surprising.  You say that you're 
> running "Java 1.8".  Are you running Oracle Java 1.8, OpenJDK 1.8, or IBM 
> Java 1.8?  If you're using IBM Java 1.8, then there are known problems 
> running Jenkins over the IBM Java Runtime Environment.  Switch to OpenJDK 
> or Oracle JDK. 
>
> The missing class message for the mail related class seems to indicate 
> that one or more required plugins might be missing from your installation.
>
> Have you checked the "Manage Plugins" page to see if it highlights any 
> dependencies which are not satisfied?  Have you restarted the Jenkins 
> server recently and reviewed the Plugin Manager page to confirm that 
> required dependencies are satisfied?
>
> Did you install all the plugins using the plugin manager, or did you 
> install some of them using the "Advanced" option to upload a specific 
> plugin (instead of using the plugin manager)?  If you use the Advanced 
> option, then you are responsible to upload all the required dependencies.
>
> Mark Waite
>
> On Tue, Feb 20, 2018 at 9:28 PM iqbal md  
> wrote:
>
>> I have been setting up pipeline job in Jenkins which is basically aimed 
>> at checking out code from Subversion, build and deploy it into Weblogic, 
>> run Cucumber test and then send out an email notification.
>>
>> PFB my environment related information:
>> Java 1.8
>> Weblogic 12c
>> SMTP server(For mailing)
>>
>> My pipeline is running fine until executing Cucumber test but the job 
>> meant for sending email is not working for me. I have tried sending email 
>> as individual job also but no luck.
>>
>> I installed the email-ext template plugin thinking it will resolve my 
>> issue around triggering emails. However this plugin mandates the email-ext 
>> plugin to upgrade to 1.0 along with which workflow related 
>> plugins(workflow-job and workflow-support) get installed as dependencies. 
>> And then when I trigger any job I keep getting this error:
>>
>> FATAL: jenkins/scm/RunWithSCM
>> java.lang.NoClassDefFoundError: jenkins/scm/RunWithSCM
>> at java.lang.ClassLoader.defineClass1(Native Method)
>> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
>> at 
>> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1139)
>> at 
>> hudson.ClassicPluginStrategy$AntClassLoader2.defineClassFromData(ClassicPluginStrategy.java:878)
>> at 
>> jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1310)
>> at 
>> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1366)
>> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1326)
>> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1079)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
>> at 
>> org.jenkinsci.plugins.workflow.job.WorkflowJob$SCMListenerImpl.onCheckout(WorkflowJob.java:651)
>> at 
>> hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:609)
>> at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
>> at 
>> hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
>> at hudson.model.Run.execute(Run.java:1741)
>> at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
>> at hudson.model.ResourceController.execute(ResourceController.java:98)
>> at hudson.model.Executor.run(Executor.java:410)
>> Caused by: java.lang.ClassNotFoundException: jenkins.scm.RunWithSCM
>> at 
>> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1376)
>> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1326)
>> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1079)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
>> ... 17 more
>> Email was triggered for: Always
>> Sending email for trigger: Always
>> Sending email to: iqbal.m...@xx.com (sample, while actually 

Re: Jenkins issue on installing Email-ext plugin[--Urgent--]

2018-02-20 Thread Mark Waite
The RunWithSCM class is part of Jenkins core.  The report of class not
found for a class in Jenkins core is quite surprising.  You say that you're
running "Java 1.8".  Are you running Oracle Java 1.8, OpenJDK 1.8, or IBM
Java 1.8?  If you're using IBM Java 1.8, then there are known problems
running Jenkins over the IBM Java Runtime Environment.  Switch to OpenJDK
or Oracle JDK.

The missing class message for the mail related class seems to indicate that
one or more required plugins might be missing from your installation.

Have you checked the "Manage Plugins" page to see if it highlights any
dependencies which are not satisfied?  Have you restarted the Jenkins
server recently and reviewed the Plugin Manager page to confirm that
required dependencies are satisfied?

Did you install all the plugins using the plugin manager, or did you
install some of them using the "Advanced" option to upload a specific
plugin (instead of using the plugin manager)?  If you use the Advanced
option, then you are responsible to upload all the required dependencies.

Mark Waite

On Tue, Feb 20, 2018 at 9:28 PM iqbal md  wrote:

> I have been setting up pipeline job in Jenkins which is basically aimed at
> checking out code from Subversion, build and deploy it into Weblogic, run
> Cucumber test and then send out an email notification.
>
> PFB my environment related information:
> Java 1.8
> Weblogic 12c
> SMTP server(For mailing)
>
> My pipeline is running fine until executing Cucumber test but the job
> meant for sending email is not working for me. I have tried sending email
> as individual job also but no luck.
>
> I installed the email-ext template plugin thinking it will resolve my
> issue around triggering emails. However this plugin mandates the email-ext
> plugin to upgrade to 1.0 along with which workflow related
> plugins(workflow-job and workflow-support) get installed as dependencies.
> And then when I trigger any job I keep getting this error:
>
> FATAL: jenkins/scm/RunWithSCM
> java.lang.NoClassDefFoundError: jenkins/scm/RunWithSCM
> at java.lang.ClassLoader.defineClass1(Native Method)
> at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
> at
> jenkins.util.AntClassLoader.defineClassFromData(AntClassLoader.java:1139)
> at
> hudson.ClassicPluginStrategy$AntClassLoader2.defineClassFromData(ClassicPluginStrategy.java:878)
> at jenkins.util.AntClassLoader.getClassFromStream(AntClassLoader.java:1310)
> at
> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1366)
> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1326)
> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1079)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
> at
> org.jenkinsci.plugins.workflow.job.WorkflowJob$SCMListenerImpl.onCheckout(WorkflowJob.java:651)
> at
> hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:609)
> at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
> at
> hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
> at hudson.model.Run.execute(Run.java:1741)
> at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> at hudson.model.ResourceController.execute(ResourceController.java:98)
> at hudson.model.Executor.run(Executor.java:410)
> Caused by: java.lang.ClassNotFoundException: jenkins.scm.RunWithSCM
> at
> jenkins.util.AntClassLoader.findClassInComponents(AntClassLoader.java:1376)
> at jenkins.util.AntClassLoader.findClass(AntClassLoader.java:1326)
> at jenkins.util.AntClassLoader.loadClass(AntClassLoader.java:1079)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
> ... 17 more
> Email was triggered for: Always
> Sending email for trigger: Always
> Sending email to: iqbal.moham...@xx.com (sample,
> while actually I have configured valid email id)
> Finished: FAILURE
>
> *And for next consecutive run on the same job I get this error*:
>
> Building in workspace /opt/software/ngae_jenkins/workspace/SendMail
>
> FATAL: org/jenkinsci/plugins/workflow/job/WorkflowRun
>
> java.lang.NoClassDefFoundError:
> org/jenkinsci/plugins/workflow/job/WorkflowRun
>
> at
> org.jenkinsci.plugins.workflow.job.WorkflowJob$SCMListenerImpl.onCheckout(WorkflowJob.java:651)
>
> at
> hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:609)
>
> at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
>
> at
> hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
>
> at hudson.model.Run.execute(Run.java:1741)
>
> at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
>
> at hudson.model.ResourceController.execute(ResourceController.java:98)
>
> at hudson.model.Executor.run(Executor.java:410)
>
> Email was triggered for: Always
>
> Sending email for trigger: Always
>
> Sending email to: iqbal.moham...@xx.com 
>
> Finished: FAILURE
>
>
> I have checked on all 

Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-24 Thread easonjim1919
Thanks to Daniel Beck for your help.
I re-use Google mailbox registered an account, now Wiki and Jira can log on.
thank you very much.

On Thursday, November 24, 2016 at 4:09:48 PM UTC+8, Daniel Beck wrote:
>
>
> > On 21.11.2016, at 14:37, easonj...@gmail.com  wrote: 
> > 
> > userid:easonjim 
>
> Your account exists but it apparently wasn't synced to Jira. I'm still 
> working to figure out a solution, but if you can deal with a different user 
> name, you could just register a new account instead of waiting. 
>
>

-- 
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/61ba9891-2476-4a04-983d-aa97cdf3a91b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-24 Thread Daniel Beck

> On 21.11.2016, at 14:37, easonjim1...@gmail.com wrote:
> 
> userid:easonjim

Your account exists but it apparently wasn't synced to Jira. I'm still working 
to figure out a solution, but if you can deal with a different user name, you 
could just register a new account instead of waiting.

-- 
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/5C078FAB-D86A-4E17-839E-5224939628D6%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-21 Thread easonjim1919
Thank you very much for your reply
I have modified my account to send message email address
email:easonjim1...@gmail.com
userid:easonjim

On Monday, November 21, 2016 at 3:09:44 AM UTC+8, Daniel Beck wrote:
>
>
> > On 20.11.2016, at 19:53, easonj...@gmail.com  wrote: 
> > 
> > I am sure I have registered the account at this site(
> https://accounts.jenkins.io). 
>
> The email address you used to send this message is not used for an 
> account. Unless you provide more information, we cannot help you. 
>
>

-- 
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/3990357a-bc79-4388-b17f-15a2b3e3acb2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-20 Thread easonjim1919
my userid:easonjim

在 2016年11月21日星期一 UTC+8上午3:31:59,easonj...@gmail.com写道:
>
> Thank you very much for your reply
> I have modified my account to send message email address
>
> 在 2016年11月21日星期一 UTC+8上午3:09:44,Daniel Beck写道:
>>
>>
>> > On 20.11.2016, at 19:53, easonj...@gmail.com wrote: 
>> > 
>> > I am sure I have registered the account at this site(
>> https://accounts.jenkins.io). 
>>
>> The email address you used to send this message is not used for an 
>> account. Unless you provide more information, we cannot help you. 
>>
>>

-- 
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/df998fec-588e-4a5f-9f78-ed63987ae6eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-20 Thread easonjim1919
Thank you very much for your reply
I have modified my account to send message email address

在 2016年11月21日星期一 UTC+8上午3:09:44,Daniel Beck写道:
>
>
> > On 20.11.2016, at 19:53, easonj...@gmail.com  wrote: 
> > 
> > I am sure I have registered the account at this site(
> https://accounts.jenkins.io). 
>
> The email address you used to send this message is not used for an 
> account. Unless you provide more information, we cannot help you. 
>
>

-- 
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/eb412c8f-3c11-47f1-b2a7-fbb3f8a0e9c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-20 Thread Daniel Beck

> On 20.11.2016, at 19:53, easonjim1...@gmail.com wrote:
> 
> I am sure I have registered the account at this 
> site(https://accounts.jenkins.io).

The email address you used to send this message is not used for an account. 
Unless you provide more information, we cannot help you.

-- 
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/324103A3-11B5-4733-8C7E-BB041EE1C5AA%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.