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?
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.
You can configure Audit to Database plugin to store build data into DB using oracle, mysql, postgres, etc.
Regards!
精彩评论