manage jenkins don't appear on Jenkins manage jenkins don't appear on Jenkins jenkins jenkins

manage jenkins don't appear on Jenkins


If you need to temporarily disable the security, so that you have admin access again, you can follow the steps on the disable security wiki page:

Stop Jenkins.
Go to $JENKINS_HOME in the file system and find config.xml.
In this file, find the <useSecurity>true</useSecurity> element.
Replace true with false.
Remove the elements authorizationStrategy and securityRealm.
Start Jenkins.


The simplest solution is reset security.

Tomcat by default stores the user database in an XML file called $TOMCAT_HOME/conf/tomcat-users.xml. You can add the following lines to this file to create an admin user.<role rolename="admin"/><user username="jenkins-admin" password="secret" roles="admin"/>

Then just restart Jenkins, go to admin panel and set everything once again.