1. Installing applications
MySQL Server
- Download MySQL Server at: https://dev.mysql.com/downloads/windows/installer/
- Open downloaded file and install MySQL Installer
- Click Add button, then choose packages to install by clicking a package and click right arrow to Products/Features To Be Installed box. Recommended packages: MySQL Server and MySQL Workbench
- Click Next to continue set up
- In step: Account and Roles, enter password for the root account.
- Result:
- Connect to MySQL Server: open MySQL Workbench, click plus icon to add new connection
- Enter connection information: Connection name, host name, port, username and click Store In Vault button to set password was set up in previous steps for root account
- Click OK to connect
IIS Server
Internet Information Services (IIS, formerly Internet Information Server) is an extensible web server created by Microsoft.
Install IIS Server:
- Navigate to Start > Control Panel > Programs > Programs and Features
- Choose Turn Windows features on or off
- Select the Internet Information Services (IIS) check box, and tick the check boxes like image below, click Next, then click Finish
Finally, navigate to http://localhost/, The upshot should be like the image below
Referral Link: https://msdn.microsoft.com/en-us/Library/ms181052(v=vs.80).aspx
2. Download Resources
Navigate to https://github.com/baseeam to fork BaseEAM repositories
There are five repositories:
baseeam-artifacts: contains artifacts of BaseEAM projects such as: mockups, testing documents, ...
baseeam-web-app: contains the source code of BaseEAM web application.
baseeam-build: 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: contains the source code of BaseEAM background service.
- baseeam-workflow-designer: the tools to create new workflows or custimize existing workflows.
3. Import database
- Exact baseeam-build and open MySQL Wordbench
- Open BaseEAM script file
- Choose baseeam-build\Database\EAM\EAM_****.sql, Then click Run SQL Script to execute
- After executing, all data of application will be stored in eam database
4. Deploy built application to IIS Server
- Open IIS (Internet Information Services): Start > Internet Information Services (IIS) Manager
- Create New Website: Right-click and choose Add Website...
- 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:
- 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
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:
cd C:\Sites\BaseEAMServices\BackgroundService
BaseEAM.BackgroundService.exe install
Set up for WorkflowService service: in this example, Background Service is located in folder: C:\Sites\BaseEAMServices\WorkflowService. Run the commands below:
cd C:\Sites\BaseEAMServices\WorkflowService\BaseEAM.WorkflowService.exe
Result:BaseEAM.WorkflowService.exe install
6. Run application
- Navigate to http://localhost:8089 (8089 is port number defined in previous steps)
- The page should be like the image below. Using default username: appadmin and password: nx3#Lw3N to log in