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

73 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…
Niharika Gupta
  • 171
  • 1
  • 1
  • 4
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
  • 1
  • 3
  • 6
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…
user7501425
  • 91
  • 1
  • 1
  • 3
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
  • 1
  • 1
  • 5
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…
Ankur Agarwal
  • 236
  • 5
  • 12
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
  • 2,872
  • 7
  • 19
  • 26
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…
Ernie Joachim
  • 51
  • 1
  • 2
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
  • 117
  • 1
  • 1
  • 9
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

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…
Caranfil Alegzandru
  • 639
  • 3
  • 7
  • 14
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
  • 5
  • 14
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…
Ikarisan
  • 21
  • 2
2
votes
3 answers

Jenkins Git Ubuntu Server

I am trying to install a completely working Jenkins on my old PC with Ubuntu Server 12.04. I think my installation of Ubuntu Server and Jenkins was succesfull. I can access the Jenkins page by internet from any computer. So now I want Jenkins to…
martijnn2008
  • 135
  • 1
  • 1
  • 9
2
votes
2 answers

jenkins-common package for latest jenkins builds

I am required to upgrade jenkins due to a bug breaking our builds, I've used the jenkins repository from http://pkg.jenkins-ci.org/debian/ and have come up against a wall. Required Jenkins version is 1.531 The jenkins-common package is required for…
Peter Mellett
  • 212
  • 2
  • 9
1
2 3 4 5