Manage Jenkins Access and Role Based Strategy

I have create role based strategy, added a admin role and assigned few users to the same. During some activity i have by mistaken removed the admin option check box. Now i am not able to access manage Jenkins. How can i retrieve it back.

See Reset the Jenkins administrator password

Issue is not with reset password, with any user i cannot access manage Jenkins. Any way to we can access manage Jenkins

Have you read the page?
It explains how you can disable security by modifying the config.xml so you can start from scratch

I have gone through the video, will it impact the already existing created users?

you start from scratch with the security configuration when you do this.
As an alternative you can also modify only the part of the config.xml that defines the the permissions and the assigned users.
In the config.xml you should find something like this

<roleMap type="globalRoles">
      <role name="admins" pattern=".*">
        <permissions>
          <permission>hudson.model.Hudson.Read</permission>
          ...
        </permissions>
        <assignedSIDs>
          <sid type="USER">your userid</sid>
          ...
        </assignedSIDs>
      </role>

Here you need to add the line
<permission>hudson.model.Hudson.Administer</permission> under permissions.
Then start your Jenkins instance and you should be admin again

Thank you for the suggestion , i just added that amin but did not start my Jenkins i suppose that is the reason it is not reflecting. Let me stop and start then see if it reflects