Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ The elements of the <a href="#config">above configuration</a> are explained belo
|----------------------------|--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `processDefinitionKey` | Mandatory | Business Process Modeling Notation (BPMN) process definition ID.  BPMN process provided with AM as default has `APIStateChangeApprovalProcess` as the ID. |
| `stateList` | Mandatory | This is a comma-separated list of the current state and intended action. For example, Created:Publish,Published:Block |
| `serviceEndpoint` | Optional | The URL of the BPMN process engine. This overrides the global `<ServerUrl>` value from the `api-manager.xml` file. This can be used to connect a separate workflow engine for a tenant. |
| `username` | Optional | Username for the external BPMN process engine. This overrides the value of the `<ServerUser>` element that is defined in the `api-manager.xml` file of the tenant. |
| `password` | Optional | Password for the external BPMN process engine. This overrides the value of the `<ServerPassword>` element that is defined in the `api-manager.xml` file of the tenant. |
| `serviceEndpoint` | Optional | The URL of the BPMN process engine. This overrides the global workflow engine URL configured for the server (from `deployment.toml`). This can be used to connect a separate workflow engine for a tenant. |
| `username` | Optional | Username for the external BPMN process engine. This overrides the global workflow engine username configured for the server (from `deployment.toml`). |
| `password` | Optional | Password for the external BPMN process engine. This overrides the global workflow engine password configured for the server (from `deployment.toml`). |
23 changes: 1 addition & 22 deletions en/docs/reference/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,28 +201,7 @@ username = "admin"
password = "${new-password}"
```

You can verify whether the password change is applied correctly by checking the following elements in the `<API-M_HOME>/repository/conf/api-manager.xml` file.

``` xml
<AuthManager>
<Username>admin</Username>
<Password>newpassword</Password>
</AuthManager>
```

``` xml
<APIGateway>
<Username>admin</Username>
<Password>newpassword</Password>
</APIGateway>
```

``` xml
<APIKeyManager>
<Username>admin</Username>
<Password>newpassword</Password>
</APIKeyManager>
```
You can verify whether the password change is applied correctly by checking the updated `deployment.toml` values and signing in with the new credentials. The server renders runtime XML from these settings at startup, so you should not edit `api-manager.xml` directly.
Go to the **Resources &gt; Browse** menu in the management console to open the registry and update the credentials in the `/_system/governance/apimgt/applicationdata/sign-up-config.xml` registry location.

### How can I manage session timeouts for the management console?
Expand Down