Grid Control 10.2 and Port 1521

I'm installing Grid Control on a HPUX box that has three Oracle Financials environments, and four non-financials databases. During the install, I'm asked to run a script as root. On that same screen, it says "in order to successfully install the product, any applications other than the 10g database listener running on port 1521 must be stopped". I have a 9i DB running on 1521 - for our PROD Financials. I stopped the install of the grid, not wanting to mess anything up.
My questions - is there a way to specify a different port for the Grid control? Is anybody else in the same situation as me here? What do you guru's recommend I do? I'm thinking I should install the grid control on a separate box.
Thanks...cjj

This is feature is not there in 10.2
This situation can be avoid by chagning the 9i port to 1522
or install the GC on diffrent box

Similar Messages

  • List box in alv grid control  through slis and reuse_alv grid_display metho

    hello,
    i want to display list box in one column of alv by slis method.can u suggest me how to do it?
    neon

    Hi,
    plz check below code :
    TYPE-POOLS : slis.
    *data declarations for ALV container,ALV grid, Fieldcatalogues & layout
    DATA: g_grid  TYPE REF TO cl_gui_alv_grid,
          g_custom_container TYPE REF TO cl_gui_custom_container,
          gt_fieldcat TYPE lvc_t_fcat,
          gs_layout TYPE lvc_s_layo.
    *INTERNAL TABLE AND WA DECLARATIONS FOR t517 A table
    DATA: gt_outtab TYPE STANDARD TABLE OF t517a INITIAL SIZE 0,
          wa_outtab TYPE t517a.
    *initialisation event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Call to ALV
      CALL SCREEN 600.
    *On this statement double click  it takes you to the screen painter SE51.
    *Create a Custom container and name it CCONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    *Now a normal screen with number 600 is created which holds the ALV grid.
    PBO of the actual screen , Here we can give a title and customized menus
    Here we also call the subroutine for ALV output.
          MODULE PBO OUTPUT                                             *
    MODULE pbo OUTPUT.
    set pf-status 'xxx'.
    set titlebar 'MAIN100'.
    Subroutine to display the output in alv
      PERFORM alv_output.
    ENDMODULE.                    "pbo OUTPUT
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes and
    based on the user command we can do the coding.
          MODULE PAI INPUT                                              *
    MODULE pai INPUT.
    ENDMODULE.                    "pai INPUT
    *&      Form  BUILD_FIELDCAT
    FORM build_fieldcat.
      DATA ls_fcat TYPE lvc_s_fcat.
    *Build the field catalogue
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name = 'T517A'
        CHANGING
          ct_fieldcat      = gt_fieldcat.
    To assign dropdown in the fieldcataogue
      LOOP AT gt_fieldcat INTO ls_fcat.
        CASE ls_fcat-fieldname.
          WHEN 'SLART'.
    *drdn-hndl = '1' is the first list box
            ls_fcat-drdn_hndl = '1'.
            ls_fcat-outputlen = 15.
            MODIFY gt_fieldcat FROM ls_fcat.
    *drdn-hndl = '2' is the second list box
          WHEN 'ABART'.
            ls_fcat-drdn_hndl = '2'.
            ls_fcat-outputlen = 15.
            MODIFY gt_fieldcat FROM ls_fcat.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    "build_fieldcat
    *&      Form  ALV_OUTPUT
    FORM alv_output .
    *Create object for container
      CREATE OBJECT g_custom_container
             EXPORTING container_name = 'CCONT'.
    *create object for grid
      CREATE OBJECT g_grid
             EXPORTING i_parent = g_custom_container.
    Build fieldcat and set column
    *Assign a handle for the dropdown listbox.
      PERFORM build_fieldcat.
    *Build layout
      PERFORM build_layout.
    Define a drop down table.
      PERFORM dropdown_table.
    *fetch values from the T517A table
      SELECT * FROM t517a INTO TABLE gt_outtab.
    *Display ALV output
      CALL METHOD g_grid->set_table_for_first_display
        EXPORTING
          is_layout       = gs_layout
        CHANGING
          it_fieldcatalog = gt_fieldcat
          it_outtab       = gt_outtab.
    ENDFORM.                               "ALV_OUTPUT
    *&      Form  dropdown_table
          text
    -->  p1        text
    <--  p2        text
    FORM dropdown_table.
    *Declarations for drop down lists in ALV.
      DATA: lt_dropdown TYPE lvc_t_drop,
            ls_dropdown TYPE lvc_s_drop.
    First SLART listbox (handle '1').
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '01 Primary school'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '02 Lower Secondary'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '03 Upper Secondary'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '04 Professional School'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '05 College'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '06 University'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '09 Other Establishment'.
      APPEND ls_dropdown TO lt_dropdown.
    Second ABART listbox (handle '2').
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '10 Primary School certificate'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '20 Lower secondary/Junior high'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '30 High school diploma(B-levels)'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '31 Vocational'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '32 Matriculation'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '40 Specialist vocational certificate'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '50 College degree Level1'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '51 College degree Level2'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '52 Masters degree'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '60 Univ Degree level1'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '61 Bachelors degree'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '62 Masters degree'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '63 Licenciate'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '64 Doctors Degree Ph.D'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '89 None'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '90 Unknown'.
      APPEND ls_dropdown TO lt_dropdown.
    *method to display the dropdown in ALV
      CALL METHOD g_grid->set_drop_down_table
        EXPORTING
          it_drop_down = lt_dropdown.
    ENDFORM.                               " dropdown_table
    *&      Form  build_layout
          text
    *layout for ALV output
    FORM build_layout .
      gs_layout-cwidth_opt = 'X'.
      gs_layout-grid_title = 'ALV DROPDOWN LISTS'.
      gs_layout-no_toolbar = 'X'.
    ENDFORM.                    " build_layout
    reference : wiki.

  • Oracle 10.2.0.3 Grid Control and ReNew the IP Address

    Hello
    I have installed Grid Control and added few hosts and was working fine. But I have changed the IP address of Grid Server host. I mean I have been given new IP address for Grid Control host.
    I have changes the ip address in /etc/hosts and reboot the server. But Grid Control Console page is not coming up on IE. Help Please...
    Regards
    Sindhi

    It has been sorted out. As Grid Control use FQDN and it do not use IP address. Just I changes the IP address and FQDN was same. I was forgot to change IP address from Terminal Server where I was accessing Grid Control Console using IE. Thanks for you both to response my query.

  • 10gR2 RAC, more 10gR2 RAC, DataGuard and Grid Control on Windows 2003

    Hello all,
    I have never used GC to implement DG between two different RAC installations, so if i could just a few questions to the experts.
    1) It seems that the Grid Control GUI of the DG broker cannot created a RAC instance for physical/logical standby. You have to use the third option from the wizzard, the one about the previously created standby database.
    Can i hope that as long as i create the RAC standby i will still be able to work with GC?
    2) Currently, when i try to create a physical standby from my primary RAC instance, i get a Java exception when i try to perform the backup and message like "Index: 3, Size: 3". doesnt really help... Does anybody know what this means?
    3) Once i have the whole solution implemented, will the two clusters require the presence of the Grid Control machine to "talk to each other"? Ie what will happen if i shutdown the Grid Control machine?
    GC: Grid Control
    DG: Data Guard
    RAC: Real Application Clusters

    well i skipped Grid Control all together and went for an all command-line approach and ... it works! Maybe i shall setup GC now to see graphically what i did, but i found more confidence working the traditional way, both for creating the standby backup with RMAN and starting up the initial standby instance, registering it with the clustered ASM and adding more stby instances with srvctl as i needed.
    I found a great ally in all the documents listed in the MAA section of oracle.com
    and i could only suggest them (at least until 10.2 version of GC comes out)
    http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm

  • Oracle application related target not show in grid control 11g (11.1.0)

    hi all
    i insall grid contrlol on r12(12.1.1) and it work very fine detect all target r12 database plus oracle application server all target...
    but my problem is, when i connect it to another system r12(12.1.3) by agent silent installation...it detect oracle r12 database but not detect any target related to oracle application server such as oracle ebusiness suit,http server or any target related to application server...
    os linux 5.4.
    acutally i want to configure plug in 4.0
    i follow metalink doc 1224313.1( i apply all the patch that are mentained in this document..)
    plz plz plz help me or refer me any doc any blog or any thig by which i can detect oracle application target in grid control..
    grid control 11g(11.1.0)
    os - linux 5.4
    r12 - 12.1.3
    thanks & regards
    pritesh ranjan

    ya i have installed all the patch that maintain in the plug-in 4.0 doc (1224313.1)
    below are the details of the log file and agent of the host server and remote server............
    This is the log file details of my remote machine which application server is not detected:-
    [orainst1@erpdemo log]$ cat emagent.log
    2013-02-21 11:46:56,936 Thread-3043985088 Starting Agent 11.1.0.1.0 from /data/PRODINST/agent111g/agent11g (00701)
    2013-02-21 11:47:33,240 Thread-3043985088 EMAgent started successfully (00702)
    [orainst1@erpdemo log]$
    r::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    storage_report_metrics.pl: Thu Feb 21 11:48:04 2013: WARN: STORAGE_REPORTS:error::snmhsutl.c:executable nmhs should have root suid enabled
    [orainst1@erpdemo log]$
    [orainst1@erpdemo log]$ cat emagent.nohup
    --- Standalone agent
    ----- Thu Feb 21 11:46:56 2013::Agent Launched with PID 24198 at time Thu Feb 21 11:46:56 2013 -----
    ----- Thu Feb 21 11:46:56 2013::Time elapsed between Launch of Watchdog process and execing EMAgent is 0 secs -----
    (pid=24198): starting emagent version 11.1.0.1.0
    (pid=24198): emagent started successfully
    URLTiming: Using SunX509
    [orainst1@erpdemo log]$
    Emagent.trc
    : nmehl_read_sock timed out, rsf = -5, setting read timeout flag2013-02-21 12:01:39,302 Thread-3028446096 WARN ssl.io: fd=32: nmehlssl_read, nzos_Read error = 28862 readTimed Out = 1
    2013-02-21 12:01:39,302 Thread-3028446096 WARN http: <nmehl.c>:<nmehl_readline>: nmehlssl_read() timed out
    2013-02-21 12:01:39,302 Thread-3028446096 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2013-02-21 12:02:09,368 Thread-3028446096 WARN ssl: <nmehlssl.c:nmehlssl_readcb>: nmehl_read_sock timed out, rsf = -5, setting read timeout flag
    2013-02-21 12:02:09,368 Thread-3028446096 WARN ssl.io: fd=32: nmehlssl_read, nzos_Read error = 28862 readTimed Out = 1
    2013-02-21 12:02:09,368 Thread-3028446096 WARN http: <nmehl.c>:<nmehl_readline>: nmehlssl_read() timed out
    2013-02-21 12:02:09,368 Thread-3028446096 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2013-02-21 12:07:35,620 Thread-3032005520 WARN ssl: <nmehlssl.c:nmehlssl_readcb>: nmehl_read_sock timed out, rsf = -5, setting read timeout flag
    2013-02-21 12:07:35,620 Thread-3032005520 WARN ssl.io: fd=35: nmehlssl_read, nzos_Read error = 28862 readTimed Out = 1
    2013-02-21 12:07:35,620 Thread-3032005520 WARN http: <nmehl.c>:<nmehl_readline>: nmehlssl_read() timed out
    2013-02-21 12:07:35,620 Thread-3032005520 ERROR command: nmejcn: error receiving response headers from https://pritesh.txis.com:4900/em/upload
    [orainst1@erpdemo log]$
    [orainst1@erpdemo log]$ cat emdctl.trc
    2013-02-21 11:46:56,495 Thread-3043628736 WARN http: nmehl_connect_internal: connect failed to (erpdemo.txis.com:3872): Connection refused (error = 111)
    2013-02-21 11:46:56,495 Thread-3043628736 ERROR main: nmectla_agentctl: Error connecting to https://erpdemo.txis.com:3872/emd/main/. Returning status code 1
    [orainst1@erpdemo log]$
    [orainst1@erpdemo log]$ cat emagentfetchlet.trc     
    [orainst1@erpdemo log]$ cat emagentfetchlet.trc
    2013-02-21 11:47:37,597 [main] WARN track.OracleInventory collectInventory.937 - ECM: Oracle Home agent11g1 at location /data/PRODINST/agent11g/agent11g specified in inventory /data/PRODINST/oraInventory does not exist.
    2013-02-21 11:47:38,452 [main] WARN track.OracleInventory collectInventory.937 - ECM: Oracle Home agent11g3 at location /data/PRODINST/pritesh_agent/agent11g specified in inventory /data/PRODINST/oraInventory does not exist.
    2013-02-21 11:47:38,535 [main] WARN track.OracleInventory mineHomeInventory.2320 - ECM: Oracle Home : Independent Products at N/A is not readable, please check permissions ..
    [orainst1@erpdemo log]$
    [orainst1@erpdemo log]$ cat emagent.nohup.lr
    [orainst1@erpdemo log]$ cat emagent.nohup.lr
    --- Standalone agent
    [orainst1@erpdemo log]$#######################################
    [orainst1@erpdemo log]$ cat emctl.log
    [orainst1@erpdemo log]$ cat emctl.log
    24156 :: Thu Feb 21 11:46:56 2013::AgentLifeCycle.pm: Processing start agent
    24156 :: Thu Feb 21 11:46:56 2013::AgentLifeCycle.pm: EMHOME is /data/PRODINST/agent111g/agent11g
    24156 :: Thu Feb 21 11:46:56 2013::AgentLifeCycle.pm: service name is
    24156 :: Thu Feb 21 11:46:56 2013::EM_SECURE_HOSTNME: erpdemo.txis.com
    24156 :: Thu Feb 21 11:46:56 2013::EM_SECURE_PORT: 3872
    24156 :: Thu Feb 21 11:46:56 2013::EM_LISTEN_ON_ALL_NICS: TRUE
    24156 :: Thu Feb 21 11:46:56 2013::AgentLifeCycle.pm:status agent returned with retCode=1
    24156 :: Thu Feb 21 11:47:34 2013::AgentLifeCycle.pm: Exited loop with retCode=3
    25957 :: Thu Feb 21 12:12:33 2013::AgentLifeCycle.pm: Processing status agent
    25957 :: Thu Feb 21 12:12:33 2013::AgentStatus.pm:Processing status agent
    25957 :: Thu Feb 21 12:12:33 2013::AgentStatus.pm:emdctl status returned 3
    [orainst1@erpdemo log]$
    [orainst1@erpdemo bin]$ ./emctl status agent
    Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    Agent Version : 11.1.0.1.0
    OMS Version : 11.1.0.1.0
    Protocol Version : 11.1.0.0.0
    Agent Home : /data/PRODINST/agent111g/agent11g
    Agent binaries : /data/PRODINST/agent111g/agent11g
    Agent Process ID : 24198
    Parent Process ID : 24178
    Agent URL : https://erpdemo.txis.com:3872/emd/main/
    Repository URL : https://pritesh.txis.com:4900/em/upload
    Started at : 2013-02-21 11:46:56
    Started by user : orainst1
    Last Reload : 2013-02-21 11:46:56
    Last successful upload : 2013-02-21 17:33:40
    Total Megabytes of XML files uploaded so far : 36.47
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 15.60%
    Last successful heartbeat to OMS : 2013-02-21 17:41:09
    Agent is Running and Ready
    [orainst1@erpdemo bin]$
    [orainst1@erpdemo bin]$ ./emctl upload agent
    Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    EMD upload completed successfully
    [orainst1@erpdemo bin]$
    SQL> select release_name from apps.fnd_product_groups;
    RELEASE_NAME
    12.1.3
    The below details is from on the machine where the grid control ,weblogic server and oms are installed and have not create any type of problem:-
    Oms details on host machine
    [oracle@pritesh bin]$ ./emctl status oms -details
    Oracle Enterprise Manager 11g Release 1 Grid Control
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    Enter Enterprise Manager Root (SYSMAN) Password :
    Console Server Host : pritesh.txis.com
    HTTP Console Port : 7788
    HTTPS Console Port : 7799
    HTTP Upload Port : 4889
    HTTPS Upload Port : 4900
    OMS is not configured with SLB or virtual hostname
    Agent Upload is unlocked.
    OMS Console is unlocked.
    Active CA ID: 1
    [oracle@pritesh bin]$
    [oracle@pritesh bin]$ ./emctl status agent
    Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    Agent Version : 11.1.0.1.0
    OMS Version : 11.1.0.1.0
    Protocol Version : 11.1.0.0.0
    Agent Home : /home/oracle/Oracle/Middleware/agent11g
    Agent binaries : /home/oracle/Oracle/Middleware/agent11g
    Agent Process ID : 3795
    Parent Process ID : 3775
    Agent URL : https://pritesh.txis.com:3872/emd/main/
    Repository URL : https://pritesh.txis.com:4900/em/upload
    Started at : 2013-02-21 10:00:56
    Started by user : oracle
    Last Reload : 2013-02-21 10:17:45
    Last successful upload : 2013-02-21 16:46:01
    Total Megabytes of XML files uploaded so far : 42.29
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 23.91%
    Last successful heartbeat to OMS : 2013-02-21 16:46:53
    Agent is Running and Ready
    [oracle@pritesh bin]$
    [oracle@pritesh bin]$ ./emctl upload agent
    Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    EMD upload completed successfully
    [oracle@pritesh bin]$
    SQL> select release_name from apps.fnd_product_groups;
    RELEASE_NAME
    12.1.1
    SQL>
    thanks & regards
    pritesh rnajan

  • Newbie - Installing Application Servers onto Grid Control

    sorry for what may seem a basic question but we have 2 Application servers we wish to put onto our Grid Control.
    Can someone point me to a page for installing/downloading the agent. I have tried installing the agent previously but this didn't seem to work.
    We can access our DB EM pages in our grid control at present and also our RAC and ASM however i have been assigned the task of installing the agents for the Application servers.
    Any assistance greatly appreciated

    To ‘push’ the OEM agent from the OEM Grid Control patch 5455350 is needed. I found that after doing this I was still unable to fully deploy the agent by pushing it from the OEM GRID control. So take a different route
    Download the proper agent installation file from http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html
    The GRID control agent installation zip file is extracted on the GRID control server and it should go to ORACLE_HOME/sysman/agent_download/<version>/<os>
    set GRID control ORACLE_HOME
    mkdir –p $ORACLE_HOME/sysman/agent_download/<version>
    unzip /.../Win32_Grid_Control_agent_download_10_2_0_3_0.zip
    opmnctl shutdown
    opmnctl startall
    WGET is needed for the installation of the OEM agent on Windows.
    Download wget (complete package, except sources) from
    http://gnuwin32.sourceforge.net/packages/wget.htm
    and install it on to the Windows server.
    edit the agent_download.rsp response file on the OMS host and change the:
    s_OMSHost="..."
    s_OMSPort="..."
    scp over the agentDownload.... script to the target machine.
    ecit the hosts file on the windows server and add the Windows machine IP and hostname and OMS machine IP and hostname.
    on the windows server execute:
    script.exe agentDownload.vbs b <agent home on windows server> m <OMS host name> r <port number>
    secure the agent
    emctl secure agent
    I got most of this from Oracle whitepaper 10gr2_agent_deploy_bp.pdf (bp=best practices).

  • Grid Control showing excessive amount of disk utilization.

    Hi Folks,
    I understand that Oracle doesn't support their products 100% on non Oracle VMs, but I thought I might take a stab at it.
    I decided to stick with a simple installation of Oracle Grid Control running on a Windows 2003 R2 32 bit os, here are the steps I took.
    1. Run Guest OS Windows 2003 R2 32 bit on a Windows 2008 x64 running Hyper-V (Yes I know why not EL5 running XEN, long story)
    2. Install Grid Control with Database and Agent versions 10.2.0.2.1
    3. Patch agent and oms to 10.2.0.5.0
    4. Some minor issues, but managed to get by those.
    - First off EM Website shows down, got to take a look at that, probably need to fix the beacon, not sure!
    Problem:
    - Grid shows that the host running em is over 100% disk utilization.
    - According to Metalink this is a known bug in Windows 2000 Performance Counters (not 2003?)
    - More specially Microsoft KB article Q310067.
    - Metalink Doc Id: 303788.1
    - Note, I'm running 2003 on a Hyper-V Guest, so anything can go wrong!
    The specific error is:
    Metric               Disk Device Busy (%)
    Disk Device               0 C:
    Severity               Critical
    Alert Triggered          Jun 3, 2009 7:57:54 PM
    Last Updated          Jun 4, 2009 3:48:48 PM
    Acknowledged          No
    Acknowledged By     n/a
    Message               Disk Utilization for 0 C: is 587.86%, crossed warning (80) or critical (95) threshold.
    More info:
    - Guest is running on a Dual Quad Core Xeon System with 16 GB of RAM
    - Guest has dedicated 4096MB of ram
    - Guest has dedicated 2 CPUS
    - Guest is configured with a Virtual Disk (specifically partition c:\) to be on local Hyper-V disk array
    - Windows 2008 Hyper-V host disk array is in a RAID 5 configuration running 10k SAS drives
    - Windows 2008 Hyper-V host utilization is literary at most 5% (current is 1%)
    - Windows 2008 Hyper-V disk utilization according to graphs is showing 100KB/s usage (less than 1%)
    Temporary solution is to turn off the metric, but not sure if that's such a good idea.
    - Note that 11g EM and 10g EM running on Hyper-V server had the same issue.
    - Note that 11g EM and 10g EM running without visualization had no issues.
    Any thoughts?

    It may be related to Bug 8677212: BACKUP INFORMATION FOR SOME DATABASES SHOWS INCORRECTLY
    Although bug info says it for HP-UX, I've also seen the same problem on Grid Control 10.2.0.5 running on Solaris.
    You may want to apply 10.2.0.5.4 Grid Control Patch Set Update (PSU) [ID 1139563.1] to fix it.
    Best Regards,
    Gokhan Atil
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • Error - when creating a standby database with EM 10g Grid Control

    Hi,
    I am experiencing some problems when I want to create through the EM 10g Grid Control a standby database from a allready existing db. At step 2 when the files should be generated and copied to the other system, I am always getting the error that there isn't enough disk space on the other system. This can't be because there is at least 30GB free and the installer is asking for less than 1GB. I was searching the whole internet for a solution to this issue, but there was just nothing that could help me out with that point...
    Has someone an idea at this point? Thanks for helping...
    I am working on a Windows 2003 Server - Enterprise Edition for every system (Grid Control, Primary DB and Standby DB).
    Best regards,
    Patrick.

    Check that filesystem space using GC under targets>hosts on which you are trying to create standby. Do you have any specific error message from GC ? If GC shows proper size under host filesystem section then there shuld be no such problem. Double chk ur locations too.
    Regards,
    http://askyogesh.com

  • Grid control mgmt aganet question...

    I installed a new 2 node cluster 10.2.0.3 on linux Itanium and I setup the db as a standby database so that we can test our dtata gurad switchover which we are using to facilitate our ASM migration from our production database.
    We successfully switched roles and the new cluster came up as a primary. While the database was up and running as the primary database I installed the grid control mgmt aganets and that all went well and I could loging to the grid control mgmt server and administer the clustered database.
    I since have dropped the database and have recreated it as a standby which is now in sync from our prod database. The grid control mgmt agents have been stopped since they could not connect whcile the database is running in a syandby role.
    We plan top switch roles of the databases and the new cluster will be coming online as our primary over the weekend.
    My quesion is? Will I need to reinstall the grid control agents or can I simply just start them up once the database is up and running as primary again? Is there data in the sysman repository that will be missing that will warrant a reinstall of the grid agaents since this database is not going to be the same database that was in existence at the time when the agents had been installed?
    Thanks very much.

    It is something that works. It will be best for you to give it a go on your own. If you really want do a lot of practice, then pickup the related Step-by-steps documents and start doing it. You cannot start if you spend time contemplating or having a lot of doubt about it.
    Oracle has a lot of pages dedicated to VM and Grid Control. I would suggest that you read up on it.
    <br>
    Oracle Database FAQs
    </br>

  • Is 10g Grid Control compatible with database 11g R2?

    Hi all,
    I've searched the certificaction matrix for Grid Control in Metalink and it shows the last compatible version of database to create the repository is 11.1 also I don't know if it could monitor a 11.2 database...
    If I try installing it the usual way I get an error of invalid version and if I use the silent mode, I get stuck always on an error, so I suppose, for the moment, it's impossible.
    Any of you have had some experiences like mine?? I planned to use it for administering Data Guard...

    if it could monitor a 11.2 database... It can monitor, at least the basic functions,I added a 11gR2 database to the monitored targets (more exactly the agent discovered it properly). New features (and there some for dataguard,too) aren't yet covered. And it's not supported. 10g isn't very specific,I'm talking about the latest release 10.2.0.5 running on Windows Server 2003,not sure about lower versions.
    Because of the lack of official support, I wouldn't yet include 11gR2 databases in production environments.
    Werner

  • Grid control is not showing targets

    hi
    i have grid control agent installed on windows 2000. i have a 9i database and a 10g database on the same node and i can see and access these from my grind control.
    i have another database 10g on my another windows machine and i installed agent there and my grid control can access that node, agent and database.
    I have one 9.2 database on Red Hat Linux Advance server 4 and i installed agent there and i have a 10g database on another Red Hat Linux Advance server 4 machine and i installed agent there also. My grid control cannot view and access these two linux nodes, agents and databses on these two linux nodes. Agents are running successfullly on these two nodes and when i view the status of agent on these two linux nodes, i see that agent is running successfully and a message "Last successfull heart beat to OMS" displays the time when last tim agent ping tha OMS and it is updated every minute and it means that that my agent is communicating with the OMS but i really cant see these two nodes in my Enterprise Manager Grid Control.
    Is there any conflication that i cannot administor Linux nodes from Windows OMS?
    Regards

    I think all data aren't getting uploaded to oms side , Would you please try to manually upload the data from agent side by using emctl upload commamd
    I suspect it would throw the error ie" unable to upload bdbbfb.xml file "
    Let me know the result .

  • Oracle Grid Control 10.2.0.3 can´t configure databases

    I installed the Grid Agent (10.2.0.5) in host1 for monitoring the database (10.2.0.5) inside him. I did the same in host2, that has Agent (11.1.0.1) and Database (11.2.0.2). Both Agents are pointing to the same Grid Control Management Server.
    Grid control has a separated server with Grid Control OMS and Agent installed (10.2.0.3).
    This host1 was added to the grid control target hosts, and the database too. The secure option is disabled.
    First Problem: metrics collection error in Grid Control for database target.
    My Solution: Deconfigured the Oracle DBControl in host1 and host2 (it was configured with a local repository) dropping the repository, and I used | emca -config agent | to create a link to the agent in local machine.
    New state: Now the OEM show the targets apparently been monitored. When a target fall down the OEM send allerts normally.
    Second Problem: When I click in a host, database, listener, or any of the targets, intending the log in the instance it take about 5 minutes and returns: "No Response from Application Web Server There was no response from the application web server for the page you requested. Please notify the site's webmaster and try your request again later. "
    My solution: I didn´t find one. HELP!
    For coincidence, all databases actually monitored (8) are 10.2.0.4 or down. All of these can be managed by click in target names by OEM. Could it be the version of the new databases?
    See $OMS_HOME/SYSMAN/LOG/emoms.log in Management Server
    2012-05-09 10:35:13,462 [EMUI_10_22_37_/console/monitoring/hostOverview$ctxType=Hosts$type=host$target=HOST1.MYDOMAIN] ERROR host.HostOverviewDataObject getLogonInfo.2343 - IOException in sending Request :: Connection timed out
    oracle.sysman.emSDK.emd.comm.CommException: IOException in sending Request :: Connection timed out
    at oracle.sysman.emSDK.emd.comm.EMDClient.getResponseForRequest_(EMDClient.java:1728)
    at oracle.sysman.emSDK.emd.comm.EMDClient.getResponseForRequest(EMDClient.java:1624)
    at oracle.sysman.emSDK.emd.comm.EMDClient.getResponseForRequest(EMDClient.java:1547)
    at oracle.sysman.emSDK.emd.comm.EMDClient.getMetrics(EMDClient.java:915)
    at oracle.sysman.eml.mntr.host.HostOverviewDataObject.getLogonInfo(HostOverviewDataObject.java:2285)
    at oracle.sysman.eml.mntr.host.HostOverviewDataObject.getHostInfo(HostOverviewDataObject.java:2226)...

    Hello.
    We already have Grid Control 10.2.0.4 and just installed AD4J 10.2.0.4. This version of AD4J is not integrated with Grid Control, and can be setup on any server by unzipping the downloaded file (no installer). I did find the installation/configuration documentation lacking, but worked through it with a little help from Oracle Support.
    The AD4J console has the look and feel of Grid Control, but is totally separate app with its own Apache server, etc.
    Daren

  • Whats the Advantages of OEM Grid control

    Hi All,
    I would like to know what the term "Grid control" means and whats the advantages of OEM10g Grid Control over OEM 9i....
    If anyone has good docuements,Please share the source.It will be highly appriciated.
    Thanks in Advance..
    Anand

    Oracle Enterprise Manager comes in 3 editions - Database Control, Fusion Middleware Control (also known as Application Server Control) and Grid Control.
    Database and Fusion Middleware Control are the base consoles shipped with Oracle Database and Fusion Middleware, respectively.
    Grid Control is the full fledge EM that is capable of managing everything from Oracle Database, Fusion Middleware, Siebel, PeopleSoft, Oracle E-Business Suite to 3rd party technologies such as BEA Weblogic, IBM DB2, Microsoft SQL Server, F5 Load Balancer, etc...
    In addition to support for more types of technologies, 10g also includes additional capabilities such as service level management, configuration management, provisioning, etc...
    Here is the link for more info.
    http://www.oracle.com/technology/products/oem/index.html
    Here is the link to download it to try for yourself.
    http://www.oracle.com/technology/software/products/oem/index.html

  • DataGuard & Grid Control

    Hi all
    I have one primary database and one phisical standby database.
    OS windows 2003, EE 10gR2
    How can now install-implemate Grid control?
    I must install grid only on primary database?
    i dont want "destroy" me configuration DataGuard
    Thanx in Advance!!

    I suggest that you get out a new machine and install database, Grid Control app server and Management Repository there.

  • Installing Grid Control -Where are binaries

    I am trying to install Grid control in linux environment where i have only the database installed. I have download the following binaries to install Grid Control. But what i see, is that this is a patch to an existing Grid Installation.Where do i find the binaries for new installation for Grid Control?
    http://www.oracle.com/technology/software/products/oem/htdocs/linuxsoft.html
    Oracle Enterprise Manager 10g Grid Control Release 4 (10.2.0.4)
    for Linux x86
         Download the complete files
              GridControl_10.2.0.4_LINUX.zip (1,440,487,994 bytes) (cksum - 2874315604)
    Thanks
    -Prasad

    From the README file:
    2.1 Install Oracle Enterprise Manager 10g Release 2
    Installing 10g Grid Control Release 4 requires any previous releases of Grid Control, that is any 10.2.0.x.0 installation, and upgrade to 10.2.0.4.0 release. If you do not have a previous release, but want to have a 10.2.0.4.0 Grid Control environment, then first install 10.2.0.1.0 Grid Control (10.2.0.2.0 for Windows), and then upgrade it to 10.2.0.4.0.
    - Download Oracle Enterprise Manager 10g Release 2 Grid Control from:
    http://www.oracle.com/technology/software/products/oem/index.html
    Refer the directions provided to download and unzip the product, and install 10.2.0.1.0 (10.2.0.2.0 for Windows).
    - Installing Oracle Enterprise Manager 10g Release 2 Grid Control:
    The fast and recommended method is to perform a software only installation of 10.2.0.1.0 (10.2.0.2.0 for Windows) and then upgrade it to 10.2.0.4.0
    Download for version 10.2.0.1 is on the same site.
    Werner

Maybe you are looking for

  • VZ In-Home Agent says I'm not connected to internet, but I am

    I tried to setup Outlook 2007 to use my verizon.net email.  Anyway I couldn't get it to work manually.  So I downloaded VZ - In-Home Agent.  Everytime I use it, it checks everything (network, wireless, router), when it gets to the point where it trie

  • Lost iWeb pages on my computer

    I published some pages with iWeb last year (before 08). I can see the pages when I go the the URL also from mobile me - BUT I have lost the ability to access that I can see from my laptop (I wanted to access so that I can delete the pages). Can anyon

  • Oracle 8i Stored Java Procedure and OAS 4.0.8

    Hi, I'd like to call a Java Stored Procedure from the OAS, like an ordinary PL/SQL package. The Java Stored Procedure should generate HTML-code to display in the browser. My first try was, to use the SQL wrapper function and the PL/SQL cartridge of t

  • How to attach non-recurring element to employees based on a dynamic query?

    Hi, We have a client requirement where the client wants to attach a non-recurring element to the employees based on some data in a view. The element entry should be done for only those employees who have entry in the view. Please help on this....

  • Only had to restart about 10 times today - making progress (not)

    Hi Creator Team, I have been using JSC2 for 8 hours today, as I getting close to UAT and doing a lot of work in it. My patience is wearing very, very, very thin with this tool. How may times should a developer with a decent PC have to restart both ID