Rename the 'passwd' and the 'shadow' file in the 'config' folder


rsutter

Recommended Posts

I found an old post that someone added stating that their UNRAID login wasn't working.

 

The recommendation was to Rename the 'passwd' and the 'shadow' file in the 'config' folder to .old on Flash and reboot

 

I did this and at login put

UN 'root'

PW blank

 

but this didnt work.

 

any ideas

 

Link to comment

I thought there was now a reset password button on the main login but I have no idea how it works, so here's an alternative that should work to at least restore command line access to the root account:

If you have access to a linux command line - this would probably work on a live DVD.

Rename the files on the USB in /config back to the original names.

On a Linux command line run these commands - replacing MyUnRaidPassword with your desired password

python -c "import random,string,crypt;
randomsalt = ''.join(random.sample(string.ascii_letters,8));
print crypt.crypt('MyUnRaidPassword', '\$5\$%s\$' % randomsalt)"

It'll output a value - that looks something like this:

$5$ZRtMxFol$XKxC./tdG2d5U5wCzZEO43YYsqmFR.9hOnSARfwIXFB

 

Open the /config/shadow file in a text editor (make sure you don't mangle the line endings) and exchange the existing value for root with the value you just created. You need to make sure you only adjust the value between root: and the next colon.

So if we used the example from above your root line should be something very similar to this:

root:$5$ZRtMxFol$XKxC./tdG2d5U5wCzZEO43YYsqmFR.9hOnSARfwIXFB:17367:0:99999:7:::

 

Save the file, reboot into unRaid and that should likely fix your login issues. Definitely for the terminal, not entirely sure how the web authentication works but I think it may fix that too.

Hope it helps,

Del

Edited by Delarius
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.