介紹Oracle ebs R12中的$APPLCSF和$APPLLOG目錄作用
I would like to share some important things here. You all might know these, but Oracle Apps newbie will get benefited. As we know that, when ever any Concurrent Request is submitted, log and output files are stored in $APPLCSF/$APPLOG and $APPLCSF/$APPLOUT directories respectively. Apart from *.req files, some other files are also getting stored in $APPLCSF/$APPLOG directory. I would like to give brief description about these files. These are the following files which are getting stored in that directory.
(a) l<Request ID>.req
This is the Concurrent Request log file. When any concurrent request is submitted, request log file is created in this directory with file name as l<Request ID>.req
(b) Events####.log
adstrtal.sh script writes the log information in to this file, when ever there is any problem with starting of any Application Service.
(c) Error####.log
This file contains the Java Exception Errors.
(d) #####.log
This file keeps the information of starting of Apache Listener.
(e) f60webmx_dump_<PID>
This file is created when ever any Client Forms Session ends abruptly. When user forms session got crash or terminated abruptly that diagnostics information is written into this dump file. If you want to get rid out of this dump files. Please execute the following stepsSet the FORMS60_CATCHTERM = 0 in Registry (NT) or Environment Variable (Unix/Linux) and bounce the Forms Services
(f) em_<PID>.rti
This file contains Client run time process information. These files are used by Oracle Application Manager and Enterprise Manager for Forms Monitoring Services and are generated by Forms runtime processes. For each f60webmx session, there is one .rti file is created. These files are written to the directory set by parameter $FORMS60_RTI_DIR. By default these are written into $APPLCSF/$APPLLOG directory. RTI files should be automatically cleaned up when user logs out of the forms session, in case user logs out of the forms sessions abruptly. Then these files are not cleaned up properly. So then you may need to clear these files manually. We can delete the files, but we should not delete these files when users are active
em –> enterprise manager
<PID> –> Process ID of Client
rti –< Run time information In some cases,
we need to delete the FNDCPPUR program log files and output files manually to free up the disk space. Here I am giving UNIX commands to find out and deleting the old files. If your FNDCPPUR program is scheduled to run daily and given AGE Mode value as 7, purge Program has to delete the files which are older than 7 days. But if program did not delete the files, use this command to find out those files.
Find the Concurrent Request Log and Output files which are not deleted
find $APPLCSF/$APPLLOG -mtime +7 -name “*.req”
find $APPLCSF/$APPLOUT -mtime +7 -name “*.out
Delete the Concurrent Request log and output files which are older than 7 Days
find $APPLCSF/$APPLLOG -mtime +7 -name “*.req” -exec rm “{}” “;”
find $APPLCSF/$APPLOUT -mtime +7 -name “*.out” -exec rm “{}” “;”
Delete other files in $APPLCSF/$APPLLOG directory
find $APPLCSF/$APPLLOG -mtime +7 -name “*.log” -exec rm “{}” “;”
find $APPLCSF/$APPLLOG -mtime +7 -name “*.mgr” -exec rm “{}” “;”
find $APPLCSF/$APPLLOG -mtime +7 -name “f60webmx*” -exec rm “{}” “;”
find $APPLCSF/$APPLLOG -mtime +7 -name “*.rti” -exec rm “{}” “;”
Reference:
(1) What Are .RTI and .FLI Files? Doc ID: Note: 470850.1
(2) Oracle Forms in Applications FAQ Doc ID: Note: 177610.1
Did you get a chance to download 6 Docs Every Apps DBA Must Read for EBS R12.2 ? If not, then get it now by clicking on link below.
文章轉自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28211342/viewspace-2135141/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle Directory(目錄)介紹Oracle
- Oracle EBS R12 "OutOfMemoryError"OracleError
- 談談Oracle EBS R12Oracle
- MySQL 8.0 目錄介紹MySql
- 10g Oracle檔案及目錄介紹Oracle
- oracle EBS R12 FORM 編譯OracleORM編譯
- Android 程式目錄介紹Android
- bashshell目錄介紹 及其使用
- Android SDK目錄結構和工具介紹Android
- Linux下的目錄介紹(轉)Linux
- Linux下的目錄介紹(zt)Linux
- Oracle EBS R12 Packaging File 和MakeCD 終於完成..Oracle
- Oracle EBS R12 常用命令Oracle
- EBS Services in Oracle Apps R12OracleAPP
- Oracle EBS R12 clone文件已整理Oracle
- Linux各級目錄介紹Linux
- Oracle資料庫管理指令碼介紹 (RDBMS目錄下)Oracle資料庫指令碼
- linux中許可權對檔案和目錄的作用Linux
- EBS Services in Oracle Apps R12 - NoteOracleAPP
- Oracle EBS R12系統管理員文件Oracle
- Oracle EBS R12 - 怎樣更改SYSADMIN的passwordOracle
- [java基礎]之JDK目錄介紹JavaJDK
- Android SDK目錄結構介紹Android
- [轉帖]linux的tmpfs和/dev/shm目錄的詳細介紹Linuxdev
- Linux下的目錄介紹[全精](轉)Linux
- EBS R12中設定JDK GC LOGJDKGC
- Oracle EBS R12 高效能架構和高階架構Oracle架構
- javascript作用域和作用域鏈簡單介紹JavaScript
- Android中讀取assets目錄下的檔案詳細介紹Android
- Oracle EBS R12 install patch文件已整理Oracle
- oracle ebs r12 use loadrunner load dataOracle
- 詳細介紹php和apache的關係和作用PHPApache
- Linux具體目錄結構介紹!Linux
- 【微服務目錄】.NET Core 微服務介紹微服務
- 清除ebs12目錄資料
- 中移鏈合約常用開發介紹(四)工程樹目錄
- Oracle EBS R12 4 days Techinical Training (EBS DBA/OAF) 結束OracleAI
- Oracle EBS R12 DBA 培訓圓滿結束Oracle