Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
Install PostgreSQL
For more information on installing PostgreSQL, see the Cloud Service Automation System and Software Support Matrix Guide for a list of supported database versions.
Guides are available on the HPE Software Support web site at: https://softwaresupport.hpe.com (this site requires a Passport ID). Select Dashboards > Manuals.
Install the database according to the manufacturer’s documentation. Database installation is typically done in partnership with a database administrator.
Configure PostgreSQL
Caution The username
cannot contain more than one dollar sign symbol ($). For example, c$adb is a valid name
but c$$adb and c$ad$b are not valid names.
Configure PostgreSQL Users and Database (Required)
- Log on to PostgreSQL server as the postgres user (or another user that can create users and databases) using your favorite sql editor, for example using psql:
psql -U postgres
-
Create a CSA database user (for example, csadbuser). This user should inherit rights from parent roles:
create user csadbuser login password '<csadbuser_password>' inherit;
Provide this database username and password when prompted for the CSA , OO and the Identity Management component database information during the installation or upgrade of CSA.
-
(Optional) Create a reporting read-only user. The user is needed only if you want to use the reporting capabilities of CSA:
create user csareportingdbuser login password '<csareportingdbuser_password>' inherit;
If you configure this user, you must provide this user's username and password when prompted for the CSA reporting database user during the installation of CSA.
-
Create a new database for CSA (for example, csadb) with owner csadbuser.
create database csadb with owner=csadbuser;
Optionally, if you want to use reporting functionality, allow csareportingdbuser to connect to the csadb database:
grant connect on database csadb to csareportingdbuser;
-
(Optional - needed only if you want to install embeddedOO) Create a database for embedded Operations Orchestration (for example, csaoodb).
See the Operations Orchestration Database Guide for more information about database requirements for Operations Orchestration.
create database oodb with owner=csadbuser;
-
Create a new database for the Identity Management component.
create database idmdb with owner=csadbuser;
-
Create a new database for the Workflow Designer component.
create database ooddb with owner=csadbuser;
-
(Optional post install step) Grant read-only access for a reporting user. It is needed only if you want to use the reporting user.
This step has to be processed after the installation is finished, because database tables and views have to be created prior to running this command.
-
Connect to the csadb database. For example if you are using psql, use following statement:
\connect csadb
-
Grant read-only access for the reporting user with this command:
grant select on all tables in schema public to csareportingdbuser;
-
We welcome your comments!
To open the configured email client on this computer, open an email window.
Otherwise, copy the information below to a web mail client, and send this email to clouddocs@hpe.com.
Help Topic ID:
Product:
Topic Title:
Feedback: