Install Centara Server
Centara Server is a web application that runs on Internet Information Service within a Windows Server. Below are the prerequisites that must exist in order for it to run properly.
Prerequisites
To get started there's a few prerequisites that must be met.
First off, HB International will provide you with the following.
Site-id
GetCentara.exe
If used; a Single-sign-on secret
Acquiring Centara Server
Place GetCentara.exe command line in C:\Centara
Run the following command from a Command terminal
Web server configuration
Open the IIS management console
Add an application pool with .NET 4 Integrated Pipeline
Add application
Assign the application pool generated in the previous step
Set physical path to C:\Centara\site-id\CentaraServer
Set alias to site-id
File system permissions
Give the Application Pool Identity read access to C:\Centara\site-id\CentaraServer and all sub-directories.
Give the Application Pool Identity write access to C:\Centara\site-id\CentaraServer\APP_DATA and all sub-directories.
Database configuration
Make sure that CLR integration is enabled.
sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'clr enabled', 1; GO RECONFIGURE; GO
On some SQL Servers you may get error like this: CREATE or ALTER ASSEMBLY for assembly 'Centara.Database' with the SAFE or EXTERNAL_ACCESS option failed because the 'clr strict security' option of sp_configure is set to 1. Microsoft recommends that you sign the assembly with a certificate or asymmetric key that has a corresponding login with UNSAFE ASSEMBLY permission. Alternatively, you can trust the assembly using sp_add_trusted_assembly. For such cases you will want to execute the following script:EXEC sp_configure 'clr strict security', 0; GO RECONFIGURE; GO
Create a login and user for the Centara Server web application.
create login CentaraServerWebApplication with password='secret-cwsa-password'
Create empty database owner by the user.
create database CentaraServer use CentaraServer exec sp_changeDbOwner CentaraServerWebApplication
Create Centara.ini in c:\Centara\site-id
Running Centara server
Browse to http://localhost/site-id
Choose region plugin and click Save.
Click on Upgrade Database. Database will be created. DBCompare will run and provide results.
Click Continue to Centara.
Fill out the following Server Settings and then click Save.
Authentication (for single-sign-on only if applicable)
Authority URL = https://users.centara.online
Client-Secret = [as provided from HB International]
Installation
Server URL = [your site URL]
Site-ID = [your site-id]
Once DBCompare has completed, a list of services will attempt or run one by one, indicating with a green light if each service has started successfully.
Create the administrator user providing email and password. Passwords must have at least one non letter or digit character, at least one digit ('0'-'9') and at least one uppercase ('A'-'Z'). Click Create administrator.
Centara Server will launch.
Last updated
Was this helpful?