Unifier 16.0.2 /Unifier 16R2 Installation
Create Unifier Domain
Click Start > Oracle >Configuration Wizard

Replace “base_domain” with “unifier” and click next


Enter name and password > Next

Select Production > Next

Select Administration Server > Next

Leave Server Name as “AdminServer” Change Listen Port if it need to be changed.

Once 100% then click Next

This will start Weblogic admin server and can be accessed using url http://192.168.2.7:4201/console from local browser.

You need to download Unifier application from https://edelivery.oracle.com
Sign-in into portal and search for Unifier, select your system platform. Software details will appear in Download Queue window, click on Continue.
Accept the license and download all zip files.
Extract the V77738-01.zip file. Extracted zip file will contain unifier_16.2.0.0.zip and BASIC_V16.2.0.0.zip, now extract unifier_16.2.0.0.zip file. This is your Unifier application file. You will find these files inside extracted unifier_16.2.0.0 folder.
Connect with SQL DEVELOPER or Toad for Oracle and run following:
create user unifier identified by Password;
grant connect, resource, create table, create view to unifier ;
commit;
grant unlimited tablespace to unifier;
commit;

Open Weblogic folder. Right click and edit setenv.bat file. Following parameter needs to be set in setenv.bat file
DOMAIN_HOME

DOMAIN_HOME is the Weblogic’ s domain on which you are deploying Unifier application.

Save the file
Perform Following steps before kickstarting installation
- Create temp folder in c:\
- Rename unifier_16.0.0.2 to unfier
- Create folder named “projectdata” in unifier folder


Now run configure.bat file present in same folder. At General tab, select Server Type as Staging if you are installing application for Dev and QA environment, else select Production. Server Internal URL should contain IP address of server where Unifier will be deployed (Weblogic server ip address). Port number is your Admin/managed server port in our case its 4201 as we are deploying on admin server only. Rest of the settings are self-explanatory.


Now click on Repository Tab. Settings at this tab tells Unifier where to store Business Process’s attachment, published/unpublished documents uploaded at Document Manager, Report files etc. You should create folder like below and map these to each directory using browse button.

At Database tab, provide details of Unifier database user (refer first post where we have created Unifier database user)

Click on test connection to validate details.
At Email tab provide details of email exchange server which you will get from your email support team, Unifier will use these details for sending email notification to user for task approval, record submission etc. Also it will send email notification to a particular email id about database connectivity error (email which is defined for system error notification). It is good to use single email group id for System Notification E-mail Address, System Error Notification E-Mail Address and License Notification E-mail Address.
Email login URL should be same as server internal URL provided earlier at General tab, just remove ‘bluedoor’ from URL.
For Inbound email account use a generic email id, normal application user will get task related notification from this email account.
Click on Test Inbound E-mail Account to validate the details.

Report Tab


At Markup Server tab provide details for Autovue server’s host name and port.

At Geo Map provide following details for integrating unifier with Oracle map server
Map Server URL: https://elocation.oracle.com
Map Tile:elocation.oracle.com
Map Geocoder URL: https://elocation.oracle.com

At Authentication tab provide details for authentication provider, in our case we are keeping it as native.

After filling all the details go to File > Save. This will save all settings.
Then click on File > Create EAR. It will take approximately 5-10 minutes for EAR file to be created.
You can see the EAR file in same folder as of configure.bat

Now run the deploy.bat file. This will deploy our EAR file in Weblogic. This operation calls setenv.bat for getting Weblogic details, so if there is any error with file path this operation will fail, also make sure that Weblogic’s admin console is up and running.

Provide Weblogic user name and password.

Open Unifier
http://192.168.2.7:4201/unifier

Login as Administrator/Administrator


Installing Application


Debugging:
ORA-01000: maximum open cursors exceeded
SELECT MAX(A.VALUE) AS HIGHEST_OPEN_CUR, P.VALUE AS MAX_OPEN_CUR FROM V$SES
STAT A, V$STATNAME B, V$PARAMETER P WHERE A.STATISTIC# = B.STATISTIC# AND B.NAME
= ‘OPENED CURSORS CURRENT’ AND P.NAME= ‘OPEN_CURSORS’ GROUP BY P.VALUE;
Output of this query will show the current Cursor limit, if it is less increase it by running following query
ALTER SYSTEM SET OPEN_CURSORS=1337 SID=’*’ SCOPE=BOTH;
Stop Weblogic by running stopWeblogic.cmd file present at
<weblogic installation directory>\user_projects\domains\<domain name>\bin
Drop unifier database user by running below query
DROP USER unifier CASCADE;
Commit the changes.
Create user again and grant necessary privileges.
Start Weblogic server by running startWeblogic.cmd file and continue installation of Unifier.
No Comments