how do you manage servers' root passwords - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:50:18Z http://stackoverflow.com/feeds/question/208007 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords 12 how do you manage servers' root passwords bmwael 2008-10-16T10:04:54Z 2009-02-27T16:19:01Z <p>In our administration team, everyone knows root passwords for all client server but what we do , if one of the team is not still working with us he has still our passwords</p> <p>and we have to change them all, every time someone leave us , </p> <p>now we are using ssh keys, unstead of passwords, but this is not helpful if we have to do something other than ssh.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/208011#208011 20 Answer by Chris Jester-Young for how do you manage servers' root passwords Chris Jester-Young 2008-10-16T10:06:19Z 2008-10-16T10:06:19Z <p>The systems I run have a <a href="http://www.sudo.ws/" rel="nofollow">sudo</a>-only policy. i.e., the root password is <code>*</code> (disabled), and people have to use sudo to get root access. You can then edit your <code>sudoers</code> file to grant/revoke people's access. It's very granular, and has lots of configurability---but has sensible defaults, so it won't take you long to set up.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/208025#208025 3 Answer by Corporal Touchy for how do you manage servers' root passwords Corporal Touchy 2008-10-16T10:13:46Z 2008-10-16T10:13:46Z <p>While it is a good idea to use a sudo only policy like Chris suggested depending on the the size of your system an ldap approach may also be helpful. We complement that by a file that contains all the root passwords but the root passwords are really long and unmemorable. While that may be considered a security flaw it allows us to still log in if the ldap server is down.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/208040#208040 0 Answer by Dave Webb for how do you manage servers' root passwords Dave Webb 2008-10-16T10:26:34Z 2008-10-16T10:26:34Z <p>If you have ssh access via your certificates, can't you log in via ssh and change the <code>root</code> password via <code>passwd</code> or <code>sudo passwd</code> when you need to do something else that requires the password?</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/208044#208044 0 Answer by f4nt for how do you manage servers' root passwords f4nt 2008-10-16T10:28:05Z 2008-10-16T10:28:05Z <p>We use the sudo only policy where I work, but root passwords are still kept. The root passwords are only available to a select few employees. We have a program called Password Manager Pro that stores all of our passwords, and can provide password audits as well. This allows us to go back and see what passwords have been accessed by which users. Thus, we're able to only change the passwords that actually need to be changed.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/212374#212374 1 Answer by Steve Baker for how do you manage servers' root passwords Steve Baker 2008-10-17T14:27:39Z 2008-10-17T14:27:39Z <p>Aside from the sudo policy, which is probably better, there is no reason why each admin couldn't have their own account with UID 0, but named differently, with a different password and even different home directory. Just remove their account when they're gone.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/213036#213036 0 Answer by Brian G for how do you manage servers' root passwords Brian G 2008-10-17T17:21:44Z 2008-10-17T17:21:44Z <p>We just made it really easy to change the root passwords on every machine we admininster so when people left we just ran the script. I know not very savvy but it worked. Before my time, everyone in the company had access to root on all server. luckily we moved away from that.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/213076#213076 0 Answer by Tanktalus for how do you manage servers' root passwords Tanktalus 2008-10-17T17:32:52Z 2008-10-17T17:32:52Z <p>Generally speaking, if someone leaves our team, we don't bother changing root passwords. Either they left the company (and have no way to access the machines anymore as their VPN has been revoked, as has their badge access to the building, and their wireless access to the network), or they're in another department inside the company and have the professionalism to not screw with our environment.</p> <p>Is it a security hole? Maybe. But, really, if they wanted to screw with our environment, they would have done so prior to moving on.</p> <p>So far, anyone leaving the team who wants to gain access to our machines again has always asked permission, even though they could get on without the permission. I don't see any reason to impede our ability to get work done, i.e., no reason to believe anyone else moving onwards and upwards would do differently.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/213132#213132 1 Answer by mattl for how do you manage servers' root passwords mattl 2008-10-17T17:46:41Z 2008-10-17T17:46:41Z <p>Reasonably strong root password. Different on each box. No remote root logins, and no passwords for logins, only keys.</p> http://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords/217031#217031 1 Answer by Joshua for how do you manage servers' root passwords Joshua 2008-10-19T21:48:29Z 2009-02-27T16:19:01Z <p>I would normally suggest the following:</p> <ol> <li>Use a <em>blank</em> root password.</li> <li>Disable telnet</li> <li>Set ssh for no-root-login (or root login by public key only)</li> <li>Disable su to root by adding this to the top of /etc/suauth: 'root:ALL:DENY'</li> <li>Enable secure tty for root login on console only (tty1-tty8)</li> <li>Use sudo for normal root access</li> </ol> <p>Now then, with this setting, all users must use sudo for remote admin, but when the system is seriously messed up, there is no hunting for the root password to unlock the console.</p> <p>EDIT: other system administration tools that provide their own logins will also need adjusting.</p>