Multiple Jenkins possible ? - quick question

3,660 views
Skip to first unread message

Z W

unread,
Nov 27, 2012, 4:45:18 AM11/27/12
to jenkins...@googlegroups.com
Hi

We have one Jenkins configured and it went down.
Our only Jenkins as 3 slaves.
We like to install another Jenkins acting as secondary master for the
3 slaves nodes in case the primary master Jenkins goes down.

Will this configuration work ?
Can multiple Jenkins work together ?
How do we configure secondary Jenkins such that when primary Jenkins
goes down, it takes over ?
How would the slaves know that the secondary Jenkins is in service and
not the primary Jenkins.

Thanks for your help

Clemens

unread,
Nov 27, 2012, 9:08:59 AM11/27/12
to jenkins...@googlegroups.com
Hi,

do you want to install another Jenkins on the same Server ?
Not sure about this. Because this would be a problem with the
Jenkins Service, tried this once, and didnt get it running, because they
could not run at the same time.

There is a similar Thread "Hosting multiple Jenkins instance : Need Help
If i am getting your question correctly. At this thread they linked a Page
with maybe the same Point you are looking for.
(Link)
Maybe this will help you.
Tell me if there is a misunderstanding.

Greetings

Mandeville, Rob

unread,
Nov 27, 2012, 3:40:11 PM11/27/12
to jenkins...@googlegroups.com
You basically want a high availability solution. CloudBees sells that as part of Jenkins Enterprise (www.cloudbees.com/jenkins-enterprise-by-cloudbees-overview.cb). It's called the high availability plugin, and it's only for paying customers. I have never tried it, but have been eyeing Jenkins Enterprise for some time now.

--Rob
The information in this message is for the intended recipient(s) only and may be the proprietary and/or confidential property of Litle & Co., LLC, and thus protected from disclosure. If you are not the intended recipient(s), or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any use, dissemination, distribution or copying of this communication is prohibited. If you have received this communication in error, please notify Litle & Co. immediately by replying to this message and then promptly deleting it and your reply permanently from your computer.

Coombesy

unread,
Nov 27, 2012, 4:50:26 PM11/27/12
to jenkins...@googlegroups.com
If you have a spare server, you could setup a new master and front both the new and existing Jenkins master with Apache and have Apache handle the failover.
I'm not sure about how this would affect slaves, but in theory this should work, or at least it's an approach I have used albeit not with Jenkins, and would certainly be very quick to test the configuration on a single server to prove the theory (i.e. install Apache and two Tomcat instances and deploy Jenkins to both Tomcat instances).

Z W

unread,
Nov 27, 2012, 7:01:43 PM11/27/12
to jenkins...@googlegroups.com
Hi Clemens

Secondary would be running on a different server box was the idea.

Les Mikesell

unread,
Nov 27, 2012, 7:18:49 PM11/27/12
to jenkins...@googlegroups.com
On Tue, Nov 27, 2012 at 1:01 PM, Z W <mpc...@gmail.com> wrote:
> Hi Clemens
>
> Secondary would be running on a different server box was the idea.

Automatic fail-over adds a lot of complexity and a lot of new things
to go wrong. An easier approach would be a moderately frequent rsync
of the jenkins data to a backup server where you would manually change
the IP to the old one and start jenkins if your old server is
hopelessly broken.

If you really need up-to-the-second failover and want to roll your
own, you could probably do it on linux with drbd and corosync.


--
Les Mikesell
lesmi...@gmail.com

Vojtech Juranek

unread,
Nov 27, 2012, 8:03:00 PM11/27/12
to jenkins...@googlegroups.com
> Automatic fail-over adds a lot of complexity and a lot of new things
> to go wrong. An easier approach would be a moderately frequent rsync
> of the jenkins data to a backup server where you would manually change

you can also use e.g. NFS volume mounted to both slaves so that everything is
up-to-date without any need of synchronization. However, this all these
approaches aren't real HA - running jobs and all in-memory stuff will be lost

Les Mikesell

unread,
Nov 27, 2012, 8:29:54 PM11/27/12
to jenkins...@googlegroups.com
Right. But as a tradeoff, a 'warm' spare won't automatically be
broken by whatever it was that killed the active server (and maybe
deleted its files...). In most situations a failed build isn't a huge
problem. It is really the SCM that needs the best protection.

--
Les Mikesell
lesmi...@gmail.com

Jerry

unread,
Nov 28, 2012, 4:06:20 AM11/28/12
to jenkins...@googlegroups.com
It is also possible to maintain your Jenkins config files in source control. We could very quickly get a new instance of Jenkins up and running just by cloning our SCM repository to a new machine and dropping the Jenkins WAR in the right place.

But I have to second Rob Mandeville's suggestion to at least look into the Cloudbees high availability plugin.

-- Jerry

Khai Do

unread,
Jul 14, 2015, 6:20:53 PM7/14/15
to jenkins...@googlegroups.com
We use the Jenkins gearman plugin (https://wiki.jenkins-ci.org/display/JENKINS/Gearman+Plugin) to run jenkins in a multi master configuration.  That plugin is open source so no need to buy cloudbees solution. 

Stephen Connolly

unread,
Jul 15, 2015, 11:53:46 AM7/15/15
to jenkins...@googlegroups.com
[CloudBees Employee Hat]
I suspect it is the workflow addition that we have whereby the workflow can continue running *while* you restart the master that you are after... that is something that is more valuable in my mind than HA...
[/CloudBees Employee Hat]

Fadi Al-Farah

unread,
Oct 15, 2015, 6:39:40 PM10/15/15
to Jenkins Users
Hello, I am trying to use the Gearman Plugin but I have no idea how to set it up to make Jenkins as high-availibility(ish)...

Zaro

unread,
Oct 15, 2015, 6:42:55 PM10/15/15
to jenkins...@googlegroups.com
Well, there are instructions on the wiki. What have you tried?
> --
> 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/koaeG45jEfc/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jenkinsci-use...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/99fa0190-38fe-4a31-96a4-7a8cd83bc15c%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.

Fadi Al-Farah

unread,
Oct 15, 2015, 7:00:59 PM10/15/15
to Jenkins Users
Yes I've tried, the instructions from the wiki. I'm at the point where I'm trying to setup a gearman server, but I don't think it's running. (When I try to Test the connection from Jenkins, it fails).

Is there a tutorial out there that has a walkthrough on how to get it setup to make Jenkins HA?

Zaro

unread,
Oct 16, 2015, 4:22:08 PM10/16/15
to jenkins...@googlegroups.com
it's in the wiki, in 'configuring multiple jenkins masters section'.
> https://groups.google.com/d/msgid/jenkinsci-users/4f52b480-345d-4ee4-b929-cc921064ef01%40googlegroups.com.
Message has been deleted

Fadi Al-Farah

unread,
Nov 4, 2015, 5:25:59 PM11/4/15
to Jenkins Users
Thank you, I've managed to get things working! :)

suresh kumar

unread,
Mar 13, 2017, 9:16:44 PM3/13/17
to Jenkins Users
Hi Fadi,

Can you share me steps how you configured gearman and multiple master jenkins 

guoji...@bytedance.com

unread,
Jul 20, 2018, 11:30:57 AM7/20/18
to Jenkins Users
hi, do you know how to configure multi gearman server hosts in "Gearman Plugin Config"? it seems that it can only be configured one.

在 2015年7月15日星期三 UTC+8上午2:20:53,Khai Do写道:
Reply all
Reply to author
Forward
0 new messages