Users » History » Version 1

Version 1/5 - Next ยป - Current version
Anonymous, 09/14/2007 09:33 AM


= User Management =
Make the following changes on the master node and each slave node:

  • Add new users into ''/etc/passwd'': {{{
    procksi:x:510:510:ProCKSI-Server:/home/procksi:/bin/bash
    dxb:x:520:Daniel Barthel:/home/dxb:/bin/bash
    }}}
  • Add an entry for the new users into ''/etc/shadow'': {{{
    procksi:[Add Encrypted Password]:13483:0:99999:7:::
    dxb:[Add Encrypted Password]:13755:0:99999:7:::
    }}}
  • Add a new group into ''/etc/group'', and add all users who should have access (e.g. ''dxb''): {{{
    procksi:x:510:dxb
    }}}
    The members for group procksi are now: ''procksi'', ''dxb''
  • Generate home directory for ''procksi'' at ''/home/procksi''. Enter at the command line of the master node: {{{
    mkdir /home/procksi
    chown procksi.procksi /home/procksi
    chmod 770 /home/procksi
    }}}