Manage administrators



About administrator roles

Administrators are users who are allowed to log in to the Administration Console. There are two types of administrators: server administrators and virtual host administrators.

Server administrators can control all virtual hosts and perform server-level tasks, such as restarting or shutting down the server. Server administrators can access and perform all operations on all tabs.

Virtual host administrators can manage the applications on their virtual host—for example, they can reload or disconnect applications. Virtual host administrators can access and perform operations on the View Applications tabs. They cannot manage servers or administrative users.

Add administrators

Use the Administration Console to add server administrators

Note: You must be a server administrator (not a virtual host administrator) to access the Manage Users tab.
  1. Log in to the Administration Console as a server administrator.

  2. Select the Manage Users tab.

  3. Click New User.

  4. Enter the user name and password and click Save.

    The Administration Console adds the new user and password to the Users.xml file. You do not need to restart either server.

Edit the Users.xml file to add server administrators

  1. Open the RootInstall/conf/Users.xml file.

  2. Locate the UserList section.

  3. Add a new <User></User> section for each server administrator you want to add.

    The User name attribute specifies the user name. The Password element specifies the password. The Allow, Deny, and Order elements specify the hosts from which the administrator can connect to the Administration Console. The following sample XML adds a user who can connect from any domain:

    <UserList> 
        <User name="${SERVER.ADMIN_USERNAME}"> 
            <Password encrypt="false">${SERVER.ADMIN_PASSWORD}</Password> 
            <Allow></Allow> 
            <Deny></Deny> 
            <Order>Allow,Deny</Order> 
        </User> 
        <User name="janedoe"> 
            <Password encrypt="false">S4mpl3P4ss</Password> 
            <Allow></Allow> 
            <Deny></Deny> 
            <Order>Allow,Deny</Order> 
        </User> 
    </UserList>

    For more information, see the comments in the Users.xml file.

  4. Validate the XML and save the Users.xml file.

Add virtual host administrators

  1. Open the Users.xml file in the root folder of the virtual host; for example, RootInstall/conf/_defaultRoot_/www.sampleVhost.com/Users.xml. If the file doesn’t exist, copy the Users.xml file from the RootInstall/conf folder.

  2. Locate the UserList section.

  3. Add a new <User></User> section for each virtual host administrator you want to add.

    The User name attribute specifies the user name. The Password element specifies the password. The Allow, Deny, and Order elements specify the hosts from which the administrator can connect to the Administration Console. The following sample XML adds a user who can connect from any domain:

    <UserList> 
        <User name="${SERVER.ADMIN_USERNAME}"> 
            <Password encrypt="false">${SERVER.ADMIN_PASSWORD}</Password> 
            <Allow></Allow> 
            <Deny></Deny> 
            <Order>Allow,Deny</Order> 
        </User> 
        <User name="vHostAdmin"> 
            <Password encrypt="false">Ex4mpl3P4ss</Password> 
            <Allow></Allow> 
            <Deny></Deny> 
            <Order>Allow,Deny</Order> 
        </User> 
    </UserList>

    For more information, see the comments in the Users.xml file.

  4. Validate the XML and save the Users.xml file.

Delete administrator accounts and reset passwords

You must be a server administrator (not a virtual host administrator) to perform operations on the Manage Users tab.

Delete user account

  1. Log in to the Administration Console as a server administrator.

  2. Click Manage Users.

  3. Select a user.

  4. Click Delete This User Account On The Server.

  5. Confirm the action.

Reset user password

  1. Log in to the Administration Console as a server administrator.

  2. Click Manage Users.

  3. Select a user.

  4. Click Reset The Password For This User.

  5. Type a new password.