InterviewSolution
| 1. |
How can you temporarily turn off Jenkins security if the administrative users have locked themselves out of the admin console? |
|
Answer» The JENKINS_HOME organizer contains a document named config.xml. At the point when security is empowered, this record contains an XML component named useSecurity that will be set to true. By changing this setting to false, security will be handicapped whenever Jenkins is RESTARTED. <useSecurity>false</useSecurity> The incapacitating security ought to dependably be both a FINAL retreat and a brief measure. When any conformation issues are settled, make certain to re-empower Jenkins security and reboot the CI server. Please find the steps below :
At the point when Jenkins returns, it will be in an UNSECURED mode where everybody gets full access to the framework. In the event that this is as yet not working, TAKING a stab at renaming or erasing config.xml. |
|