Posts

Showing posts from January, 2018

CONTEXT FILE in Oracle Apps

Context file contains all the global configuration settings for E- Business Suite. The Context file is in the XML format. The name of the Context file will be $CONTEXT_NAME.xml. Context file location: $INST_TOP/appl/admin/<context_host>.xml Frequently  using context file parameters: grep login $CONTEXT_FILE grep port $CONTEXT_FILE grep port $CONTEXT_FILE | grep db grep s_webentryhost $CONTEXT_FILE  grep s_webentrydomain $CONTEXT_FILE  grep s_active_webport $CONTEXT_FILE  grep s_webentryurlprotocol $CONTEXT_FILE  grep s_login_page $CONTEXT_FILE  grep s_external_url $CONTEXT_FILE grep s_endUserMonitoringURL $CONTEXT_FILE Contex File Frequently Asked Questions(FAQ) What is the naming convention for the application tier context file? The default name for the context file is <CONTEXT_NAME>.xml. How can I make changes to a context file? In Oracle Applications Manager (OAM), navigate to Site Map. Click on AutoConfig. Click on Edit Parameter

Oracle Apps Components versions

How to find Apps Version SQL> select release_name from apps.fnd_product_groups; RELEASE_NAME -------------------------------------------------- 12.2.3 Java version [testora@vtebz1 ~]$ java -version java version "1.7.0_85" Java(TM) SE Runtime Environment (build 1.7.0_85-b15) Java HotSpot(TM) Server VM (build 24.85-b06, mixed mode) Apache version: /u01/oracle/DEV/apps/fs1/EBSapps/10.1.2/bin [testora@vtebz1 bin]$ httpd –version Server version: Apache/2.2.15 (Unix) Server built:   May 21 2011 00:57:51 Plugin version [testora@vtebz1 ~]$ grep plugin $CONTEXT_FILE                    <!-- JDK plugins -->          <sun_plugin_ver oa_var="s_sun_plugin_ver">1.6.0_27</sun_plugin_ver>          <sun_plugin_type oa_var="s_sun_plugin_type">jdk</sun_plugin_type> Report builder version [testora@vtebz1 ~] $ORACLE_HOME/bin/rwrun | grep Release Report Builder: Release 10.1.

Linux Mount and Umount file system in linux

Image
Mount The mount command mounts a storage device or filesystem, making it accessible and attaching it to an existing directory structure. Step1 :Check all partitions in linux server fdisk –l This command list all existing disk partition on your system. The ‘-l‘ argument stand for (listing all partitions) is used with fdisk command to view all available partitions on Linux. The partitions are displayed by their device’s names. For example: /dev/sda, /dev/sdb or /dev/sdc. Step 2: check disk space available Df  -hT df displays the amount of disk space available on the file system Step 3: Umount new disk space Umount /dev/sde1  Step 4: create new directory [root@devserver ~]# mkdir /PRODHD Step 5: Mount the new directory [root@devserver ~]# mount /dev/sde1 /PRODHD Step6: check new mount point df –hT Umount : The umount command "umounts" a mounted filesystem, informi