Prerequisites
Before you assign rights to the accounts, perform the following actions:
Configuring the accounts to install Administration Server (automatic creation of the Administration Server database)
To configure the accounts for the Administration Server installation:
If you use the Postgres user, you do not need to grant additional rights to it.
If you want to use a new Postgres role, create this role, and then grant it the CREATEDB privilege. To do this, run the following script (in this script, the role is KSCAdmin):
CREATE USER "KSCAdmin" WITH PASSWORD '<
password
>' CREATEDB;
The created role will be used as an owner of the Administration Server database (hereinafter also referred to as the Server database).
The Administration Server Setup wizard starts. Follow the instructions of the wizard.
You can select an existing Windows user account or automatically create a new Windows account in the KL-AK-* format by using the installer. Regardless of the account choice, the installer assigns the required system rights to the Administration Server service account.
After the installation finishes, the Server database is automatically created and Administration Server is ready to use.
Configuring the accounts to install Administration Server (manual creation of the Administration Server database)
To configure the accounts for the Administration Server installation:
CREATE USER "KSCAdmin" WITH PASSWORD '<
password
>';
CREATE DATABASE "KAV" ENCODING 'UTF8';
GRANT ALL PRIVILEGES ON DATABASE "KAV" TO "KSCAdmin";
To do this, log in under the Postgres user in the Server database, and then run the following script (in this script, the role is KSCAdmin):
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA "public" TO "KSCAdmin";
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA "public" TO "KSCAdmin";
The Administration Server Setup wizard starts. Follow the instructions of the wizard.
You can select an existing Windows user account or automatically create a new Windows account in the KL-AK-* format by using the installer. Regardless of the account choice, the installer assigns the required system rights to the Administration Server service account.
After the installation finishes, the Administration Server will use the created database to store the Administration Server data. Administration Server is ready to use.
Page top