Flash Media Server Resources
|
Manage administrators
About administrator rolesAdministrators 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 administratorsUse the Administration Console to add server administratorsNote: You
must be a server administrator (not a virtual host administrator)
to access the Manage Users tab.
Log in to the Administration
Console as a server administrator.
Select the Manage Users tab.
Click New User.
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 administratorsOpen the RootInstall/conf/Users.xml file.
Locate the UserList section.
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.
Validate the XML and save the Users.xml file.
Add virtual host administratorsOpen 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.
Locate the UserList section.
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.
Validate the XML and save the Users.xml file.
Delete administrator accounts and reset passwordsYou must be a server administrator (not a virtual host
administrator) to perform operations on the Manage Users tab.
Delete user accountLog in to the Administration Console
as a server administrator.
Click Manage Users.
Select a user.
Click Delete This User Account On The Server.
Confirm the action.
Reset user passwordLog in to the Administration Console
as a server administrator.
Click Manage Users.
Select a user.
Click Reset The Password For This User.
Type a new password.
|