Oracle Grid Control 10.2.0.5 for Linux 安装和配置指南
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-19
一、概述:
Grid Control的组件包括Management Agent, Management Service (OMS), Management Repository. 系统架构如下: 10g oem是一个基于web的管理架构,这和10g之前的笨重的java客户端有很大的区别.我们可以从2方面来研究它的架构,一个是管理的架构,一个是后台数据采集的架构. 1) 10g oem管理的架构: 管理者(或者使用者)不需要再自己的机器上安装任何软件,只需要一个浏览器就可以搞定所有的工作.使用者只需要在浏览器里输入如下的地址,就可以进入oem,进行数据库管理. http://oem_hostname:4889/em 我们可以看到 ![]() ![]() net.ipv4.ip_local_port_range = 1024 65000 net.core.rmem_default = 4194304 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 262144 net.ipv4.tcp_wmem = 262144 262144 262144 net.ipv4.tcp_rmem = 4194304 4194304 4194304 设置可插入认证模块 (PAM) 限制,编辑/etc/pam.d/login文件,加入以下内容: session required pam_limits.so 在全局 profile 文件中设置用户限制,编辑/etc/profile,加入以下内容: if [ $USER = "oracle" ]; then if [ $SHELL = "/bin/ksh" ]; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fi fi 为 Oracle 用户设置 Shell 限制,向/etc/security/limits.conf文件里加入以下内容: oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 安装以下软件包: glibc make binutils gcc libaio glibgc-common setarch pdksh openmotif21 sysstat gome-libs libstdc* compat-libstdc compat-db control-center xscreensaver 以root用户创建/u01目录: mkdir /u01;chown –R oracle:oinstall /u01;chmod 775 /u01 作为 Oracle 登录,编辑oracle用户的.bashrc文件中设置以下参数: export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=$ORACLE_BASE/OracleHomes/db10g export OMS_HOME= |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Oracle Grid Control 10.2.0.5 for Linux 安装和配置指南的所有评论