User Management

Arkance Systems Benelux


Add New Project


Adds new project (named "Demo project") to the data store:


vsb_geo_cmd -projects -add -name:"Demo project"

GeoView Server command-line tool provides following user management functionality:


Command

Operation

Parameter(s)

Description

-users

-list


Displays list of all existing users in a data store.

-add

-username

User's unique user name in the data store. This parameter is mandatory.

-password

User's case-sensitive password. This parameter is mandatory.

-email

E-mail address of the user. This parameter is mandatory.

-permissions

User's permissions: R (Read), W (Write) and (A) Administrator. This parameter is mandatory.

-firstname

First name of the user. This parameter is optional.

-lastname

Last name of the user. This parameter is optional.

-organization

Company name of the user. This parameter is optional.

-description

Description associated to the user. This parameter is optional.

-notify

Notifies user by e-mail (if set) about newly opened user account.

-remove

-username

Removes existing user from data store given user name.


List Existing Users


Displays list of all existing users in a data store:


vsb_geo_cmd -users -list


Add New User


Adds new user (named "demo") to the data store, using default access permissions:


vsb_geo_cmd -users -add -username:demo -password:demo


Adds new user (named "demo") to the data store, using specified (Read+Write) access permissions:


vsb_geo_cmd -users -add -username:demo -password:demo -permissions:RW


Adds new user (named "demo") to the data store, using full name and specified (Read+Write) access permissions:


vsb_geo_cmd -users -add -username:demo -password:demo -firstname:John -lastname:Doe -permissions:RW


Adds new user (named "demo") to the data store, using full name, e-mail and specified (Read+Write) access permissions while notifying user by mail:


vsb_geo_cmd -users -add -username:demo -password:demo -firstname:John -lastname:Doe -permissions:RW -email:jdoe@test.com -notify


Please note following:



Remove Existing User


Removes existing user from data store, for example:


vsb_geo_cmd -users -remove -username:demo