First: edit the authorization parameter in the config.xml file if you have defined more users in your Hudson and you have at least one user password. For example, your username is called peter, and you know the password of the user socket, in this case just open %HUDSON_HOME%/config.xml and find the line:
<permission>Hudson.model.Hudson.Administer:peter</permission>
And add a new line below:
<permission>Hudson.model.Hudson.Administer:jack</permission>
Save the changes and restart the Hudson server, then you can log in as and change your own password. After that, log in using your own and go to http://your/hudson/configure and cancel the response back to its usual authorization setting.
Another way is to simply edit your own config.xml , in this case open %HUDSON_HOME%/your/config.xml and find the line:
<password>β¦β¦β¦</password>
The text between the password tag is encoded, so you cannot just enter your password in plain text. The easy way for you is simply to delete all the text between this tag, in another word, just the password is empty.
Hope this helps.