Skip to content

How To Install Creatio

Kyryl Krylov, CPA edited this page May 11, 2020 · 2 revisions

Steps

  • Download application files
  • Extract content and place it in C:\inetpub\wwwroot\Demo directory
  • Restore database from the backup file located in C:\inetpub\wwwroot\Demo\db\
USE [master]
RESTORE DATABASE [Demo] 
FROM  DISK = N'C:\inetpub\wwwroot\Demo\db\BPMonline7160Studio.bak' 
WITH  FILE = 1,  
MOVE N'TSOnline_Data' TO N'C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\MSSQL\DATA\StudioENU_3185404_0406.mdf',  
MOVE N'TSOnline_Log' TO N'C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\MSSQL\DATA\StudioENU_3185404_0406_1.ldf',  
NOUNLOAD,  STATS = 5
GO
  • Grant db_owner membership to the webuser

    • Right click on Security-->Logins-->webuser ands elect properties and grant db_owner role UserMapping
  • Update redis and db properties in C:\inetpub\wwwroot\Demo\ConnectionStrings.config file, my hostname is K_KRYLOV_NB, you can find out your hostname by executing hostname command in your console

<?xml version="1.0" encoding="utf-8"?>
<connectionStrings>
  <add name="redis" connectionString="host=k_krylov_nb;db=14;port=6379;maxReadPoolSize=10;maxWritePoolSize=500" />
  <add name="redisSentinel" connectionString="sentinelHosts=localhost:26380,localhost:26381,localhost:26382;masterName=mymaster;scanForOtherSentinels=false;db=1;maxReadPoolSize=10;maxWritePoolSize=500" />
  <add name="defPackagesWorkingCopyPath" connectionString="%TEMP%\%APPLICATION%\%APPPOOLIDENTITY%\%WORKSPACE%\TerrasoftPackages" />
  <add name="tempDirectoryPath" connectionString="%TEMP%\%APPLICATION%\%APPPOOLIDENTITY%\%WORKSPACE%\" />
  <add name="sourceControlAuthPath" connectionString="%TEMP%\%APPLICATION%\%APPPOOLIDENTITY%\%WORKSPACE%\Svn" />
  <add name="elasticsearchCredentials" connectionString="User=gs-es; Password=DEQpJMfKqUVTWg9wYVgi;" />
  <add name="influx" connectionString="url=http://10.0.7.161:30359; user=; password=; batchIntervalMs=5000" />
  <add name="db" connectionString="Data Source=K_KRYLOV_NB\SQLEXPRESS;Initial Catalog=Demo;User ID=webuser;Password=webuser;MultipleActiveResultSets=True;Pooling=true;Max Pool Size=100" />
</connectionStrings>
  • Add Web Site with IIS Manager AddWebsite

  • Add Application inside Demo Web site with IIS manager AddWebsite

Give it a try If all went well, you should see login page and be able to login with:
Username: Supervisor
Password: Supervisor

Related Academy Articles

INSTALLING CREATIO

Clone this wiki locally