User/group services¶
A user/group service provides the following information for users and groups:
- Listing of users
- Listing of groups, including users affiliated with each group
- User passwords
Many authentication providers will make use of a user/group service to perform authentication. In this case, the user/group service would be the database against which users and passwords are authenticated. Depending on how the Authentication chain is configured, there may be zero, one, or multiple user/group services active at any given time.
A user/group service may be read-only, providing access to user information but not allowing new users and groups to be added or altered. This may occur if a user/group service was configured to delegate to an external service for the users and groups database. An example of this would be an external LDAP server.
By default, GeoServer support two types of user/group services:
- XML—(Default) User/group service persisted as XML
- JDBC—User/group service persisted in database via JDBC
XML user/group service¶
The XML user/group service persists the user/group database in an XML file. This is the default behavior in GeoServer. This service represents the user database as XML, and corresponds to this XML schema
.
Note
The XML user/group file, users.xml
, is located in the GeoServer data directory, security/usergroup/<name>/users.xml
, where <name>
is the name of the user/group service.
The following is the contents of users.xml
that ships with the default GeoServer configuration:
<userRegistry version="1.0" xmlns="http://www.geoserver.org/security/users">
<users>
<user enabled="true" name="admin" password="crypt1:5WK8hBrtrte9wtImg5i5fjnd8VeqCjDB"/>
</users>
<groups/>
</userRegistry>
This particular configuration defines a single user, admin
, and no groups. By default, stored user passwords are encrypted using the
weak PBE method.
For further information, please refer to configuring a user/group service in the Web Administration Interface.
JDBC user/group service¶
The JDBC user/group service persists the user/group database via JDBC, managing the user information in multiple tables. The user/group database schema is as follows:
Field | Type | Null | Key |
---|---|---|---|
name | varchar(128) | NO | PRI |
password | varchar(254) | YES | |
enabled | char(1) | NO |
Field | Type | Null | Key |
---|---|---|---|
username | varchar(128) | NO | PRI |
propname | varchar(64) | NO | PRI |
propvalue | varchar(2048) | YES |
Field | Type | Null | Key |
---|---|---|---|
name | varchar(128) | NO | PRI |
enabled | char(1) | NO |
Field | Type | Null | Key |
---|---|---|---|
groupname | varchar(128) | NO | PRI |
username | varchar(128) | NO | PRI |
The users
table is the primary table and contains the list of users with associated passwords. The user_props
table maps additional properties to a user. (See Users and Groups for more details.) The groups
table lists all available groups, and the group_members
table maps which users belong to which groups.
The default GeoServer security configuration is:
name | password | enabled |
---|---|---|
Empty | Empty | Empty |
username | propname | propvalue |
---|---|---|
Empty | Empty | Empty |
name | enabled |
---|---|
Empty | Empty |
groupname | username |
---|---|
Empty | Empty |
For further information, please refer to configuring a user/group service in the Web Administration Interface.