Sun GlassFish Enterprise Server v3 Prelude Administration Guide

Administering File Users

A user is an individual (or application program) identity that is defined in Enterprise Server. A user who has been authenticated is sometimes called a principal.

As the administrator, you are responsible for integrating users into the Enterprise Server environment so that their credentials are securely established and they are provided with access to the applications and services that they are entitled to use.

The following tasks are used to manage users:

ProcedureTo Create a File User

The remote create-file-user command enables you to create a new user by adding a new entry to the keyfile. The entry includes the user name, password, and any groups for the user. Multiple groups can be specified by separating the groups with colons (:).

Creating a new file realm user is a dynamic event and does not require server restart.

  1. Ensure that the server is running.

    Remote commands require a running server.

  2. If the user will belong to a particular group, list the current file groups:

    asadmin list-file-groups –user admin –passwordfile passwords.txt

  3. Create a file user by using the create-file-user(1) command.


Example 7–5 Creating a User

The following example command create user Jennifer on the default realm file (no groups are specified):


asadmin create-file-user --user admin 
--passwordfile=c:\tmp\asadminpassword.txt Jennifer

Information similar to the following is displayed:


Command create-file-user executed successfully.

See Also

To see the full syntax and options of the command, type asadmin create-file-user --help at the command line.

ProcedureTo List File Users

The remote list-file-users command enables you to list the users that are in the keyfile.

  1. Ensure that the server is running.

    Remote commands require a running server.

  2. List users by using the list-file-users(1) command.


Example 7–6 Listing File Users

The following example command lists file users on the default file realm file:


asadmin list-file-users

Information similar to the following is displayed:


Jennifer
Command list-file-users executed successfully.

See Also

To see the full syntax and options of the command, type asadmin list-file-users --help at the command line.

ProcedureTo List File Groups

A group is a category of users classified by common traits, such as job title or customer profile. For example, users of an e-commerce application might belong to the customer group, and the big spenders might also belong to the preferred group. Categorizing users into groups makes it easier to control the access of large numbers of users. A group is defined for an entire server and realm. A user can be associated with multiple groups of users.

A group is different from a role in that a role defines a function in an application, while a group is a set of users who are related in some way. For example, in the personnel application there might be groups such as full-time, part-time, and on-leave. Users in these groups are all employees (the employee role). In addition, each user has its own designation that defines an additional level of employment.

The remote list-file-groups command lists groups for a file user, or all file groups if the --name option is not specified.

  1. Ensure that the server is running.

    Remote commands require a running server.

  2. List file groups by using the list-file-groups(1)command.


Example 7–7 Listing Groups for a User

The following example command lists the groups for user joesmith:


asadmin list-file-groups --name joesmith

Information similar to the following is displayed:


staff
manager
Command list-file-groups executed successfully

ProcedureTo Update a File User

The remote update-file-user command enables you to modify the information in the keyfile for a specified user.

  1. Ensure that the server is running.

    Remote commands require a running server.

  2. Update the user information by using the update-file-user(1) command.

  3. To apply your changes, restart Enterprise Server.

    1. Stop Enterprise Server.

      For instructions, see To Stop a Domain (or Server).

    2. Start Enterprise Server.

      For instructions, see To Start a Domain (or Server).


Example 7–8 Updating a User

The following command updates the groups for user Jennifer:


asadmin update-file-user --passwordfile 
c:\tmp\asadminpassword.txt --groups 
staff:manager:engineer Jennifer

Information similar to the following is displayed:


Command update-file-user executed successfully.

See Also

To see the full syntax and options of the command, type asadmin update-file-user --help at the command line.

ProcedureTo Delete a File User

The remote delete-file-user command enables you to remove a user entry from the keyfile by specifying the user name.

  1. Ensure that the server is running.

    Remote commands require a running server.

  2. Obtain the exact name of the file user that you are deleting.

    To list the existing file users:


    asadmin list-file-users
    
  3. Delete the user by using the delete-file-user(1) command.


Example 7–9 Deleting a User

The following example command deletes user Jennifer from the default file realm:


asadmin delete-file-user Jennifer

Information similar to the following is displayed:


Command delete-file-user executed successfully.

See Also

To see the full syntax and options of the command, type asadmin delete-file-user --help at the command line.