Setting Passwords or Disabling Default Login Accounts

Set new passwords for default user accounts if you plan to use them. If you do not plan to use the accounts, disable them. The default user accounts are sccadmin (Sybase Control Center) and uafadmin (SCC agent).

Prerequisites
Before disabling the sccadmin or uafadmin accounts:
Task
  1. In a text editor, open the csi_config.xml file:
    • Windows: %SYBASE%\SCC-3_2\conf\csi_config.xml
    • UNIX: $SYBASE/SCC-3_2/conf/csi_config.xml
  2. Search for the account name:
    • Sybase Control Center: sccadmin
    • SCC agent: uafadmin
    The block containing the account name should look similar to this:
    <!-- Default SCC admin account: sccadmin -->
    <authenticationProvider controlFlag="sufficient"
         name="com.sybase.security.core.PreConfiguredUserLoginModule">
        <options name="username" value="sccadmin"/>
        <options name="password" value="{SHA-256:QZT6pRIx6l8=}sENxwVBfp65aaTjd/vAZFQAQOmkrk4Zl7iXLOFyJqCM="/>
        <options name="roles" value="SCC Administrator"/>
    </authenticationProvider>
    
    or
    <!-- Default SCC agent admin account: uafadmin -->
    <authenticationProvider controlFlag="sufficient"
         name="com.sybase.security.core.PreConfiguredUserLoginModule">
        <options name="username" value="uafadmin"/>
        <options name="password" value="{SHA-256:WNATpqw76zA=}GYeAKdTRiIh1VcqmWv1k/A2pcXSHfLUBr9boP03ArKE=" />
        <options name="roles" value="SCC Agent Administrator"/>
    </authenticationProvider>
    
  3. (Optional) To disable an account, comment out the sccadmin or uafadmin block of the file by moving the --> characters from the end of the first line to the end of the last line, so the last line looks like this:
    </authenticationProvider> -->

    Then skip to step 6.

  4. Encrypt and copy a password for the sccadmin or uafadmin account. (See Encrypting a Password.)
  5. Paste the encrypted password into the value field of the password line. It looks similar to this—be sure to paste inside the double quotes:
    <options name="password" value="{SHA-256:WNATpqw76zA=}GYeAKdTRiIh1VcqmWv1k/A2pcXSHfLUBr9boP03ArKE=" />
  6. Save the file and exit.
  7. To make the new or disabled passwords take effect, restart the Sybase Control Center server or agent on which the changes were made.