This section explains how to install Teamwork Cloud (TWCloud) on a single server by using zip files and set up its configuration file to allow access to the authentication server. 


To install TWCloud on Windows by unzipping the file


  1. Verify that 'java –version' is the active version of Java (Oracle JDK 1.8.0_192).
  2. Unzip the contents of the TeamworkCloudSuite directory to the installation directory (for example, C:\Program Files\TeamworkCloud).
  3. Open the server configuration file C:\ProgramFiles\TeamworkCloud\configuration\application.conf and edit the following lines (the hostname and seed-nodes) to use the node's own IP address.
    You must also set the IP address of the Cassandra node in the seeds section.  If your Cassandra instance is on the same server, then use the nodes own IP address.
    hostname = "10.1.1.123"
    seed-nodes = ["akka.tcp://twcloud@10.1.1.123:2552"]
    seeds = ["10.1.1.123"]
  4. Update the AuthServer configuration: <AuthServer install root>\config\authserver.properties by specifying the IP address instead of <serverIP>:

    server.public.host=<serverIP>
    authentication.redirect.uri.whitelist=https://<serverIP>:8443>/webapp/
    twc.server.host=<serverIP>
    cassandra.contactPoints=<serverIP>


  5. Update the configuration file: C:\Program Files\TeamworkCloud\WebAppPlatform\shared\conf\webappplatform.properties - the configuration file for TWC Admin Console


  6. Generate default keypair and certificate by running the following command from command prompt. If your TeamworkCloudSuite is under a folder that requires Administrative permission, for example, C:\Program Files, make sure that you start the command prompt using "Run as administrator".

    C:\> cd C:\TeamworkCloudSuite\scripts\windows
    C:\> genkey

If the server is accessed via FQDN or public IP address, then the authentication.redirect.url must also contain entries for them, accordingly, in the format:
authentication.redirect.uri.whitelist=https://<serverIP>:8443>/webapp/,https://<PublicIP>:8443>/webapp/,https://<FQDN>:8443>/webapp/,https://md_redirect/

  

There are additional steps to run TWCloud as a service on Windows. Before proceeding, make sure the server's log configuration points to the file location that is writable. You can find the log config in the file C:\TeamworkCloudSuite\configuration\logback.xml.

You need to check if the file location path is editable.


To run TWCloud on Windows


  1. Set the necessary environment variables in the shell that will execute the service installation script, where:

    For example:

        C:\> set TWCLOUD_HOME=C:\Program Files\TeamworkCloud
        C:\> set JAVA_HOME=C:\Program Files\Java\jre1.8.0_192

    Alternatively, set the environment variables by adding them through the Environment Variables dialog (click Control Panel > System > Advanced > Environment Variables > New). 


  2.  Run the Teamwork Cloud service installation script, for example: 

    C:\Program Files\TeamworkCloud\scripts\windows>installService.bat 


  3. Run the Authserver service installation script, for example:

    C:\Program Files\TeamworkCloud\AuthServer\registerWindowsService.bat


  4. Run the Webapp service installation script

  5. Set service dependencies

    C:\>sc config webapp depend= teamworkcloud
    C:\> sc config authserver depend= teamworkcloud
  • The scripts should be executed from an elevated command prompt (Run as Administrator).
  • On Windows, the values of the environment variables are evaluated only once, when the service is installed. Subsequent changes to these variables will not affect service startup. Therefore, if the values are modified and the service must use the new values, the service must be re-installed.


To uninstall TWCloud


C:\Program Files\TeamworkCloud\scripts\windows>uninstallService.bat 
C:\Program Files\TeamworkCloud\AuthServer\unregisterWindowsService.bat
C:\Program Files\TeamworkCloud\WebAppPlatform\bin\>service.bat uninstall


Starting TWCloud on Windows