Questions tagged [jenkins]

Jenkins is an open-source continuous integration server with 300+ plugins to support all kinds of software development.

Jenkins is an open-source continuous integration server with 300+ plugins to support all kinds of software development.

Jenkins is an open source continuous integration tool written in Java. The project was forked from Hudson.

Source:Jenkins

66 questions
17
votes
3 answers

How to get username and password for recently installed Jenkins?

I have recently installed Jenkins on private server. Now when I have rebooted the server, it is asking for username and password. But, I have not given any such credentials. I have turned disable signup to false from true, but I am not able to…
10
votes
2 answers

How to start jenkins?

I installed jenkins via sudo apt-get install jenkins. However, it doesn't start up. Tried to start it manually using sudo /etc/init.d/jenkins start. But it shows this message when I try to start it that way: start: Rejected send message, 1 matched…
Jeffery Bingham
  • 101
  • 1
  • 1
  • 3
10
votes
1 answer

Coruppted Jenkins need to reinstall

My jenkins looks like corrupted. After installing older version I tried to upgrade. When I tried wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ >…
stefun
  • 203
9
votes
4 answers

Jenkins error "Incorrect Java version" for Java11. After removing Java11 and installing Java8. java is not found anywhere

I tried to install latest stable Jenkins version which supports Java 11. So after installing Java 11(JDK) I got the error from Jenkins that incorrect java version was found. So uninstalled the Java 11 and tried to install Java 8. While installing…
8
votes
2 answers

unable to install/recover jenkins after upgrading from ubuntu 12.04 to 14.04

I did an upgrade of Ubuntu from 12.04 to 14.04 and was surprised to discover that my earlier installed and configured jenkins is broken. To add to the misery, if I do an apt-get install jenkins or apt-cache search jenkins. I do not see either…
Sandeep
  • 183
8
votes
2 answers

Problem in jenkins installation on Ubuntu 12.04.3 LTS

$ sudo apt-get install jenkins Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: jenkins 0 upgraded, 1 newly installed, 0 to remove…
6
votes
3 answers

stderr: No ECDSA host key is known for github.com and you have requested strict checking

[enter image description here] 1Failed to connect to repository : Command "git ls-remote -h -- git@github.com:yeni/jenkins-terraform.git HEAD" returned status code 128: stdout: stderr: No ECDSA host key is known for github.com and you have requested…
user2631106
  • 61
  • 1
  • 1
  • 3
5
votes
2 answers

Cannot activate python virtual env in jenkins shell script

I have installed Jenkins on ubuntu 15.10. In a shell build step I am trying to create a Python virtual environment and activate it: But I get the following error when I run the job: /tmp/hudson4515625893361069094.sh: 9:…
u123
  • 3,062
  • 7
  • 21
  • 28
5
votes
1 answer

Jenkins Security

What is the location for the Jenkins System Console Output files? I am configuring Jenkins Security on Ubuntu, and have been locked out at the login screen. Tried every account I can remember but not knowing what is the issue with the id/pwd this…
5
votes
1 answer

Bash script if condition not working when called from Jenkins Pipeline

The below is my Jenkins Pipeline stage stage ('Import') { steps { sshagent([sshCredentials]) { sh ''' #!/bin/bash sh -x…
yeswanth
  • 127
3
votes
1 answer

Understanding Ubuntu juju installed in Amazon Cloud

I will explain, what I have: I created an instance from Ubintu juju AMI from community AMIs. I connected to this instance using ssh. I would like to deploy a "charms" here, in my instance. But, When I try to do "juju add-unit juju-gui" it says…
3
votes
2 answers

Changed Jenkins port doesn't applied

I have Ubuntu 20.04 and Jenkins 1.3.3 I need to change the local Jenkins port from 8080 to 8888. I tried to change the config file sudo gedit /etc/default/jenkins in the string #port for HTTP connector (default 8080; disable with…
3
votes
2 answers

Jenkins list user ids using script console

I want to list all users in jenkins, via the console script that jenkins has. So far I managed to list all the users using this: import hudson.model.User User.getAll().each { user -> println user} but they are listed by the first and last…
2
votes
1 answer

Jenkins as root cannot create folder

I have a Jenkins instance running that should build an Android project. When I start the task, I receive the following exception: Could not create service of type ScriptPluginFactory using BuildScopeServices.createScriptPluginFactory() Failed…
fweigl
  • 384
2
votes
0 answers

Upgrade Jenkins 1.486 (12.04) to latest build from jenkins-ci.org

I am wondering whether it is possible to upgrade a Jenkins 1.486 installation (on Ubuntu 12.04, official repository) to the latest version offered on jenkins-ci.org. I really need to upgrade because of some bugs but I do not dare to install the new…
1
2 3 4 5