Versions Compared

Key

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

...

Anchor
install data collection
install data collection
How to Install the CardioLog Analytics Usage Data Collection Components on a Dedicated Web Server

Anchor
system_reqs
system_reqs
System Requirements

Inspect the following table to assure that your dedicated web server meets the minimum hardware and software requirements:

 

Free/Standard Edition

Professional Edition

Enterprise Edition

Platform

64-bit

64-bit

64-bit

Operating System

Windows 2008 R2/2012/2012 R2/2016 Server Standard Edition (fully patched)

Windows 2008 R2/2012/2012 R2/2016 Server Standard Edition (fully patched)

Dedicated Windows 2008 R2/2012/2012 R2/2016 Server Standard Edition (fully patched)

 

Application Memory

4 GB

8 GB

Minimum* - 8 GB

Recommended - 12 GB

Processors

4 Cores

4 Cores

4 Cores

Additional Software & Services

  1. Verify that your system meets the software and hardware requirements.
  2. Install the Required Web Server (IIS) Role Services on your web server.
  3. Create a new EventCollector web application on your web server. For the new web application:
    • Create a dedicated application pool with ASP.NET version 4.0 and Integrated managed pipeline mode.
    • Grant the application pool account the "db_owner" role on the CardioLog database. 
    • Set the web application authentication method to Anonymous access (disable Windows Authentication). 
    • Grant Full Control permissions for the IIS_IUSRS group on the EventCollector folder
  4. Copy the files from the CardioLog server [CardioLog Installation Directory]\EventCollector to the new directory.
  5. Copy the files from the CardioLog server [CardioLog Installation Directory]\Setup Files\SLPS to the new directory under \EventCollector\bin folder.
  6. Execute the following command on your web server: Slps.Runtime.Configuration /Install
  7. Contact us to receive the required licenses for the web server (product edition and engagement package) and apply it using the License Admin tool (execute it from this location - \EventCollector\bin\Microsoft.Licensing.LicAdmin.exe).
  8. Create a new CardioLogAgent web application on the web server. For the new web application:
    • Create a dedicated application pool with ASP.NET version to 4.0 and Integrated managed pipeline mode.
    • Set the web application authentication method to Windows Authentication (disable Anonymous access).
    • Grant Full Control permissions for the IIS_IUSRS group on the CardioLogAgent folder
  9. Copy the files from the CardioLog server [CardioLog Installation Directory]\CardioLogAgent to the new directory.

  10. Edit the following keys in the CardioLogAgent\web.config file, located in the <appSettings> section and enter the NLB FQDN, where [domain name] is the NLB FQDN for the web applications.

    Info
    iconfalse

    <add key="EventCollectorPath" value="http[s]://[domain name]/EventCollector/monitor.aspx" />
    <add key="CardioLogAgentRoot" value="http[s]://[domain name]"/> 


    Note
    : When the EventCollector and CardioLogAgent web applications are installed on your SharePoint WFEs under each SharePoint web application _layouts folder, edit the following keys in the CardioLogAgent\web.config file, located in the <appSettings> section, where [domain name] is the SharePoint web application FQDN.

    Info
    iconfalse

    <add key="EventCollectorPath" value="http[s]://[domain name]/_layouts/EventCollector/monitor.aspx" />
     <add key="CardioLogAgentRoot" value="/_layouts"/>

  11. Edit the following keys in the Java Script tracking code:

    Info
    iconfalse

    cad.src = 'http[s]://[domain name]/CardioLogAgent/getCAData.aspx?r='+Math.random();
    ca.src = 'http[s]://[domain name]/CardioLogAgent/ca.aspx?u='+document.location.href;
    tt.src = 'http[s]://[domain name]/CardioLogAgent/AgentEmbed.aspx?env=[SharePoint version]';


    [domain name] - the NLB FQDN for the web application.
    [SharePoint version] - MOSS2007, SP2010, SP2013, SP2016 or SPOnline

    If the CardioLog Analytics SharePoint feature for usage tracking is deployed, edit the keys in the following location:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\CardioLogAgent\CardioLogAgent.js

    If the Java Script tracking code is embedded within a common Java Script file on your SharePoint WFEs, edit the keys in the following location:

    For MOSS 2007 only:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\1033\core.js

    For SharePoint 2010 only:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\1033\init.js

    For SharePoint 2013 only:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\init.js

    For SharePoint 2016 only:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\TEMPLATE\LAYOUTS\init.js

    The code is located at the end of the file, between these comments: //Intlock tracking code start, and //Intlock tracking code end
      

  12. In the CardioLog database, edit the URL column in the tab_management table by executing the following SQL script:

    Use CardioLog
    GO

    update tab_management set url = replace (url, '[Old URL]', '[New URL]')
    where name = 'EventCollector'


    [Old URL] - http[s]://CardioLog-machine-name:port
    [New URL] -
     http[s]://[domain name]

...