Questions tagged [jenkins]

Jenkins is an extendable open source continuous integration server

It is built in Java and has many plugins to support,build and test projects.

More info on the official website.

654 questions
9
votes
1 answer

Unable to access Jenkins server

I'm trying to install Jenkins on my web server, which is an Ubuntu 13.10 server running on an Amazon EC2 instance. I've restarted Jenkins using sudo /etc/init.d/jenkins restart When I check my processes with ps aux | grep jenkins I can see…
Josef van Niekerk
  • 511
  • 4
  • 8
  • 15
9
votes
5 answers

Set JENKINS_HOME in Tomcat7?

I'm trying to set up Jenkins in Tomcat7 on Ubuntu. I installed Tomcat7 and deployed jenkins.war, and I now see the Jenkins home page at http://myhost:8080/jenkins, but it's attempting to create the Jenkins directory at /usr/share/tomcat7/.jenkins,…
C. Ross
  • 3,075
  • 9
  • 35
  • 36
9
votes
3 answers

Jenkins CI - Cannot allocate memory

I tested jenkins-ci successfully on a ubuntu 10.4 (with vmware fusion) on my local computer. Now I want to install and use it on my virtual server at hosteurope. The basic installation was no problem, but now I have problems with my build…
Programmieraffe
  • 91
  • 1
  • 1
  • 2
8
votes
2 answers

Jenkins: Using Parameterized Trigger Plugin via Pipeline Script

I need to trigger a Jenkins job from another job and pass various values to it for later conditional logic. It seems the Parameterized Trigger Plugin will do exactly what I need. (https://plugins.jenkins.io/parameterized-trigger) However this plugin…
emmdee
  • 2,187
  • 12
  • 36
  • 60
8
votes
1 answer

Jenkins Linux Slave error: SEVERE: I/O error in channel channel

I am getting this error on all Linux servers try to start a Slave. The version isJenkins ver. 1.532.1. I didn't have this problem when I have another installation with Jenkins ver. 1.509.4. I've read many posts on Internet regarding this issue,…
user2784896
  • 203
  • 3
  • 9
8
votes
2 answers

How to show jenkins user's groups?

I'm trying to configure Jenkins with various permissions for different groups. I recall pulling up a page that displayed the logged in user's group memberships but I can't find it again. Does anyone know the URL for it?
AXE Labs
  • 1,549
  • 5
  • 19
  • 24
8
votes
2 answers

Creating SSH key on Jenkins Master - Centos Yum Install

I have installed Jenkins on a Centos VM as I am looking at replacing Bamboo, I have it all up and running by following the install instructions. That went fine, I then wanted to spin up a Slave, I created a second VM, created a user on it, created a…
djo
  • 397
  • 2
  • 4
  • 12
8
votes
1 answer

How to manage groups and users in Jenkins

I'm trying to use role based security plugin in Jenkins, but i'm not sue i am using it right. I've decided to go with jenkin's own user database as a security realm instead of LDAP. i'm adding the users one by one. Now in the Assign Roles screen, i…
Michael
  • 263
  • 2
  • 4
  • 9
7
votes
1 answer

Jenkins User Credentials Not Showing In Project

So I have Jenkins-CI running with the plugins: Credentials Credentials Binding Git First what I did in order to authenticate Git with the remote repository, is I added credentials to the server to the Global scope with no domain. However, this…
Qyriad
  • 71
  • 1
  • 3
7
votes
3 answers

executing RSYNC command in jenkins

I'm trying to deploy my code to a remote server. So far I've tried Publish over SSH Plugin: the problem is that I'm unable to keep file permissions Rsync command: this keeps the file permissions, but the problem is that I don't know how to set the…
JAT2007
  • 201
  • 1
  • 2
  • 8
7
votes
1 answer

Apache mod_proxy: Multiple virtual hosts disable each other

I have an Ubuntu 12.04 server, which had Redmine already installed on a stand-alone apache (everything under /opt/redmine). I wanted to install an instance of Jenkins on the same system, without modifying the existing set-up too much. I want the two…
Max Hohenegger
  • 171
  • 1
  • 1
  • 4
7
votes
1 answer

Unknown option git config --local reported by Jenkins

I asked the same question on stack overflow but I only got 5 views, I think this is a better forum for this question. I'm setting up CI for a C# project hosted on github in a private repo. Git is installed on master CentOS machine, MSBuild on slave…
user3043457
  • 173
  • 1
  • 3
7
votes
2 answers

How do I get a public ssh key on a docker jenkins image for git authentication?

I'm using Docker and I'm running a Jenkins image. The image I'm trying: https://github.com/orchardup/docker-jenkins I need to generate an ssh key pair so I may use it to authenticate to bitbucket. This is so that jenkins may pull my source code and…
Jason Prawn
  • 171
  • 1
  • 1
  • 3
7
votes
1 answer

Running Jenkins standalone vs within Tomcat

What things should be considered when deciding between running Jenkins standalone or within Tomcat? We would prefer to not have to use Tomcat because there's no other applications on this server machine that would need Tomcat, so we would be setting…
user779159
  • 395
  • 1
  • 5
  • 10
7
votes
1 answer

How to use for loop in Jenkins declarative pipeline

I am having a list of variable like below allModules = ['module1', 'module2', 'module3', 'module4', 'module11'] I want to use loop then print all the module one by one. Please let me know the syntax and how to perform this in Jenkins Declarative…
iamarunk
  • 103
  • 2
  • 2
  • 4
1 2
3
43 44