How to integrate a Solaris x86 server on Sun Management Center ?

Hello people,
I want to integrate a Solaris x86 server on Sun Management Center platform.
If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
/opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
I supose that in this directory, SunMC will install sparc binary files
At this point, I can't follow the installation and abort it.
Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
Thanks

Hi Hisham,
hishooooo wrote:
Dear Gents,
I have one X86 Solaris Server configured and installed to be Sun Management Center Server.
successfully i could monitor the Sun Solaris Servers after i have installed the SMC agent on them.
my problem is that i could not install the SMC agent on Red Hat Linux. as i could not find an easy document or steps to do so.
could you guide please?If you still have a copy of your SunMC media around, the same ["es-inst"|http://docs.sun.com/app/docs/doc/820-2215/command-line-1?l=en&a=view] program you use to install Solaris Agents should work on Linux as well. It autodetects OS type and will install Solaris packages or RPMs as appropriate.
Regards,
[email protected]
http://www.HalcyonInc.com

Similar Messages

  • How to integrate Solaris x86 server on Sun Management Center ?

    Hello people,
    I want to integrate a Solaris x86 server on Sun Management Center platform.
    If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
    In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
    It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
    /opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
    I supose that in this directory, SunMC will install sparc binary files
    At this point, I can't follow the installation and abort it.
    Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
    Thanks

    Hi
    From the Unix prompt enter oemapp console(for v9.x). If you are using earlier versions it is oemapp console (for starting the console) and oemapp dbastudio(for starting dba studio)
    For starting OMS enter: oemctrl start oms.
    Hope this helps
    sarath

  • Can I set two router IP on my solaris x86 server?

    Hi ,
    I want to make traffic balance on my office. Because we have two leased line.
    I would build up NAT in the solaris x86.
    Can I set two router ip in the solaris x86 server? And How to do it?
    The traffic balance is work or not?
    If that is not work, what can I do?
    Thanks All ^_^
    Andrew Choi

    Yes, you can use solaris x86 as a NAT box.
    add another ethernet interface, and install
    IP-filter, or sunscreen
    I suggest you search the solaris newsgroups on
    http://groups.google.com for more specific links to
    how-tos

  • How to Integrate Client system and Server system?

    How to Integrate Client system and Server system?
    A scenario which is working successfully in server system, not working in client system.
    help me out in this issue.
    pankaj.

    Hi Bhavesh,
    server system means where we have xi inst.
    client system means where we have only GUI inst.(front end).
    The scenario working in server system (picking file and posting it in to the target place)
    but the same not working in client system.

  • Sun Management Center - how to install the SMC agent on linux

    Dear Gents,
    I have one X86 Solaris Server configured and installed to be Sun Management Center Server.
    successfully i could monitor the Sun Solaris Servers after i have installed the SMC agent on them.
    my problem is that i could not install the SMC agent on Red Hat Linux. as i could not find an easy document or steps to do so.
    could you guide please?
    appreciate your support and cooperation
    Best Regards
    Hisham

    Hi Hisham,
    hishooooo wrote:
    Dear Gents,
    I have one X86 Solaris Server configured and installed to be Sun Management Center Server.
    successfully i could monitor the Sun Solaris Servers after i have installed the SMC agent on them.
    my problem is that i could not install the SMC agent on Red Hat Linux. as i could not find an easy document or steps to do so.
    could you guide please?If you still have a copy of your SunMC media around, the same ["es-inst"|http://docs.sun.com/app/docs/doc/820-2215/command-line-1?l=en&a=view] program you use to install Solaris Agents should work on Linux as well. It autodetects OS type and will install Solaris packages or RPMs as appropriate.
    Regards,
    [email protected]
    http://www.HalcyonInc.com

  • How about gccfss for Solaris x86/x64 platforms?

    Subject says it all... it could make compiling a lot of code out there a whole lot easier!
    Bob

    I also desire gccfss for Solaris x86/x64 platforms .
    In the interim I have downloaded the source and am attempting to create such a beast.
    It is slow progress to fix the unexpected script breakage, but it seems to be going OK:
    Problems:
    1.): Issues like "-mtune=v9" and an "embeded spec" in gcc and cpp (from files
    gccfss_src/build/gcc/gccspec.o and gccfss_src/build/gcc/cppspec.o).
    2.): Use of OPTTABLE_H = $(srcdir)/config/target-option-table.h with SPARC specific
    options throughout
    EG:
    #ifdef CROSS_COMPILE
    #define NATIVE \
    { "-native", "-xtarget=generic" }, \
    { "-xarch=native64", "-Zarch=v9 -Zarchm64=v9 -Zm=64" },\
    { "-xarch=native", "-Zarch=v8plus -Zarchm32=v8plus -Zarchm64=v9 -Zm=32" },\
    { "-xtarget=native64", "-Zarch=generic -Zarchm32=generic -Zarchm64=v9 -xchip=generic -xcache=generic -Zm=64"}, \
    { "-xtarget=native", "-Zarch=generic -Zarchm32=generic -Zarchm64=v9 -xchip=generic -xcache=generic -Zm=32"}
    #else
    #define NATIVE \
    { "-native", "-xtarget=native" }, \
    { "-xarch=native64", "-xarch=native64 -Zm=64"}, \
    { "-xarch=native", "-xarch=native -Zm=32"}, \
    { "-xtarget=native64", "-xtarget=native64 -Zm=64"}, \
    { "-xtarget=native", "-xtarget=native -Zm=32"}
    #endif
    Thus, one would need to change:
    { "-xarch=native64", "-Zarch=v9 -Zarchm64=v9 -Zm=64" },\
    to something like:
    { "-xarch=native64", "-xarch=386 -m64" },\
    3.): Copy the "sparc_output_scratch_registers()" function from file
    "gccfss_src/src/gcc/config/sparc/sparc.c" to "gccfss_src/src/gcc/tree-ir.c".
    4.): Use the undocumented command line option "-frtl-backend" when this error
    occurs during the build (a simple Makefile change):
    `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
    xgcc: SUNW0scgfss 4.2.0 has not been installed. Either install it or use -frtl-backend.
    5.): More ...
    All these issues occur because the scripts expect "--build=sparc-pc-solaris2.11" but
    I configured using "--build=i386-pc-solaris2.11" . It seems like it is going to work
    but I am yet to finish stage1 of the build (I do have a working "xgcc").
    Rob

  • Bringing oralce vm for x86 server in enterprise manager control

    Hello All,
    Greetings of the day.
    We have deployed oracle enterprise manager opscenter 11g on solaris x86 and deployed a proxy controller on the same machine.
    Query: How to discover and bring into oracle enterprise manager control oracle VM x86 machine which is already built and alive.
    My perception is to install oracle virtual management pack on proxy controller machine and oracle vm server. I have the binaries with me. I could not find a doc to install the same.
    Quick response is much appreciated.
    Regards,
    Hameed

    Hameed,
    Your questions sounds like it is specific to Ops Center. As a side note, there is an Ops Center forum and MOS community here:
    https://communities.oracle.com/portal/server.pt/community/oracle_enterprise_manager_ops_center/505
    Enterprise Manager Ops Center
    Ops Center 11g does not have any awareness of OVMx86. Oracle introduced support for OVMx86 into Ops Center 12c.
    http://www.oracle.com/technetwork/oem/ops-center/oem-ops-center-188778.html
    The way you accomplish this in Ops Center 12c is to discover a OVM Manager. Once you have an OVM Manager discovered, you can discover OVS hypervisors and connect them to the OVM Manager through Ops Center. Then they will appear in the Ops Center user interface and you will be able to control them from Ops Center.
    You can also do this in Enterprise Manager Cloud Control 12c.
    Thanks,
    Mike

  • How to integrate ECC as backend server for CRM Server

    Hi Experts,
    My requirement is I have two servers one is ECC and another one is CRM , Now I need CRM Backed server as ECC, I.e
    when ever a sales order created in CRM ,it's need to be replica in ECC also , how can it possible , how can configurable settings between these two systems , if there is any documents to achieve this , Please suggest me
    Regards
    Siva

    Hi Sadasiva,
    1). Create an RFC between CRM and ECC and vice versa
    2). Partner profiles in WE20 and Port configuration in WE21
    3). You can transfer either in the form of Idocs or your functional configuration has to do below mentioned steps
    To replicate a sales order from CRM to ECC you should have following prerequisties.
    1. Master Data: Customer, material should exist in both the system
    2.Organization Structure like Sales Org, Division, Distribution Channel (Sales Area) should exist in both the system
    3.Same Document Type,Item Category, Item Category Determination should exist in both the system
    4.Same Number Range should exist in both the system
    refer to below link also
    Transfer of sales order header custom fields from ECC to CRM
    Thanks,
    Sravanthi

  • How to integrate from MS SQL SERVER 2005 and Flatfile to Oracle 10g.

    Hi
    I am new to ODI. I am trying to load sample data from MS SQL Server 2005 and Flatfile to Oracle 10g.
    1. I have created three models.
    1-1. SQL2005 (SRC_CUSTOMER table)
    1-2. Flatfile (SRC_AGE_GROUP.txt & SRC_SALES_PERSON.txt)
    1-3. Oracle 10g (TRG_CUSTOMER table)
    You may know I got those environments from the ODI DEMO environment.
    2. I could able to reverse the tables also.
    3. I have created an interface which contains source table (from MSSQL 2005), Flatfile and target table from ORACLE model.
    4. I have imported the knowledge modules. But I am confusing in selecting the knowledge modules to source and target tables.
    I've selected LKM File to SQL for flatfile model.
    I've also selected LKM SQL to SQL for MSSQL 2005 model and IKM Oracle Incremental Update for the target table (ORACLE).
    I've also implemented the interface that I created. It worked without errors. But there is no data in target table which is TRG_CUSTOMER.
    I really would like to know what happened and what the problems are.
    You can email me [email protected]
    Thanks in advance
    Jason Lee

    what did give for SRC_AGE_GROUP SRC_CUSTOMER join condition
    if it is
    (SRC_CUSTOMER.AGE=SRC_AGE_GROUP.AGE_MIN) AND SRC_CUSTOMER.AGE=SRC_AGE_GROUP.AGE_MAX
    give it as
    (SRC_CUSTOMER.AGE>SRC_AGE_GROUP.AGE_MIN) AND SRC_CUSTOMER.AGE<SRC_AGE_GROUP.AGE_MAX

  • How to integrate Oracle identity Federation with Oracle Access Manager

    Hi Experts
    I need to integrate OIF(11.1.1.6.0) with OAM(11.1.2). My use case is as follows:
    Things done:
    1) OAM is integrated with an OID (OID1) and OIF is integrated with another OID (OID2)
    2) Able to authenticate the users of OID1 via OAM for my ADF applications.
    Things to be done:
    1) Need to forward the details of unauthenticated user from OAM to my OIF for authentication (i.e., OAM cannot authenticate OID2 users, in such case the details have to be forwarded)
    Looked into so many posts but not done with the integration. Can anyone help me please.. Stuck with this for the last 3 days
    Thanks
    Gopi

    Hi,
    Yes Depot Repair is a module, and you can enable this module if already not enabled using the License Manager. Oracle Depot Module carries the short name CSD.
    In additin to the above, also refer the implementation guide:
    http://docs.oracle.com/cd/B34956_01/current/acrobat/120csdig.pdf
    In order to license a product in Oracle using License Manager, please see following:
    http://myappsdba.com/how-to-license-a-new-product-in-oracle-applications/
    http://www.appsdba.info/docs/oracle_apps/R12/License_Manager.pdf
    Also see:
    How To Use OAM To License JA (Asia/Pacific Localizations), JE (European Localizations), JG (Regional Localizations) and JL (Latin-American Localizations) in Oracle Applications ? (Doc ID 351900.1)
    Thanks &
    Best Regards,

  • How to install oracle 9i report server on sun sparc 280 system

    hello to all
    may i get any help to install report server on the sun sparc 280 R system which is running oracle 9i database,forms and reports
    thanks in adv.
    Mohan

    hello,
    what kind of information are you looing for abve and beyond whats documented in the install guide for the particular platforms.
    thanks,
    ph.

  • How to Integrate Client and Server?

    How to Integrate Client system and Server system?
    A scenario which is working successfully in server system, not working in client system.
    help me out in this issue.
    pankaj.

    This doesn't make any sense... ???
    can you please rewrite your question?

  • ZFS Configuration Question - Also posted in Solaris x86

    Hello,
    I have 2 x 140GB (hw Raid-0 + spare). About 20GB is allocated to Solaris on UFS (standard installation and partitions/slices).
    I would like to allocate the 120GB left on the disk drive to ZFS. That space is not unallocated to any file system for now.
    I found a lot of documentation of how to create a ZFS Pool on an empty disk drive. The documentation is less clear on how to do it on a drive already use by another FS.
    Any help will be appreciated.
    Michel

    Darren,
    I just setup another Solaris x86 server tonight to play with. That future production server is in it's own vlan wtih no Internet access for now.
    The test server has the same configuration, but less disk space.
    Here is the output of prtvtoc
    # prtvtoc /dev/dsk/c0t0d0s0
    * /dev/dsk/c0t0d0s0 partition map
    * Dimensions:
    * 512 bytes/sector
    * 63 sectors/track
    * 255 tracks/cylinder
    * 16065 sectors/cylinder
    * 2350 cylinders
    * 2348 accessible cylinders
    * Flags:
    * 1: unmountable
    * 10: read-only
    * First Sector Last
    * Partition Tag Flags Sector Count Sector Mount Directory
    0 2 00 10522575 27198045 37720619 /
    1 3 01 16065 8401995 8418059
    2 5 00 0 37720620 37720619
    7 8 00 8418060 2104515 10522574 /export/home
    8 1 01 0 16065 16064
    Output of format
    selecting c0t0d0
    [disk formatted]
    Warning: Current Disk has mounted partitions.
    /dev/dsk/c0t0d0s0 is currently mounted on /. Please see umount(1M).
    Total disk size is 8920 cylinders
    Cylinder size is 16065 (512 byte) blocks
    Cylinders
    Partition Status Type Start End Length %
    ====== ====== ============ ===== === ====== ===
    1 Active Solaris2 1 2350 2350 26
    As you can see, the 1st partition is used at 26%. With fdisk, I can create a 2nd partition. My problem is to get that 2nd partiition availlable to Solaris and create a zpool in that unused space..
    Michel

  • How to attach database in sql server 2005 restricted mode

    hi i have a database i want once i have attach database in sql server 2005, anyone cannot do detach, script and delete my database except myself. I mean i want to secure my database to avoid unauthorized persons access
    how it is possible in sql server 2005 express management studio

    There are restrictions for normal Logins but a administrator in SQL server can always detach,script and delete your database.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • 4.x iplanet directory server to  Sun One Directory Server 5.2

    Migating from old 4.x iPlanet Directory Server to new Solaris 9 server with Sun One Directroy Server 5.2.
    I want to know how to re-connect our existing Web page interfaces to the 4.x directory server which employs CGI scripts, dosearch, edit, modify.. etc.
    The old Directory Server version is described at http://docs.sun.com/db/doc/816-6681-10
    Our new Directory Server is at http://docs.sun.com/source/816-6400-10/jdgw.html

    Migating from old 4.x iPlanet Directory Server to new Solaris 9 server with Sun One Directroy Server 5.2.
    I want to know how to re-connect our existing Web page interfaces to the 4.x directory server which employs CGI scripts, dosearch, edit, modify.. etc.
    The old Directory Server version is described at http://docs.sun.com/db/doc/816-6681-10
    Our new Directory Server is at http://docs.sun.com/source/816-6400-10/jdgw.html

Maybe you are looking for

  • ITunes 7.5 messes up audio configuration

    I'm kind of stuck in a hole here. With the previous iTunes version, I could not access the iTunes store for some reason. I upgraded my iTunes to 7.5, but now, every time I try and open it, it says it has detected a problem with my audio configuration

  • Enter your name and password for the server when trying to connect PC and Mac?

    I'm trying to connect my iMac and my WIndows tablet (got it for free) together through my home network.  I open iPhoto, then "Import to Library" ; the connection fails and when I click on "Connect as" up pops this box asking me to "enter your name an

  • How to make direct selection handles visible against pasteboard?

    When I go to transform/resize images inside frames using the direct selection tool, I can't see the handles of the actual image because they are white against a white pasteboard.  I am using InDesign CS5 (ver 7.0.4) on a Mac. I have been using InDesi

  • Rug SIGABRT during registration (inside autoyast initscript)

    I have an initscript in autoyast that works very well creating a corporate standard distro for our customer. it's last job is to do a "rug sa http://blah blah", then do a "rug up -y" and a series of "rug --entire-catalog blah1 -y" to finish the insta

  • Regarding phase approval document

    Hi,    Error occuring when try to begin the approval of phases in cProject. A error message occurs as ''You cannot begin approval approval test without an approval document'' But already I have assigned and activated the approval document DPR_APPROVA