phntmasasin
phntmasasin

Reputation: 775

Jenkins Database and Authentication

Does Jenkins store build status information into a database on its own? Does it have a plugin to talk to an Oracle database? If yes, can the slaves running on remote sites do this on their own, without master having to do the database interaction?

I will be running Jenkins on remote sites.Won't network hiccups cause master to think that the build has failed?

Upvotes: 11

Views: 25729

Answers (2)

Ricardo García
Ricardo García

Reputation: 325

You can configure Audit to Database plugin to store build data into DB using oracle, mysql, postgres, etc.

Regards!

Upvotes: 8

Christopher Orr
Christopher Orr

Reputation: 111565

Does Jenkins store build status information into a database on its own?

Everything is stored locally in XML files on the master.

Does it have a plugin to talk to an Oracle database?

No, for the reason above.

Won't network hiccups cause master to think that the build has failed?

Yes.

Upvotes: 22

Related Questions