Prerequisites
Before you assign rights to the DBMS account, perform the following actions:
Configuring the DBMS accounts to install Administration Server
To configure the DBMS accounts for the Administration Server installation:
CREATE USER "kscdbadmin" WITH PASSWORD '<password>';
kav):CREATE DATABASE "kav" ENCODING 'UTF8' OWNER "kscdbadmin";
We recommend that you specify the Postgres role created at step 3 of this instruction as the database owner (in this example, the role is kscdbadmin).
Specifying another user as the database owner
Ensure that the database owner role has the CONNECT and TEMPORARY privileges.
If the error "New encoding (UTF8) is incompatible with the encoding of the template database" occurs, create a database by using the command:CREATE DATABASE "kav" ENCODING 'UTF8' OWNER "kscdbadmin" TEMPLATE template0;
instead of:CREATE DATABASE "kav" ENCODING 'UTF8' OWNER "kscdbadmin";
iamdbadmin):CREATE USER "iamdbadmin" WITH PASSWORD '<password>';
iam):CREATE DATABASE "iam" ENCODING 'UTF8' OWNER "iamdbadmin";
We recommend that you specify the Postgres role created at step 5 of this instruction as the database owner (in this example, the role is iamdbadmin).
Specifying another user as the IAM database owner
Ensure that the database owner role has the CONNECT and TEMPORARY privileges.
If the error "New encoding (UTF8) is incompatible with the encoding of the template database" occurs, create a database by using the command:CREATE DATABASE "iam" ENCODING 'UTF8' OWNER "iamdbadmin" TEMPLATE template0;
instead of:CREATE DATABASE "iam" ENCODING 'UTF8' OWNER "iamdbadmin";
The Administration Server does not remove the IAM database automatically when uninstalling or moving the server to another device, you must remove the database manually.
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