Posts

Showing posts from August, 2018

exec () : 0509-036 Cannot load program sqlplus because of the following errors :

Image
Recently in our environment we've upgraded our OS from AIX 6.1 to AIX 7.1. OS up-gradation activity completed  successfully. We tried to bring our DB and APPS services online and faced this new issue while starting the DB listener. Below is the issue and the solution for the same. The problem is due to I/O Communication ports either not enabled or not installed. To check whether IOCP is installed run the following command.   #lslpp -l bos.iocp.rte  As shown above IOCP is installed and available in AIX. To check whether IOCP is enabled or not, run the following UNIX command # lsdev -Cc iocp It showed "Defined", which means not enabled. The output should show "Available" instead of "Defined". To change the status from Defined to Available, use the UNIX Smitty commad as follows #smitty iocp Select Change / Show characteristics of I/O Completion Ports Change configured state at system, restart to change for...

Weblogic Server 12.2.1.3 Installation

Image
In this post we'll see the Installation and configuration of Weblogic Server 12.2.1.3 version in a detailed step by step process. Also here I've configured WLS for ADF. Below are the required setup files. Installing JDK: Untar the jdk file by using the below command tar -zxvf <jdk file name> Installing Weblogic Server : This 12.2. version of Weblogic Server is bit different in the Installation process in compared with the earlier releases. Here we need to run the Infrastructure installer. Let us see the steps in detail. Now the Installation of the Infrastructure is completed. Next we need to create the required schema's, repository and configure the Base Domain to start the WLS. Schema Creation: To create schema we need to create a user at DB level and assign him DBA privileges. Follow the below steps to accomplish the above said step. create user as below sqlplus '/as sysdba' ...