appsutil.zip目录生成不全

简介: 参考链接:https://community.oracle.com/thread/2205317?start=0&tstart=0 I'm cloning my production server (R12: 12.
参考链接:https://community.oracle.com/thread/2205317?start=0&tstart=0
I'm cloning my production server (R12: 12.0.4, my os is RHEL 5.3 x86) by using doc ID 406982.1, when applying latest autoconfig patch 9386653 and latest latest Rapid clone patches 9171651:R12.OAM.A and 9833058:R12.OAM.A 
when creating appsutil.zip file through admkappsutil.pl and uncompressing it, it misses some folders. (i only get bin html java media perl sql and template))
after following forum notes doc ID 377495.1(doc ID 820077.1 is not available) utility:  perl adbldxml appsuser=<APPSuser> appspasswd=<APPSpwd> failed due to lack of jre and install folders.I copied jre folder from my backed up former appsutil and utility completed successful with context file and log folderin appsutil folder.
after running adconfig.sh utility folders out, install and scripts added.
my problem is; how can i get other folders i.e clone, driver, outbound and temp
note: clone is needed in running post clone. i.e adcfgclone.pl
Thanks

 
Click to add to Favorites How To Recreate the <RDBMS ORACLE_HOME>/appsutil/scripts/<CONTEXT_NAME> directory (Doc ID 377495.1) To BottomTo Bottom

Modified:22-Jan-2013Type:HOWTO
Rate this document Email link to this document Open document in new window Printable Page
In this Document
  Goal
  Fix
  References

APPLIES TO: Oracle Applications Manager - Version 11.5.7 to 11.5.10.2 [Release 11.5 to 11.5.10] Information in this document applies to any platform. Checked for relevance on 22-JAN-2013 GOAL The $ORACLE_HOME/appsutil directory or subdirectories of appsutil are missing. How to recreate this directory with its subdirectories and contents? How can I run AutoConfig on Database Tier without this directory, since adautocfg.sh exists in <RDBMS ORACLE_HOME>/appsutil/scripts/<CONTEXT_NAME>?  FIX To implement the solution, please update the RDBMS ORACLE_HOME file system with AutoConfig files from the AppsTier by performing the following steps exactly: 1. On the Application Tier (as the APPLMGR user): 2. Log in to the APPL_TOP environment and source the environment file. 3. Create appsutil.zip file: "perl <AD_TOP>/bin/admkappsutil.pl". (This will create appsutil.zip in $APPL_TOP/admin/out/appsutil.zip) 4. Copy or FTP the appsutil.zip file to the RDBMS $ORACLE_HOME. 5. On the Database Tier (as the ORACLE user): $ cd $ORACLE_HOME $ unzip -o appsutil.zip 6. Generate the Database Context File: Context File Creation on UNIX  $ cd $ORACLE_HOME $ . <SID>_<HOST>.env $ cd $ORACLE_HOME/appsutil/bin $ perl adbldxml.pl tier=db appsuser=<APPSuser> appspasswd=<APPSpwd> $ cd $ORACLE_HOME/appsutil/bin $ adconfig.sh contextfile=<CONTEXT> appspass=<APPSpwd>   After running the these steps, all files and directories for Autoconfig are now present, including "$ORACLE_HOME/appsutil/bin/adautocfg.sh" and the "$ORACLE_HOME/appsutil/scripts" directory. REFERENCES


相关文章
|
5月前
|
Java
Java实现zip文件压缩:单个文件、文件夹以及文件和文件夹的压缩
Java实现zip文件压缩:单个文件、文件夹以及文件和文件夹的压缩
|
10月前
|
测试技术
【解决方案 十四】文件夹压缩及解压、递归删除文件夹
【解决方案 十四】文件夹压缩及解压、递归删除文件夹
90 0
|
Java 程序员
批量压缩16万个文件夹为压缩包(.zip格式)
🍅程序员小王的博客:程序员小王的博客 🍅 欢迎点赞 👍 收藏 ⭐留言 📝 🍅 如有编辑错误联系作者,如果有比较好的文章欢迎分享给我,我会取其精华去其糟粕 🍅java自学的学习路线:java自学的学习路线
199 0
批量压缩16万个文件夹为压缩包(.zip格式)
|
Java
不解压修改压缩文件内容
在java中,可以不解压压缩包就修改压缩包中文件的内容。
347 0
不解压修改压缩文件内容
|
Linux
zip和unzip区分
zip和unzip区分
156 0
|
Python
python-批量把文件和文件夹同时压缩成ZIP文件
1.通过某种方式获得一个文件(文件夹)列表作为一个list(例如wxpython的wx.FileDialog方法,在下面的代码中我们跳过文件夹列表的获取方法)。 2.选择一个压缩文件的输出目录和压缩文件的输出名字(下面代码中选择输出默认路径为程序根目录) 3.把文件list里的文件,先统一放在一个临时文件夹里,然后把该临时文件夹压缩成ZIP文件,最后删掉临时文件夹
258 0
|
Java 缓存 存储
java下载多文件夹的文件最终打zip包返回给用户
业务需求,需要做一个导出用户单据图片的功能,需求为:按单据单号分文件夹分别存储单据的图片!最终导出zip包给用户。通过网上各种找代码,写出一个小demo,供各位看官学习! // 假装是一个单据集合 List<String> imgUrls = new ArrayList<>(); imgUrls.
4354 0
|
网络安全
tar排除文件和目录的用法
tar czvf /tmp/bak.tar.gz \ --exclude 'download/*' \ --exclude .ssh \ --exclude .bashrc \ . 使用--exclude可以排除文件和目录。
3921 0
|
Java Shell 数据安全/隐私保护
Apktool回编译APK变大原因--关于apktool.yml的可压缩文件配置
1.背景 为了实现apk字节码加密技术,我在CI上通过插入了脚本重新打包任务。然而,这改动导致apktool回编译apk包变大,文件经调研和分析发现:在apktool 2.0.3之后为了快速解压和打包,加入了反编译文件回编译不压缩机制。
4947 0