博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EM13C添加agent记录两个报错
阅读量:5326 次
发布时间:2019-06-14

本文共 2331 字,大约阅读时间需要 7 分钟。

错误一:

ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #2
解决:

Solution

In order to force back Utopia as the default Java font:
1. Create a file named 'local.conf' in '/etc/fonts/' with contents as follows:
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
  <alias>
    <family>serif</family>
    <prefer><family>Utopia</family></prefer>
  </alias>
  <alias>
    <family>sans-serif</family>
    <prefer><family>Utopia</family></prefer>
  </alias>
  <alias>
    <family>monospace</family>
    <prefer><family>Utopia</family></prefer>
  </alias>
  <alias>
    <family>dialog</family>
    <prefer><family>Utopia</family></prefer>
  </alias>
  <alias>
    <family>dialoginput</family>
    <prefer><family>Utopia</family></prefer>
  </alias>
</fontconfig>
2. Reboot the machine.
Now the EM Navigation should work without any ADF errors.
错误二:
ORA-20206: Target does not exist
解决:
Solution
In case either of the queries provided above report zero count, then the associated plugins will need to be re-deployed
Steps:
1) Undeploy Oracle Virtualization (oracle.sysman.vt) plugin on all agents from EM console or using EMCLI utility.
2) Undeploy Oracle Cloud Application (oracle.sysman.ssa) plugin on OMS from EM console or using EMCLI utility, because this plugin on Oracle Virtualization plugin.
3) Undeploy Oracle Virtualization (oracle.sysman.vt) plugin on OMS from EM console or using EMCLI utility.
4) Deploy Oracle Virtualization (oracle.sysman.vt) plugin OMS from EM console or using EMCLI utility.
5) Deploy Oracle Cloud Application (oracle.sysman.ssa) plugin on OMS from EM console or using EMCLI utility.
6) Now connect to Repository database and execute the below as SYSMAN user, both the below queries should report the count value as 1.
SQL> select count(*) from mgmt_targets where target_type='oracle_vm_cloud';
SQL> select count(*) from mgmt_target_types where target_type='oracle_vm_cloud';
7) Now deploy Oracle Virtualization (VT) plugin on respective agent and register OVM manager using that agent
For information on the undeploying or deploying of plugins, please refer to the note mentioned below.
EM 13c, 12c: Enterprise Manager Cloud Control Plug-ins Frequently Asked Questions (Doc ID 1394908.1)

转载于:https://www.cnblogs.com/oracle-ziyuhou/p/11177599.html

你可能感兴趣的文章
fat32转ntfs ,Win7系统提示对于目标文件系统文件过大解决教程
查看>>
Awesome Adb——一份超全超详细的 ADB 用法大全
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
Android 将drawable下的图片转换成bitmap、Drawable
查看>>
介绍Win7 win8 上Java环境的配置
查看>>
Linux设置环境变量的方法
查看>>
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
epoll使用具体解释(精髓)
查看>>
AndroidArchitecture
查看>>
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Centos7.2正常启动关闭CDH5.16.1
查看>>