Difference between revisions of "Installation Manual"
Line 78: | Line 78: | ||
(IIS Some of the common settings are required after installing Internet Information Services). | (IIS Some of the common settings are required after installing Internet Information Services). | ||
*Change .net framework version to 4.0 in IIS. Click on Application pool for SmartHCM like DefaultAppPool and go to Basic Settings and change .net framework version to v4.0 and Managed pipeline mode to Integrated. | *Change .net framework version to 4.0 in IIS. Click on Application pool for SmartHCM like DefaultAppPool and go to Basic Settings and change .net framework version to v4.0 and Managed pipeline mode to Integrated. | ||
+ | |||
+ | '''Image1''' | ||
+ | |||
+ | *In the application pool section, Click on Application pool for SmartHCM like DefaultAppPool and go to Advance Settings and change .net framework version to v4.0 and change Enable 32-bit application property to true | ||
+ | |||
+ | '''Image2''' | ||
+ | |||
+ | ===Recommended Browsers=== | ||
+ | |||
+ | Recommended Browsers for SmartHCM application are “Google Chrome” or “Mozilla Firefox”.Following links are available to download “Google Chrome” or “Mozilla Firefox” respectively. | ||
+ | |||
+ | '''Link7''' | ||
+ | |||
+ | '''Link8''' | ||
+ | |||
+ | ===Supporting Tools=== | ||
+ | |||
+ | Following softwares are not mandatory for completing the installation but it will help you to set some configuration and database queries etc: | ||
+ | |||
+ | ===PLSQL Developer=== | ||
+ | |||
+ | PL/SQL Developer is an Integrated Development Environment that is specifically targeted at the development of stored program units for Oracle Databases.PL/SQL Developer will be used to connect to SmartHCM database and access its Tables, Stored Procedures etc.Following link is available to download PLSQL Developer. | ||
+ | |||
+ | '''Link8''' | ||
+ | |||
+ | ===Product Installation=== | ||
+ | Following are the step by step solution to install SmartHCM application. | ||
+ | |||
+ | ===Copy Published folder=== | ||
+ | First you need to copy the published folder to any path in the directories | ||
+ | |||
+ | '''Image3''' | ||
+ | |||
+ | ===Upload Product to IIS=== | ||
+ | Following are two ways to upload our product SmartHCM to IIS. | ||
+ | |||
+ | ===Add Website to IIS=== | ||
+ | Following are the step by step solution to create website in IIS.Refer Section 4.5.1 Post Installation Settings of Internet Information Services (IIS) to set the configuration of Application Pool.Start IIS and right click on “Sites” folder and click on “Add Web Site”. | ||
+ | |||
+ | '''image4''' | ||
+ | |||
+ | ===Site Name=== | ||
+ | Following window will appear when we click on “Add Web Site”. Provide any Site name for the application like SmartHCM. This site name will appear in the navigation panel of IIS. | ||
+ | |||
+ | '''Image5''' | ||
+ | |||
+ | ===Application Pool=== | ||
+ | When we add a new website, “Application Pool” will be created automatically. Although if we want to select already existing “Application Pool” then we can click on the Select… button and choose an existing application pool. Following window will appear when you click on Select… button. | ||
+ | |||
+ | '''Image6''' | ||
+ | |||
+ | ===Physical Path=== | ||
+ | Provide physical path of the copied published folder.Following window will appear when we click browse button in “Content Directory” panel in Add Website window. | ||
+ | |||
+ | '''image7''' | ||
+ | |||
+ | ===Binding Section=== | ||
+ | |||
+ | Following is the information provided in binding section. | ||
+ | • Type : http | ||
+ | • IP address : IP address of the web server | ||
+ | • Port: Port for the application(already assigned port to another web site can’t be set here) | ||
+ | |||
+ | ===Add Application to IIS=== | ||
+ | Once you have created website in IIS you can add application to that website. | ||
+ | Start IIS and right click on "Default Web Site" or any other website like SmartHCM and select "Add Application" option. | ||
+ | To add stand alone website for SmartHCM see section 6.2.1 Add Website to IIS. | ||
+ | |||
+ | '''Image8''' | ||
+ | |||
+ | ===Alias Name=== | ||
+ | Following window will appear when you click on "Add Application". | ||
+ | Provide any Alias name for the application like SmartHCMTest | ||
+ | |||
+ | '''Image9''' | ||
+ | |||
+ | ===Application Pool=== | ||
+ | When we add a new application, “Application Pool” will be used from the main web site automatically. Although if we want to select other existing “Application Pool” then we can click on the Select… button and choose an existing application pool. Following window will appear when you click on Select… button. | ||
+ | |||
+ | '''Image10''' | ||
+ | |||
+ | ===Physical Path=== | ||
+ | Provide physical path of the copied published folder. See the image from section 6.2.2.1 Alias Name for reference. | ||
+ | |||
+ | ===Configuration folder settings=== | ||
+ | Configuration folder is available in published folder. This folder is used for database connection settings and Company logos and icons.Following is the snapshot for SmartHCM configuration folder. | ||
+ | |||
+ | '''image11''' | ||
+ | |||
+ | ===db.txt file in Configuration folder=== | ||
+ | db.txt file in configuration folder is used to connect application with database.Following text should be entered in db.txt file. Snapshot is also available for reference. | ||
+ | |||
+ | '''Syntax'''2 | ||
+ | 1, Server Machine Name, Port number, Oracle Service Name, User, Password | ||
+ | 2, Server Machine Name, Port number, Oracle Service Name, User, Password | ||
+ | |||
+ | '''Example'''2 | ||
+ | 1,SDS-SERVER,1521,ORA9I,SMARTHCM,PASSWORD | ||
+ | 2,LOCALHOST,1521,ORA11G,SMARTHCM,PASSWORD | ||
+ | |||
+ | '''image12''' | ||
+ | |||
+ | ===Import Database Dump=== | ||
+ | Following are the installation steps to import database dump in the Oracle Database 11g. | ||
+ | |||
+ | ===Installation Steps=== | ||
+ | Following are the steps to follow when creating database for SmartHCM. | ||
+ | First you need to start PLSQL Developer and login with System administrator user. | ||
+ | |||
+ | ===Case Sensitive Passwords=== | ||
+ | '''SEC_CASE_SENSITIVE_LOGON enables or disables password case sensitivity in the database. Run following command in PLSQL Developer. | ||
+ | ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE''' | ||
+ | |||
+ | ===Create Table Space=== | ||
+ | Create TABLESPACE in oracle database for SmartHCM by using following command in “PL/SQL Developer” | ||
+ | '''CREATE TABLESPACE SMARTHCM | ||
+ | DATAFILE 'C:\app\administrator\oradata\ora11g\SMARTHCM.dbf' SIZE 1024M | ||
+ | AUTOEXTEND ON NEXT 1024M MAXSIZE 10240M;''' | ||
+ | |||
+ | ===Create User=== | ||
+ | '''Create user “SMARTHCM” by using following command in PLSQL Developer | ||
+ | CREATE USER SMARTHCM IDENTIFIED BY SMARTHCM DEFAULT TABLESPACE SMARTHCM;''' | ||
+ | |||
+ | ===Give Rights to SMARTHCM user=== | ||
+ | Give rights to SMARTHCM database user by using following command in PLSQL Developer.GRANT CONNECT, RESOURCE TO SMARTHCM; | ||
+ | |||
+ | ===Create ORACLE_DUMP Directory=== | ||
+ | '''Create ORACLE_DUMP Directory in Oracle database user by using following command in PLSQL Developer.CREATE DIRECTORY ORACLE_DUMP A'C:\ORACLE_DUMP';''' | ||
+ | |||
+ | ===Give Rights to SMARTHCM user on ORACLE_DUMP Directory=== | ||
+ | '''Give rights to SMARTHCM user on ORACLE_DUMP directory by using following command in PLSQL Developer.GRANT READ, WRITE ON DIRECTORY ORACLE_DUMP to SMARTHCM;''' | ||
+ | |||
+ | ===Create TOM_FILE Directory=== | ||
+ | '''Create TOM_FILE Directory in Oracle database user by using following command in PLSQL Developer.CREATE DIRECTORY TOM_FILE AS '… SMARTHCM\CONFIGURATION';Note: define “CONFIGURATION” folder path exists in SmartHCM project folder.''' | ||
+ | |||
+ | ===Give Rights to SMARTHCM user on TOM_FILE Directory=== | ||
+ | '''Give rights to SMARTHCM user on TOM_FILE directory by using following command in PLSQL Developer.GRANT READ, WRITE ON DIRECTORY TOM_FILE to SMARTHCM;''' | ||
+ | |||
+ | ===Copy SMARTHCM database dump into Directory=== | ||
+ | Copy SMARTHCM database dump into 'C:\ORACLE_DUMP' | ||
+ | |||
+ | ===Import Database Dump=== | ||
+ | Following steps should be followed for importing database dump. | ||
+ | Run Command Prompt with “Run as Administrator”. | ||
+ | Import SMARTHCM database dump by using following command in Command Prompt | ||
+ | IMPDP SYSTEM/PASSWORD REMAP_SCHEMA=SMARTHCM:SMARTHCM DIRECTORY=ORACLE_DUMP DUMPFILE=SMARTHCM.DMP LOGFILE=SMARTHCM_EXPORT.LOG | ||
+ | If this command ask for user name while you have provided correct username and password and you get following error message in importing dump | ||
+ | “ORA-28547: connection to server failed, probable Net8 admin error” | ||
+ | “UDI-28547: operation generated oracle error”Then check the sqlnet.ora (exists in same folder in which tnsnames.ora exists). And change the following entry and try.Original entry ------ SQLNET.AUTHENTICATION_SERVICES = (NTS)entry ------ SQLNET.AUTHENTICATION_SERVICES = (NONE)And then run IMPDP command again and then Connect with SMARTHCM user in PLSQL Developer. | ||
+ | |||
+ | ===Compile Invalid Objects=== | ||
+ | Compile Invalid Objects is the option available in PLSQL Developer. | ||
+ | You just need to start PLSQL Developer and use the “Compile Invalid Objects” in the tools menu to compile invalid objects. See the snapshots. |
Revision as of 13:46, 26 April 2015
Contents
- 1 Objective
- 2 About This Documentation
- 3 System Requirements
- 3.1 Software Installation Prerequisites
- 3.2 .NET Framework 4.0
- 3.3 SAP Crystal Reports Runtime Engine For .NET Framework 4 (32-bit)
- 3.4 Oracle Database 11g 64 bit release 2 (11.2.0.1.0)
- 3.5 Oracle Data Provider for .NET
- 3.6 Internet Information Services (IIS)
- 3.7 Post Installation Settings of Internet Information Services (IIS)
- 3.8 Recommended Browsers
- 3.9 Supporting Tools
- 3.10 PLSQL Developer
- 3.11 Product Installation
- 3.12 Copy Published folder
- 3.13 Upload Product to IIS
- 3.14 Add Website to IIS
- 3.15 Site Name
- 3.16 Application Pool
- 3.17 Physical Path
- 3.18 Binding Section
- 3.19 Add Application to IIS
- 3.20 Alias Name
- 3.21 Application Pool
- 3.22 Physical Path
- 3.23 Configuration folder settings
- 3.24 db.txt file in Configuration folder
- 3.25 Import Database Dump
- 3.26 Installation Steps
- 3.27 Case Sensitive Passwords
- 3.28 Create Table Space
- 3.29 Create User
- 3.30 Give Rights to SMARTHCM user
- 3.31 Create ORACLE_DUMP Directory
- 3.32 Give Rights to SMARTHCM user on ORACLE_DUMP Directory
- 3.33 Create TOM_FILE Directory
- 3.34 Give Rights to SMARTHCM user on TOM_FILE Directory
- 3.35 Copy SMARTHCM database dump into Directory
- 3.36 Import Database Dump
- 3.37 Compile Invalid Objects
Objective
This document describes all the installation process for SmartHCM version 1.0 starting from scratch. This document covers all aspect of its installation including all various softwares needed and how to deploy the application in your machine.
About This Documentation
This preface discusses:
- Understanding This Documentation
- Audience
- Comments and Suggestions
Understanding This Documentation
This documentation is designed to direct you through a basic SmartHCM version 1.0 installation. It is not a substitute for the database administration documentation provided by your relational database management system (RDBMS) vendor, the network administration documentation provided by your network vendor.
Audience
This documentation is written for the individuals responsible for installing and administering the SmartHCM environment. This documentation assumes that you have a basic understanding of the SmartHCM system. One of the most important components in the installation and maintenance of your SmartHCM system is your on-site expertise.
You should be familiar with your operating environment and RDBMS and have the necessary skills to support that environment.
Comments and Suggestions
Your comments are important to us. We encourage you to tell us what you like, or what you would like changed about our documentation, SofDigital Online Help, and other reference and training materials. Please send your suggestions to: support@sofdigital.com While we cannot guarantee to answer every email message, we will pay careful attention to your comments and suggestions. We are always improving our product communications for you.
System Requirements
The System Requirements for SmartHCM application are:
- Processor: Intel® Xeon® CPU E5430 @ 2.66GHz (2 processors)
- Operating System: Windows 2008 server r2 64 bit or Windows 7 64 bit.
- Installed Memory (RAM): 12GB
- System Type: 64-bit Operating System
Software Installation Prerequisites
Following softwares must be installed before installing SmartHCM applications:
.NET Framework 4.0
The Microsoft .NET Framework 4 redistributable package installs the .NET Framework run time and associated files that are required to run and develop applications to target the .NET Framework 4.File Name: dotNetFx40_Full_x86_x64.exe.Following link is available for installation guide of .NET Framework 4.0.File Name: dotNetFx40_Full_x86_x64.exe.Following link is available for installation guide of .NET Framework 4.0
link1
SAP Crystal Reports Runtime Engine For .NET Framework 4 (32-bit)
SAP Crystal Reports runtime engine for .NET Framework 4 32-bit is a software program developed by SAP.File Name: CRRuntime_32bit_13_0.msi. Following link is available to download SAP Crystal Reports Runtime Engine For .NET Framework 4 (32-bit)
Link2
Oracle Database 11g 64 bit release 2 (11.2.0.1.0)
Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system produced and marketed by Oracle Corporation.Following link is available to download and for installation guide of Oracle Database 11g 64 bit release 2 (11.2.0.1.0)
Download:
Link3
Installation Guide:
Link4
- Characterset should be “Unicode Standard UTF8 AL32UTF8”
Oracle Data Provider for .NET
Oracle Data Provider for .NET allows Oracle database to connect from .NET and makes using Oracle from .NET more flexible, faster, and more stable and take advantage of advanced Oracle database functionality.Following link is available to download Oracle Data Provider for .NET
Link5
Internet Information Services (IIS)
Internet Information Services (IIS) formerly called Internet Information Server is a web server application and set of feature extension modules created by Microsoft for use with Microsoft Windows. You don’t need to download anything for IIS because this feature is available in Microsoft windows server 2008 R2.You just need to Click Start -> All Programs -> Administrative Tools -> Server Manager -> Add Roles and Features and complete the installation.Following link is available for installation guide of Internet Information Services (IIS).
link6
Post Installation Settings of Internet Information Services (IIS)
(IIS Some of the common settings are required after installing Internet Information Services).
- Change .net framework version to 4.0 in IIS. Click on Application pool for SmartHCM like DefaultAppPool and go to Basic Settings and change .net framework version to v4.0 and Managed pipeline mode to Integrated.
Image1
- In the application pool section, Click on Application pool for SmartHCM like DefaultAppPool and go to Advance Settings and change .net framework version to v4.0 and change Enable 32-bit application property to true
Image2
Recommended Browsers
Recommended Browsers for SmartHCM application are “Google Chrome” or “Mozilla Firefox”.Following links are available to download “Google Chrome” or “Mozilla Firefox” respectively.
Link7
Link8
Supporting Tools
Following softwares are not mandatory for completing the installation but it will help you to set some configuration and database queries etc:
PLSQL Developer
PL/SQL Developer is an Integrated Development Environment that is specifically targeted at the development of stored program units for Oracle Databases.PL/SQL Developer will be used to connect to SmartHCM database and access its Tables, Stored Procedures etc.Following link is available to download PLSQL Developer.
Link8
Product Installation
Following are the step by step solution to install SmartHCM application.
Copy Published folder
First you need to copy the published folder to any path in the directories
Image3
Upload Product to IIS
Following are two ways to upload our product SmartHCM to IIS.
Add Website to IIS
Following are the step by step solution to create website in IIS.Refer Section 4.5.1 Post Installation Settings of Internet Information Services (IIS) to set the configuration of Application Pool.Start IIS and right click on “Sites” folder and click on “Add Web Site”.
image4
Site Name
Following window will appear when we click on “Add Web Site”. Provide any Site name for the application like SmartHCM. This site name will appear in the navigation panel of IIS.
Image5
Application Pool
When we add a new website, “Application Pool” will be created automatically. Although if we want to select already existing “Application Pool” then we can click on the Select… button and choose an existing application pool. Following window will appear when you click on Select… button.
Image6
Physical Path
Provide physical path of the copied published folder.Following window will appear when we click browse button in “Content Directory” panel in Add Website window.
image7
Binding Section
Following is the information provided in binding section. • Type : http • IP address : IP address of the web server • Port: Port for the application(already assigned port to another web site can’t be set here)
Add Application to IIS
Once you have created website in IIS you can add application to that website. Start IIS and right click on "Default Web Site" or any other website like SmartHCM and select "Add Application" option. To add stand alone website for SmartHCM see section 6.2.1 Add Website to IIS.
Image8
Alias Name
Following window will appear when you click on "Add Application". Provide any Alias name for the application like SmartHCMTest
Image9
Application Pool
When we add a new application, “Application Pool” will be used from the main web site automatically. Although if we want to select other existing “Application Pool” then we can click on the Select… button and choose an existing application pool. Following window will appear when you click on Select… button.
Image10
Physical Path
Provide physical path of the copied published folder. See the image from section 6.2.2.1 Alias Name for reference.
Configuration folder settings
Configuration folder is available in published folder. This folder is used for database connection settings and Company logos and icons.Following is the snapshot for SmartHCM configuration folder.
image11
db.txt file in Configuration folder
db.txt file in configuration folder is used to connect application with database.Following text should be entered in db.txt file. Snapshot is also available for reference.
Syntax2 1, Server Machine Name, Port number, Oracle Service Name, User, Password 2, Server Machine Name, Port number, Oracle Service Name, User, Password
Example2 1,SDS-SERVER,1521,ORA9I,SMARTHCM,PASSWORD 2,LOCALHOST,1521,ORA11G,SMARTHCM,PASSWORD
image12
Import Database Dump
Following are the installation steps to import database dump in the Oracle Database 11g.
Installation Steps
Following are the steps to follow when creating database for SmartHCM. First you need to start PLSQL Developer and login with System administrator user.
Case Sensitive Passwords
SEC_CASE_SENSITIVE_LOGON enables or disables password case sensitivity in the database. Run following command in PLSQL Developer. ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE
Create Table Space
Create TABLESPACE in oracle database for SmartHCM by using following command in “PL/SQL Developer” CREATE TABLESPACE SMARTHCM DATAFILE 'C:\app\administrator\oradata\ora11g\SMARTHCM.dbf' SIZE 1024M AUTOEXTEND ON NEXT 1024M MAXSIZE 10240M;
Create User
Create user “SMARTHCM” by using following command in PLSQL Developer CREATE USER SMARTHCM IDENTIFIED BY SMARTHCM DEFAULT TABLESPACE SMARTHCM;
Give Rights to SMARTHCM user
Give rights to SMARTHCM database user by using following command in PLSQL Developer.GRANT CONNECT, RESOURCE TO SMARTHCM;
Create ORACLE_DUMP Directory
Create ORACLE_DUMP Directory in Oracle database user by using following command in PLSQL Developer.CREATE DIRECTORY ORACLE_DUMP A'C:\ORACLE_DUMP';
Give Rights to SMARTHCM user on ORACLE_DUMP Directory
Give rights to SMARTHCM user on ORACLE_DUMP directory by using following command in PLSQL Developer.GRANT READ, WRITE ON DIRECTORY ORACLE_DUMP to SMARTHCM;
Create TOM_FILE Directory
Create TOM_FILE Directory in Oracle database user by using following command in PLSQL Developer.CREATE DIRECTORY TOM_FILE AS '… SMARTHCM\CONFIGURATION';Note: define “CONFIGURATION” folder path exists in SmartHCM project folder.
Give Rights to SMARTHCM user on TOM_FILE Directory
Give rights to SMARTHCM user on TOM_FILE directory by using following command in PLSQL Developer.GRANT READ, WRITE ON DIRECTORY TOM_FILE to SMARTHCM;
Copy SMARTHCM database dump into Directory
Copy SMARTHCM database dump into 'C:\ORACLE_DUMP'
Import Database Dump
Following steps should be followed for importing database dump. Run Command Prompt with “Run as Administrator”. Import SMARTHCM database dump by using following command in Command Prompt IMPDP SYSTEM/PASSWORD REMAP_SCHEMA=SMARTHCM:SMARTHCM DIRECTORY=ORACLE_DUMP DUMPFILE=SMARTHCM.DMP LOGFILE=SMARTHCM_EXPORT.LOG If this command ask for user name while you have provided correct username and password and you get following error message in importing dump “ORA-28547: connection to server failed, probable Net8 admin error” “UDI-28547: operation generated oracle error”Then check the sqlnet.ora (exists in same folder in which tnsnames.ora exists). And change the following entry and try.Original entry ------ SQLNET.AUTHENTICATION_SERVICES = (NTS)entry ------ SQLNET.AUTHENTICATION_SERVICES = (NONE)And then run IMPDP command again and then Connect with SMARTHCM user in PLSQL Developer.
Compile Invalid Objects
Compile Invalid Objects is the option available in PLSQL Developer. You just need to start PLSQL Developer and use the “Compile Invalid Objects” in the tools menu to compile invalid objects. See the snapshots.