how do you manage servers' root passwords - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:50:18Zhttp://stackoverflow.com/feeds/question/208007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208007/how-do-you-manage-servers-root-passwords12how do you manage servers' root passwordsbmwael2008-10-16T10:04:54Z2009-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#20801120Answer by Chris Jester-Young for how do you manage servers' root passwordsChris Jester-Young2008-10-16T10:06:19Z2008-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#2080253Answer by Corporal Touchy for how do you manage servers' root passwordsCorporal Touchy2008-10-16T10:13:46Z2008-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#2080400Answer by Dave Webb for how do you manage servers' root passwordsDave Webb2008-10-16T10:26:34Z2008-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#2080440Answer by f4nt for how do you manage servers' root passwordsf4nt2008-10-16T10:28:05Z2008-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#2123741Answer by Steve Baker for how do you manage servers' root passwordsSteve Baker2008-10-17T14:27:39Z2008-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#2130360Answer by Brian G for how do you manage servers' root passwordsBrian G2008-10-17T17:21:44Z2008-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#2130760Answer by Tanktalus for how do you manage servers' root passwordsTanktalus2008-10-17T17:32:52Z2008-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#2131321Answer by mattl for how do you manage servers' root passwordsmattl2008-10-17T17:46:41Z2008-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#2170311Answer by Joshua for how do you manage servers' root passwordsJoshua2008-10-19T21:48:29Z2009-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>