Versions Compared

Key

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

Table of Contents

1. Installing applications

MySQL Server

Image Added

  • Open the downloaded file and install MySQL.

IIS Server

Install IIS Server:

  • Navigate to Start > Control Panel > Programs > Programs and Features
  • Choose Turn Windows features on or off

imageImage Added

  • Select the Internet Information Services (IIS

...

  • ) check box, and tick the check boxes like image below, click Next, then click Finish

Image Added

2. Download Resources

Navigate to https://github.com/baseeam to clone fork BaseEAM resourcesrepositories

...


There are four five repositories: 

  • baseeam-artifacts: contains artifacts of BaseEAM projects such as: mockups, testing documents, ...

  • baseeam-web-app: for developers who want to develop BaseEAM application based on their businesscontains the source code of BaseEAM web application.

  • baseeam-build: contains contains build of BaseEAM web app, background service, workflow service, database file (MySQL dump). Normal user can use this repository to deploy BaseEAM without downloading the source code from other repositories.

  • baseeam-background-service

Three repos have to be cloned to local: baseeam-web-app, baseeam-build, baseeam-background-service

Step 3: Install BaseEAM

Install IIS Server

  • : contains the source code of BaseEAM background service.

  • baseeam-workflow-designer: the tools to create new workflows or custimize existing workflows.

To install BaseEAM, we only need the baseeam-build repository.

3. Import database

  • The path of BaseEAM database script file is baseeam-build\Database\EAM\EAM_****.sql

  • Use Data Import/Restore functionality of MySQL Workbench to import/restore BaseEAM database.
  • After importing, the schema/data of BaseEAM database will be in eam database.

Image Added

4. Deploy BaseEAM web application to IIS Server

  • Open IIS (Internet Information Services): Start > Internet Information Services (IIS) Manager
  • Create New Website: Right-click and choose Add Website...

...

Image Added

  • Filling out site information:

  •  
    • Site name: Application name
    • Physical path: point to build directory (baseeam-build\Build\Web). In above example, we create a folder: C:\Sites\baseeam and copy all files in baseeam-build\Build\Web folder
    • Port: you have to define your application port.
  • Click OK to continue
  • Configure permission for application
  • Edit Web.Config file to point application to BaseEAM database: 
    • Uid: username to login MySql (use root by default or you can create new one)
    • Pwd: Password was set in previous steps.

Image Added

  • Setting up application folder in IIS Server
    • Right BaseEAM folder, then choose Properties
    • Go to the Security tab
    • Find the IUSR account
      (If IUSR is not in the list, add it by clicking Edit, then clic Add, and type "IUSR" in the "Enter the object names to select" field.)

...

    • Highlight the user in the list, click Edit, and grant the account Modify and Write permissions

Image Added

5. Install background services for BaseEAM application

BaseEAM application has two background services have to set up

  • BackgroundService: baseeam-build\Build\BackgroundService
  • WorkflowService: baseeam-build\Build\WorkflowService


Steps:

  • Run CMD (command line of Windows) as an Administrator
  • Set up for Background service: in this example, Background Service is located in folder: C:\Sites\BaseEAMServices\BackgroundService. Run the commands below:
Code Block
cd C:\Sites\BaseEAMServices\BackgroundService


Code Block
BaseEAM.BackgroundService.exe install

Image Added

  • Set up for WorkflowService service: in this example, Background Service is located in folder: C:\Sites\BaseEAMServices\WorkflowService. Run the commands below:

    Code Block
    cd C:\Sites\BaseEAMServices\WorkflowService\BaseEAM.WorkflowService.exe


    Code Block
    BaseEAM.WorkflowService.exe install


    Result:

Image Added

6. Run web application

  • Navigate to http://localhost:8089 (8089 is port number defined in previous steps)
  • The page should be like the image below. Using default SystemAdmin username: milldol and password: 112358 to log in

Image Added