Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Warning | ||
---|---|---|
| ||
Все URL указываются в нижнем регистре. | ||
All URLs are specified in lowercase. |
Перейдите в каталог Switch to C:\inetpub\wwwroot\idpи отредактируйте файл folder and edit appsettings.json file:
ConnectionStrings:
- Data Source - имя сервера is the name of Microsoft SQL Server или именованного экземпляра or its named instance
- Initial Catalog - имя базы данных is the name of database (IPAMIdP)
- User ID - сервисная учётная запись для работы с базами данных is the service account to use with Indeed PAM databases
Password - пароль сервисной учётной записи is the password for that service account
Code Block | ||||
---|---|---|---|---|
| ||||
"ConnectionStrings": { "DefaultConnection": "Data Source=MSSQLServer;Initial Catalog=IPAMIdP;Integrated Security=False;User ID=IPAMSQLService;Password=password" } |
Warning | ||
---|---|---|
| ||
В случае использования именованного экземпляра If you are using a named instance of Microsoft SQL Server значение параметра Data Source необходимо задавать в формате <имя сервера>\\<имя экземпляра>, the value of the Data Source parameter must be set in the format <server name>\\<instance name>.
|
IdentitySettings:
- AdminSids - SID пользователя, который получит доступ к консоли администратора, если пользователей несколько, то их SID указывается через запятую is SID of the user to get access to administrator console. If there are several of them, then the SIDs must be divided by comma
- IdpUrl - is IdpUrl - URL Indeed PAM IdP
Code Block | ||||
---|---|---|---|---|
| ||||
"IdentitySettings":{ "AdminSids": [ "S-1-5-21-1487179672-2651565253-5257550508-0000", "S-1-5-21-1487179672-2651565253-5257550508-0001" ], "IdpUrl": "https://pam.indeed-id.local/idp" "Lang": "ru", "SigningCertificate": "" "ConsoleAppClientSecret": "" } |
PamSettings:
- ManagementConsoleUrl - URL of Indeed PAM Management Console
- UserConsoleUrl - URL of Indeed PAM User Console
Code Block | ||||
---|---|---|---|---|
| ||||
"PamSettings": { "ManagementConsoleUrl": "https://pam.indeed-id.local/mc", "UserConsoleUrl": "https://pam.indeed-id.local/uc", "SessionLifetime": 43200 }, |
EventsSettings:
- EventCacheDirectory - временный каталог для записи событий a temporary folder for event writing
- Url - URL API единого журнала событий for the uniform event log
Code Block | ||||
---|---|---|---|---|
| ||||
"EventsSettings": { "AppId": "pam", "Component": "idp", "EventCacheDirectory": "C:\\Temp\\ILS\\IdP\\EventCacheDirectory", "EventCacheSendingIntervalSec": "10", "Url": "https://pam.indeed-id.local/ils/api", "CertificateThumbprint": "", "CertificateFilePath": "", "CertificateFilePassword": "" }, |
Backtotop | ||||
---|---|---|---|---|
|