Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Start an SSH session. At the command prompt type:

    Code Block
    languagetext
    $ su root
    • When prompted enter the 'root' user password.
  • Use the command:

    Code Block
    languagetext
    $ useradd {NAME}
    • where NAME is the account name to create.

  • Use the command: 

    Code Block
    languagetext
    $ passwd {NAME}
    • where NAME is the account name created above.

  • Hit enter. Enter the password then hit enter again.

  • You will now need to give this account 'custadmins' and 'suser' permissions. This will allow the new account to run the commands required to collect data. To do this enter the command:

    • For versions below 10.2 use the following command:
Code Block
$ usermod -G 1000,1005 {NAME}
    • For versions 10.2 and above use the following command:
Code Block
$ usermod -G 1000,1007 {NAME}


  • Enter the command: 

    Code Block
    languagetext
    $ chage –M 99999 {NAME}
    • To set the System Manager account password to: "not expire".

    • NAME is the account created above.

...