Blame doc/html/user/pwd_mgmt.html

Packit fd8b60
Packit fd8b60
Packit fd8b60
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Packit fd8b60
Packit fd8b60
<html xmlns="http://www.w3.org/1999/xhtml">
Packit fd8b60
  <head>
Packit fd8b60
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Packit fd8b60
    <title>Password management — MIT Kerberos Documentation</title>
Packit fd8b60
    <link rel="stylesheet" href="../_static/agogo.css" type="text/css" />
Packit fd8b60
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
Packit fd8b60
    <link rel="stylesheet" href="../_static/kerb.css" type="text/css" />
Packit fd8b60
    <script type="text/javascript">
Packit fd8b60
      var DOCUMENTATION_OPTIONS = {
Packit fd8b60
        URL_ROOT:    '../',
Packit fd8b60
        VERSION:     '1.18.2',
Packit fd8b60
        COLLAPSE_INDEX: false,
Packit fd8b60
        FILE_SUFFIX: '.html',
Packit fd8b60
        HAS_SOURCE:  true,
Packit fd8b60
        SOURCELINK_SUFFIX: '.txt'
Packit fd8b60
      };
Packit fd8b60
    </script>
Packit fd8b60
    <script type="text/javascript" src="../_static/jquery.js"></script>
Packit fd8b60
    <script type="text/javascript" src="../_static/underscore.js"></script>
Packit fd8b60
    <script type="text/javascript" src="../_static/doctools.js"></script>
Packit fd8b60
    <link rel="author" title="About these documents" href="../about.html" />
Packit fd8b60
    <link rel="index" title="Index" href="../genindex.html" />
Packit fd8b60
    <link rel="search" title="Search" href="../search.html" />
Packit fd8b60
    <link rel="copyright" title="Copyright" href="../copyright.html" />
Packit fd8b60
    <link rel="next" title="Ticket management" href="tkt_mgmt.html" />
Packit fd8b60
    <link rel="prev" title="For users" href="index.html" /> 
Packit fd8b60
  </head>
Packit fd8b60
  <body>
Packit fd8b60
    
Packit fd8b60
        
Packit fd8b60
            
Packit fd8b60
            
Packit fd8b60
            

MIT Kerberos Documentation

Packit fd8b60
            
Packit fd8b60
            
Packit fd8b60
                
Packit fd8b60
        
Packit fd8b60
            accesskey="C">Contents |
Packit fd8b60
        
Packit fd8b60
            accesskey="P">previous |
Packit fd8b60
        
Packit fd8b60
            accesskey="N">next |
Packit fd8b60
        
Packit fd8b60
            accesskey="I">index |
Packit fd8b60
        
Packit fd8b60
            accesskey="S">Search |
Packit fd8b60
    feedback
Packit fd8b60
            
Packit fd8b60
        
Packit fd8b60
    
Packit fd8b60
Packit fd8b60
    
Packit fd8b60
      
Packit fd8b60
        
Packit fd8b60
            
Packit fd8b60
      
Packit fd8b60
        
Packit fd8b60
          
Packit fd8b60
            
Packit fd8b60
  
Packit fd8b60

Password management

Packit fd8b60

Your password is the only way Kerberos has of verifying your identity.

Packit fd8b60
If someone finds out your password, that person can masquerade as
Packit fd8b60
you—send email that comes from you, read, edit, or delete your files,
Packit fd8b60
or log into other hosts as you—and no one will be able to tell the
Packit fd8b60
difference.  For this reason, it is important that you choose a good
Packit fd8b60
password, and keep it secret.  If you need to give access to your
Packit fd8b60
account to someone else, you can do so through Kerberos (see
Packit fd8b60
Granting access to your account).  You should never tell your password to anyone,
Packit fd8b60
including your system administrator, for any reason.  You should
Packit fd8b60
change your password frequently, particularly any time you think
Packit fd8b60
someone may have found out what it is.

Packit fd8b60
Packit fd8b60

Changing your password

Packit fd8b60

To change your Kerberos password, use the kpasswd command.

Packit fd8b60
It will ask you for your old password (to prevent someone else from
Packit fd8b60
walking up to your computer when you’re not there and changing your
Packit fd8b60
password), and then prompt you for the new one twice.  (The reason you
Packit fd8b60
have to type it twice is to make sure you have typed it correctly.)
Packit fd8b60
For example, user david would do the following:

Packit fd8b60
shell% kpasswd
Packit fd8b60
Password for david:    <- Type your old password.
Packit fd8b60
Enter new password:    <- Type your new password.
Packit fd8b60
Enter it again:  <- Type the new password again.
Packit fd8b60
Password changed.
Packit fd8b60
shell%