Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Перейдите в каталог Switch to C:\inetpub\wwwroot\ils\targetConfigs и отредактируйте файл folder and edit sampleDb.config file:

<Settings> … </Settings>:

  • Data Source - имя сервера is the name of Microsoft SQL Server или именованного экземпляраor its named instance
  • Initial Catalog - имя базы данных is the name of database (ILS)
  • User ID - сервисная учётная запись для работы с базами данных  is the service account to use with Indeed PAM databases
  • Password - пароль сервисной учётной записи is the password for that service account

Code Block
languagexml
themeConfluence
<Settings>
	<ConnectionString>Data Source=MSSQLServer;Initial Catalog=ILS;Integrated Security=False;User ID=IPAMSQLServer;Password=Password</ConnectionString>
</Settings>


Warning
iconfalse

В случае использования именованного экземпляра If named instance of Microsoft SQL Server значение параметра Data Source необходимо задавать в формате <имя сервера>\<имя экземпляра>is used, then the Data Source parameter should be specified as
<server name>\<instance name>.

Code Block
<Settings>
	<ConnectionString>Data Source=MSSQLServer\Named instance; ... </ConnectionString>
</Settings>