Creatio administration
This documentation is valid for Creatio version 7.16.0. We recommend using the newest version of Creatio documentation.

Deploy Creatio .NET Core application server on Linux directly

To deploy Creatio application server:

  • Install .NET Core, GDI+ compatible API on non-Windows operating systems, and Development libraries and header files for GNU C. Read more >>>

  • Run Creatio application server. Read more >>>

Install .NET Core and other Creatio dependencies

1.Download the packages-microsoft-prod package:

wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb

2.Log in as root:

sudo su

3.Install the downloaded package:

dpkg -i packages-microsoft-prod.deb

4.Update the package lists:

apt-get update

5.Install the APT transport for downloading via the HTTP Secure protocol:

apt-get install apt-transport-https

6.Update the package lists:

apt-get update

7.Install .NET Core:

apt-get install dotnet-sdk-3.1

8.Install GDI+ compatible API on non-Windows operating systems:

apt-get install -y libgdiplus

9.Install development libraries and header files for GNU C:

apt-get install -y libc6-dev

10.Log out from your root session:

exit

Run Creatio application server

To run the application:

1.Navigate to the directory with Creatio setup files:

cd /path/to/application/directory/

2.Run the .Net Core server:

dotnet Terrasoft.WebHost.dll

The HTTP version of the Creatio application will be available on port 5000.

The HTTPS version of the Creatio application will be available on port 5002.

Note

To log in to a newly deployed application, use the default Supervisor user account. It is highly recommended to change the Supervisor password immediately. Login: Supervisor; Password: Supervisor.

Previous step

Setting up the ConnectionStrings.config file

See also

Deploy Creatio .NET Core application server on Linux using Docker

Did you find this information useful?

How can we improve it?