WA2.1 Database installation
This installation guide applies to the openIMIS Database v1.3.0 and later.
Implementation roles required: IT Officer / Developer / Database manager
Video tutorial
openIMIS Installation and Country Localization - Database Installation
Install SQL Server
openIMIS has been developed and tested using SQL Server 2017. Newer or old versions might require adaptations to both these installation guide and openIMIS code.
Download the desired version of SQL Server (for example, if you want to test openIMIS, you can download and install SQL Server 2017 Developer version - not for production ).
When the installation wizard opens, select the manual configuration option in order to fine-tune the installation process.
On the Features selection:
In
Shared Feature
section, selectSQL Client Connectivity SDK
For installations with Data Warehouse, select
Analysis Services
,Reporting Services
andIntegration Services
(not available for the Express edition)
On the Instance configuration, the default name
SQLEXPRESS
can be used, unless it is already used by another instance.On Database engine configuration, select
Mixed Mode
(SQL Server authentication and Windows authentication) in Authentication Mode.Continue the setup process until the installation is complete.
Configure SQL Server
Open the SQL Server Configuration Manager
On the left panel, select
SQL Server Network Configuration
→Protocols for SQLEXPRESS
(or the name of your SQL Server instance) → Enable Named Pipes and TCP/IPSelect SQL Server Services → right-click on SQL Server instance name and select Restart
Initialize openIMIS database
To facilitate the setting up of the openIMIS database, we suggest installing SQL Server Management Studio (SSMS). The following procedure is based on SSMS, but you can use the standard SQL Server prompt to proceed with the setup.
First, download the openIMIS database SQL files and migration scripts from Github repository (the source code ZIP file).
If you wish to initialize the database using SSMS, follow the steps:
Create a new database for the openIMIS instance (e.g. openIMIS.1.4.0, where 1.4.0 is the openIMIS database version).
Open the openIMIS_ONLINE.sql file (from the Empty databases folder) and execute the script (make sure the selected database is the one created in step a.)
If you prefer to initialize the database using the shell:
Be careful to adapt the queries to your setup, in the command lines example those assumptions were made:
The database is called IMIS_DATABASENAME
The SQL server is called SQL_Server_Name
Run the following commands:
SqlCmd -E –Q "CREATE DATABASE IMIS_DATABASENAME" SqlCmd -E -S SQL_Server_Name -d IMIS_DATABASENAME –i X:\PathToSQLFile\openIMIS_ONLINE.sql
Create a dedicated user with full privilege on the openIMIS database only:
In the Security → Logins → right-click and select “New Login…”
In General page:
Give a login name (e.g. ImisUser)
Select SQL Server authentication and provide a password
Unselect Enforce password expiration
Change the default database to openIMIS
In User Mapping page:
Map openIMIS database to ImisUser user
Give the role of db_owner
Initialize specific openIMIS database
There are three specific openIMIS databases to chose from:
Offline (openIMIS_OFFLINE.sql): this mode is used for remote insurance offices without Internet connectivity. Note: the synchronization of data with the central server is manual.
Offline HF (openIMIS_OFFLINE_HF.sql): this mode can be used in remote health facilities without Internet connectivity. Note: the synchronization of data with the central server is manual.
Demo (openIMIS_demo_ONLINE.sql): this script initialize the empty database with the demo dataset.
To initialize one of the specific openIMIS databases, follow the steps:
Initialize the openIMIS database by following the previous section steps
Run the specific database script on the already initialized openIMIS database
Upgrade the openIMIS database
To update a production instance and to prevent impacting the production if the migration script failed because of customizations in your openIMIS instance:
During the upgrade make sure the is not reachable from the applications (you should stop the openIMIS website in Web Application IIS).
Duplicate the database using SSMS or shell (create a full backup of the database and restore it with another database name, e.g. openIMIS.1.4.0)
Shell commands (e.g. duplicate 'openIMIS.1.3.0' database to 'openIMIS.1.4.0' database; please adapt to your situation):
SqlCmd -E -S SQL_Server_Name –Q "BACKUP DATABASE [openIMIS.1.3.0] TO DISK='X:\PathToBackupLocation\openIMIS.1.3.0.bak'" SqlCmd -E -S SQL_Server_Name –Q "RESTORE DATABASE [openIMIS.1.4.0] FROM DISK='X:\PathToBackupLocation\openIMIS.1.3.0.bak' WITH MOVE 'openIMIS.1.3.0' TO 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\DATA\openIMIS.1.4.0.mdf', MOVE 'openIMIS.1.3.0_log' TO 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\DATA\openIMIS.1.4.0_log.ldf'"
Download the openIMIS database SQL files and migration scripts from Github repository (the source code ZIP file).
Execute the migration script on the copy of the database in SSMS or shell
Shell command (e.g. from the current version 1.3.0 to the new version 1.4.0)
SqlCmd -E -S SQL_Server_Name -d openIMIS.1.4.0 –i "X:\PathToMigrationScript\openIMIS migration v1.3.0 - v1.4.0.sql"
Configure the openIMIS Web Application to use the newly migrated database (e.g. openIMIS.1.4.0).
Configure the openIMIS Backup Windows Service or your own backup application/service to use the newly migrated database (e.g. openIMIS.1.4.0).
Start your openIMIS website.
Previous step: WA2. Set up the default openIMIS instance | Go to parent: WA2. Set up the default openIMIS instance | Table of contents: Installation and Country Localisation | Next step: WA2.2 Web Application installation |
Did you encounter a problem or do you have a suggestion?
Please contact our Service Desk
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. https://creativecommons.org/licenses/by-sa/4.0/