Oracle VM 3.1.1 Manager: Configuraing NIC Bonding?

Each of the two OVM 3.1.1 servers in the OVMM 3.1.1 server pool has three Gigabit Ethernet NIC's:
<ol>
<li>One for the Management + VM + Heartbeat Networks (eth0) and
<li>The other two (eth1 + eth2) should be bonded for redundancy and performance and connected to the Live Migration + Storage Networks.
</ol>
However, OVMM 3.1.1 doesn't seem to have the ability to configure the bonding for NIC's. Am I overlooking something?
Eric Pretorious
Truckee, CA

Refer to the Oracle VM User's Guide for Release 3.1.1:
<li>Chapter 5.4, Network Bonding discusses bonding Management interfaces.
<li>Chapter 5.8, Managing Bonded Interfaces discusses bonding non-Management interfaces.
Eric Pretorious
Truckee, CA
REFERENCE
http://docs.oracle.com/cd/E27300_01/E27309/html/vmusg-network-bonding.html
http://docs.oracle.com/cd/E27300_01/E27309/html/vmusg-network-bondintfce.html

Similar Messages

  • GUIDE: Oracle VM VirtualBox and Oracle Linux NIC bonding

    Author: Dude
    Date: 01-Jun-2013
    Version: B
    Last updates:
    23-Jul-2013, changes required due to forum upgrade
    The following  is provided in the hope that it might be useful. If you wish to use it for the purpose of reference, presentation or education, please include the link or information to this forum posting. Thank you!
    What is Linux network interface bonding? Simply put, the Linux system provides a kernel driver, which can create a logical network device (bond) using 2 or more Network Interface Controllers (NIC) to accomplish link-aggregation and adapter fault-tolerance. For more information, please see the Deployment Guide at https://linux.oracle.com/documentation/
    The channel bonding interface supports several modes of operation. In a typical active-backup set up for fault-tolerance, the system performs MII-based health monitoring of the network interface slaves (eth0, eth1) and assigns them according to bond options and interface availability. In active-backup mode (mode 1), only the current active network device is seen externally.
    Linux bonding for fault-tolerance under Oracle VM VirtualBox does not seem to function as advertised. Searching the Internet for more information shows that other people have tried to set up Linux bonding using various virtualization products, virtual host network adapter and bonding options, but without success.
    It appears the management of Media Access Control addresses (MAC) interferes with internal routing methods between the host and the virtual machine guest. Using the modinfo bonding command (fig. 1) shows a listing of available parameters for the bonding kernel module. The fail_over_mac parameter addresses the Mac address issue in VirtualBox.
    Fig.1
    # modinfo bonding
    filename:       /lib/modules/2.6.39-400.17.1.el6uek.x86_64
                    /kernel/drivers/net/bonding/bonding.ko
    parm:           fail_over_mac:For active-backup,
                    do not set all slaves to the same MAC;
                    0 for none (default), 1 for active, 2 for follow (charp)
    Configuration Example
    Virtualization Product: Oracle VM VirtualBox 4.2.10
    VM Guest OS: Oracle Linux 6.4 (x64)
    VM adapter settings: Bridged Adapter, Paravirtualized Network (virtio-net)
    Adapter1 (eth0): 080027436617, en0, Ethernet 1
    Adapter2 (eth1): 08002708F36A, en0, Ethernet 1
    Note: If you wish to reset the network adapter names and MAC addresses used by the Oracle Linux guest system, erase the content of /etc/udev/rules.d/70-persistent-net.rules and restart the virtual machine.
    1. Create or modify the following configuration files:
    /etc/modprobe.d/bonding-eth0_eth1.conf
    alias bond0 bonding
    /etc/sysconfig/network-scripts/ifcfg-bond0
    DEVICE=bond0
    IPADDR=10.0.2.12
    NETMASK=255.0.0.0
    GATEWAY=10.0.0.138
    DNS1=10.0.0.138
    DNS2=8.8.8.8
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    BONDING_OPTS="mode=1 miimon=100 fail_over_mac=1"
    /etc/sysconfig/network-scripts/ifcfg-eth0
    DEVICE=eth0
    BOOTPROTO=none
    ONBOOT=yes
    MASTER=bond0
    SLAVE=yes
    USERCTL=no
    /etc/sysconfig/network-scripts/ifcfg-eth1
    DEVICE=eth1
    BOOTPROTO=none
    ONBOOT=yes
    MASTER=bond0
    SLAVE=yes
    USERCTL=no
    2. Restart the system or network services (root):
    Fig. 2
    # service network restart
    Configuration Test
    Enter the following commands as user root to verify proper operation of NIC bonding:
    Fig. 3
    # tail /var/log/messages
    bond0: setting mode to active-backup (1).
    bond0: Setting MII monitoring interval to 100.
    bond0: Setting fail_over_mac to active (1).
    bond0: Adding slave eth0.
    bond0: making interface eth0 the new active one.
    bond0: first active interface up!
    bond0: enslaving eth0 as an active interface with an up link.
    bond0: Adding slave eth1.
    bond0: enslaving eth1 as a backup interface with an up link.
    Fig. 4
    # ifconfig
    bond0     Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
              inet addr:10.0.2.12  Bcast:10.255.255.255  Mask:255.0.0.0
              inet6 addr: fe80::a00:27ff:fe43:6617/64 Scope:Link
              UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
    eth0      Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
    eth1      Link encap:Ethernet  HWaddr 08:00:27:08:F3:6A 
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
    Fig. 5
    # netstat -rn
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
    0.0.0.0         10.0.0.138      0.0.0.0         UG        0 0          0 bond0
    10.0.0.0        0.0.0.0         255.0.0.0       U         0 0          0 bond0
    169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 bond0
    Fig. 6
    # ifconfig eth0 down
    # tail /var/log/messages
    bond0: link status definitely down for interface eth0, disabling it
    bond0: making interface eth1 the new active one.
    # ifconfig
    bond0     Link encap:Ethernet  HWaddr 08:00:27:08:F3:6A 
              inet addr:10.0.2.12  Bcast:10.255.255.255  Mask:255.0.0.0
              inet6 addr: fe80::a00:27ff:fe43:6617/64 Scope:Link
              UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
    eth1      Link encap:Ethernet  HWaddr 08:00:27:08:F3:6A 
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
    Fig. 7
    # ifconfig eth0 up
    # ifconfig eth1 down
    # tail /var/log/messages
    bond0: link status definitely up for interface eth0, 4294967295 Mbps full duplex.
    bond0: link status definitely down for interface eth1, disabling it
    bond0: making interface eth0 the new active one.
    # ifconfig
    bond0     Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
              inet addr:10.0.2.12  Bcast:10.255.255.255  Mask:255.0.0.0
              inet6 addr: fe80::a00:27ff:fe43:6617/64 Scope:Link
              UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
    eth0      Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
    During the above test, the client network connection from host 10.0.0.1 (ssh) was maintained without any noticeable interruption. As it can be seen from the syslog and ifconfig command output, the bond0 interface was automatically assigned either the MAC address of eth0 or eth1 and the fail-over worked as advertised.
    Good luck!

    Please see these docs/links.
    Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12 [ID 465915.1]
    Certified Software on Oracle VM [ID 464754.1]
    Oracle VM Templates -- Oracle E-Business Suite 12.1.3 (32-bit), Oracle E-Business Suite 12.1.1 (64-bit and 32-bit) and Oracle E-Business Suite Release 12.X Sparse Middle Tier (32-bit)
    http://www.oracle.com/technetwork/server-storage/vm/ebs-093153.html
    E-Business Suite 12.1.3 Templates for Oracle VM Now Available
    http://blogs.oracle.com/stevenChan/2010/11/ebs1213_oraclevm.html
    Live Migration of EBS Services Using Oracle VM
    http://blogs.oracle.com/stevenChan/2010/01/ebs_live_migration_ovm.html
    Using Oracle VM with Oracle E-Business Suite Virtualization Kit
    http://blogs.oracle.com/stevenChan/2009/12/oracle_vm_ebs_virtualization_kit.html
    New Oracle® VM Templates for Oracle Applications Now Available
    http://www.oracle.com/us/corporate/press/068341
    Very Cool! New Oracle VM Templates for Oracle E-Business Suite
    http://blogs.oracle.com/virtualization/2010/11/very_cool_new_oracle_vm_templa.html
    Thanks,
    Hussein

  • The Oracle MapViewer brings the WebLogic Managed Server to crash

    Problem Description: The Oracle MapViewer brings the WebLogic Managed Server to crash, when we call a GetMap-Request with wrong Coordinates.
    This was found out for the SRS=EPSG:25833. Example:
    http://igdb-qm-svra1.blva.bayern.de:8080/mapviewer/wms?
    REQUEST=getMap&
    Version=1.1.1&
    LAYERS=&
    FORMAT=image/png&
    TRANSPARENT=false&
    STYLES=&
    Datasource=igvert_alkis_wms&
    basemap=AT_WMS_TN-KOMPLETT&
    SRS=EPSG:25833&
    BBOX=3.32358690717E7,5529425.0143,3.32369088846E7,5530464.8272&
    WIDTH=500&
    HEIGHT=500&
    With the Enterprise Manager was also evaluated during and after a crash of Server the SQL-Statements.
    If the SQL statements executed on the database itself, it takes a few seconds after a correct answer returns.
    I know that have the look for the EPSG coordinate as follows:
    BBOX=235869.071700,5529425.014300,236908.884600,5530464.827200&
    My question therefore: Why are these coordinates by the Oracle MapViewer approved and not caught? An Request with incorrect
    coordinates goes into a StuckThreads and then the ManagedServer crashed.
    In the appendix you will find the evaluation of the Enterprise Manager.
    I have tested the request with two different versions of Oracle MapViewer (Ver11_1_1_5_B110527 and Ver11_B100426). In both the same problem occurs on.
    I have also filed an SR.
    Best Regards
    Kerstin

    Hi,
    Can you confirm that you're trying to setup a managed server on another machine using the pack/unpack commands ?
    You might to want to take a look at that post.
    Clustering of 2 Physical server
    Hope that helps !
    Regards

  • Unable to save info on user oracle - incorrect password (OB users manager)

    After configuring OB Express with a tape-drive and starting a rman-backup I got those messages from catxcr -l0 <job id>:
    oracle/6.1: 2008/03/07.14:50:23 ______________________________________________________________________
    oracle/6.1: 2008/03/07.14:50:23
    oracle/6.1: 2008/03/07.14:50:23 Transcript for job oracle/6.1 running on rac1
    oracle/6.1: 2008/03/07.14:50:23
    oracle/6.1: 2008/03/07.14:50:24 (mt) qdv__read_label() failed - filemark encountered (OB device mgr)
    oracle/6.1: 2008/03/07.14:50:24 Info: volume in tape2 is usable for this operation.
    oracle/6.1: 2008/03/07.14:50:24 It must be overwritten at BOT.
    oracle/6.1: 2008/03/07.14:50:24 (pvfw) at BOT
    oracle/6.1: 2008/03/07.14:50:24 (pvfw) mounted ok
    oracle/6.1: 2008/03/07.14:50:24 (pvfw) pos_vol_cleanup not returning pstate
    oracle/6.1: 2008/03/07.14:50:24 (dmap) tape2 success
    oracle/6.1: Error: Unable to save info on user oracle - incorrect password (OB users manager)
    oracle/6.1:
    There's actually a user oracle created and the password set:
    ob> lsuser -l oracle
    oracle:
    Password: (set)
    User class: oracle
    Given name: [none]
    UNIX name: oracle
    UNIX group: dba
    Windows domain/acct: [all] Administrator
    NDMP server user: no
    Email address: [none]
    UUID: 503b6654-cdc1-102a-a3a8-00116b324932
    Preauthorized access:
    Hostname: [all]
    Username: [all]
    Windows domain: [all]
    RMAN enabled: yes
    Cmdline enabled: no
    How to resolve this?
    Thanks.

    Well the list above shows that you have configured a pre-authorized access for the oracle user, and this is where the password check is failing. If you don't have any Windows in your OSB domain then you should remove this entry so it just shows as [none]
    admin:
    Password: (set)
    User class: admin
    Given name: [none]
    UNIX name: root
    UNIX group: root
    Windows domain/acct: [none]
    NDMP server user: no
    Email address: [none]
    UUID: e2948bfc-c3d2-1028-abd2-001422525e7e
    Preauthorized access: [none]

  • New Note 790189.1 - Oracle Clusterware and Application Failover Management

    Hi all,
    please, note the newly created Metalink Note 790189.1 - Oracle Clusterware and Application Failover Management if you want to use Oracle Clusterware as a general purpose cluster solution. The note intends to clarify and to explain the current situation in regards to the supportability of applications managed by Oracle Clusterware.
    In environments not including Oracle RAC, Oracle Clusterware still provides the level of high availability that is commonly known to be achievable for applications and databases managed in (failover) cluster environments. These environments can include Oracle Single Instance Databases, Oracle Application Servers, Oracle Enterprise Manager components, third party databases, or any other kind of application. (For more information on Oracle Clusterware 11g in general, please, refer to [Oracle Clusterware homepage|http://otn.oracle.com/clusterware].)
    Metalink Note 790189.1 - Oracle Clusterware and Application Failover Management is tightly integrated with the information on application failover management available on the [Oracle Clusterware homepage|http://otn.oracle.com/clusterware] and discusses typical questions like
    * Terminology
    * Script supportability and preconfigured agents
    * How to prove that action scripts work outside of Oracle Clusterware
    * Supportability of the Oracle Database Single Instance example scripts
    * How do I know whether a certain script is supported as a preconfigured agent?
    Metalink Note 790189.1, however, does not change the level of support that has been introduced for these kind of configurations as of Oracle Database 10g Release 2: "Generally, Oracle does not support action scripts in the strict terms of supporting individual code fragments. Oracle fully supports the integration of individual action scripts proven to run outside of Oracle Clusterware into the Oracle Clusterware management stack. Supported operations therefore typically involve crs_* commands such as crs_profile, crs_register, crs_setperm, crs_getperm, crs_start, crs_stop, and crs_relocate invoked on custom resources. If actions scripts are used as part of a preconfigured agent, Oracle or the application provider who provides the agent will support the integration of this agent, while only the application provider will provide support for the individual action scripts."
    Just for your information. Thanks,
    Markus

    not meant to be a question - rather an announcement.

  • Coherence integration with oracle weblogic portal for Session management

    Could you please let me know how to configure coherence integration with oracle weblogic portal for Session management. Its very urgent. please help.

    Please take a look at the following web page -
    http://coherence.oracle.com/display/COH35UG/Coherence*Web+Session+Management+Module
    -Luk

  • Oracle 10g  is an auto managed database. Why ?

    Oracle 10g is an auto managed database. Why ?
    I have read that with 10g version, Oracle database will need very less management, since it can be configured to automanage itself. Sounds not believable.
    Apart from auto extending tablespaces, what others tasks can be automanaged in Oracle DB 10 G release ?
    Please discuss.
    Gony

    Wow I feel like I'm back in college... are you in school?
    How about ASSM?
    All kinds of things on that from google.
    http://www.google.com/search?hl=en&rlz=1C1GGLS_enUS291US303&q=oracle+assm&aq=f&oq=&aqi=g3
    http://www.google.com/search?hl=en&rlz=1C1GGLS_enUS291US303&q=automating+oracle+databases&aq=f&oq=&aqi=
    P.S. What is this all about? RMAN - Gony's reading task for 07/11/2009
    Edited by: TimS on Jul 10, 2009 4:26 PM

  • Oracle HTTP Server and Node Manager

    Hi,
    I installed Oracle HTTP Server with Node Manager. I set "CrashRecoveryEnabled=true" in the nodemanager.properties. It works fine when I reboot the machine, but when I kill the root process (kill -9), the new process can not be started as the previous process does not have enough time to die and still uses the ports. I tried to run "nmGenBootStartupProps" in wlst, or set the
    RestartMax=2
    RestartDelaySeconds=5
    variables in "[domain_name]/servers/[server_name]/data/nodemanager/startup.properties" - no success.
    Any ideas, how to set the number of retries and the delay between restarts?
    Versions:
    Oracle HTTP Server: version="12.1.3.0.0"
    java version "1.7.0_79"
    OHS log:
    [2015-05-04T11:43:48.0653+02:00] [OHS] [NOTIFICATION:16] [OHS-9999] [mod_weblogic.c] [host_id: dev-oep-soalb-1] [host_addr: 192.168.0.226] [pid: 18651] [tid: 140166670751552] [user: app] [VirtualHost: main]  WebLogic Server Plugin version 12.1.3 <WLSPLUGINS_12.1.3.0.0_LINUX.X64_140421.1459>
    [2015-05-04T11:43:48.0854+02:00] [OHS] [NOTIFICATION:16] [OHS-9999] [core.c] [host_id: dev-oep-soalb-1] [host_addr: 192.168.0.226] [pid: 18651] [tid: 140166670751552] [user: app] [VirtualHost: main]  Oracle-HTTP-Server-12c/12.1.3.0.0 (Unix) mod_ssl/12.1.3.0.0 OtherSSL/0.0.0 mod_plsql/11.1.1.0.0 configured -- resuming normal operations
    [2015-05-04T11:48:53.9584+02:00] [OHS] [INCIDENT_ERROR:32] [OHS-9999] [worker.c] [host_id: dev-oep-soalb-1] [host_addr: 192.168.0.226] [pid: 18838] [tid: 140103489120064] [user: app] [VirtualHost: main] (98)Address already in use:  make_sock: could not bind to address 192.168.0.226:80
    [2015-05-04T11:48:53.9585+02:00] [OHS] [INCIDENT_ERROR:20] [OHS-9999] [worker.c] [host_id: dev-oep-soalb-1] [host_addr: 192.168.0.226] [pid: 18838] [tid: 140103489120064] [user: app] [VirtualHost: main]  no listening sockets available, shutting down
    [2015-05-04T11:48:53.9585+02:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: dev-oep-soalb-1] [host_addr: 192.168.0.226] [pid: 18838] [tid: 140103489120064] [user: app] [VirtualHost: main]  Unable to open logs
    Node Manager log:
    <May 4, 2015 11:37:50 AM CEST> <INFO> <Loading domains file: /opt/app/soalb_domain/nodemanager/nodemanager.domains>
    <May 4, 2015 11:40:18 AM CEST> <INFO> <Loading identity key store: FileName=/opt/app/soalb_domain/security/DemoIdentity.jks, Type=jks, PassPhraseUsed=true>
    <May 4, 2015 11:40:18 AM CEST> <INFO> <Loaded NodeManager configuration properties from '/opt/app/soalb_domain/nodemanager/nodemanager.properties'>
    <May 4, 2015 11:40:18 AM CEST> <INFO> <Node manager v12.1.3 #1604337>
    <May 4, 2015 11:40:18 AM CEST> <INFO> <soalb_domain> <soalb_server1> <Startup configuration properties loaded from "/opt/app/soalb_domain/servers/soalb_server1/data/nodemanager/startup.properties">
    <May 4, 2015 11:40:19 AM CEST> <INFO> <Secure socket listener started on port 5556, host localhost/127.0.0.1>
    <May 4, 2015 11:43:53 AM CEST> <INFO> <soalb_domain> <soalb_server1> <The server 'soalb_server1' is running now.>
    <May 4, 2015 11:48:53 AM CEST> <INFO> <soalb_domain> <soalb_server1> <The server 'soalb_server1' with process id 18672 is no longer alive; waiting for the process to die.>
    <May 4, 2015 11:48:53 AM CEST> <INFO> <soalb_domain> <soalb_server1> <Server failed so attempting to restart (restart count = 1)>
    <May 4, 2015 11:48:54 AM CEST> <SEVERE> <soalb_domain> <soalb_server1> <Unexpected error while monitoring server>
    java.io.IOException: Failed to start the server soalb_server1
    Check log file /opt/app/soalb_domain/system_components/OHS/ohs_nm.log
    Check log file /opt/app/soalb_domain/servers/soalb_server1/logs/soalb_server1.log
            at oracle.ohs.plugin.nodemanager.OhsProcessManagementPlugin$ProcessImpl.buildIoException(Unknown Source)
            at oracle.ohs.plugin.nodemanager.OhsProcessManagementPlugin$ProcessImpl.start(Unknown Source)
            at weblogic.nodemanager.server.DecoratedSystemComponentManager$DecoratedProcess.start(DecoratedSystemComponentManager.java:129)
            at weblogic.nodemanager.server.ServerMonitor.startProcess(ServerMonitor.java:441)
            at weblogic.nodemanager.server.ServerMonitor.runMonitor(ServerMonitor.java:406)
            at weblogic.nodemanager.server.ServerMonitor.run(ServerMonitor.java:295)
            at java.lang.Thread.run(Thread.java:744)
    ohs_nm.log:
    <2015-05-04 11:48:53> <INFO> <OHS-0> <The server 'soalb_server1' with process id 18672 is no longer alive; waiting for the process to die.>
    <2015-05-04 11:48:53> <INFO> <OHS-0> <Server failed so attempting to restart (restart count = 1)>
    <2015-05-04 11:48:53> <INFO> <OHS-4018> <Starting server soalb_server1>
    <2015-05-04 11:48:53> <INFO> <OHS-0> <Running /opt/app/ohs12c/wlserver/../ohs/bin/httpd.sh httpd.worker -k start -f /opt/app/soalb_domain/config/fmwconfig/components/OHS/instances/soalb_server1/httpd.conf>
    <2015-05-04 11:48:53> <INFO> <OHS-0> <[Mon May 04 11:48:53 2015] [warn] Errors will be logged into /opt/app/soalb_domain/servers/soalb_server1/logs/soalb_server1.log>
    <2015-05-04 11:48:54> <INFO> <OHS-0> </opt/app/ohs12c/wlserver/../ohs/bin/httpd.sh httpd.worker -k start -f /opt/app/soalb_domain/config/fmwconfig/components/OHS/instances/soalb_server1/httpd.conf: exit status = 1>
    <2015-05-04 11:48:54> <INFO> <OHS-4005> <Check the instance log file for more information: /opt/app/soalb_domain/servers/soalb_server1/logs/soalb_server1.log>
    <2015-05-04 11:48:54> <SEVERE> <OHS-0> <Failed to start the server soalb_server1>
    <2015-05-04 11:48:54> <SEVERE> <OHS-0> <Unexpected error while monitoring server>
    Node Manager properties:
    #Wed Apr 29 18:31:26 CEST 2015
    #Node manager properties
    #Wed Apr 29 17:18:21 CEST 2015
    DomainsFile=/opt/app/soalb_domain/nodemanager/nodemanager.domains
    LogLimit=0
    PropertiesVersion=12.1.3
    AuthenticationEnabled=true
    NodeManagerHome=/opt/app/soalb_domain/nodemanager
    JavaHome=/opt/app/jdk1.7.0_79
    LogLevel=INFO
    DomainsFileEnabled=true
    StartScriptName=startWebLogic.sh
    ListenAddress=localhost
    NativeVersionEnabled=true
    ListenPort=5556
    LogToStderr=true
    SecureListener=true
    LogCount=1
    StopScriptEnabled=false
    QuitEnabled=false
    LogAppend=true
    StateCheckInterval=5000
    CrashRecoveryEnabled=true
    StartScriptEnabled=true
    LogFile=/opt/app/soalb_domain/nodemanager/nodemanager.log
    LogFormatter=weblogic.nodemanager.server.LogFormatter
    ListenBacklog=50
    Startup properties:
    #SSLArguments=-Dweblogic.security.SSL.ignoreHostnameVerification\=false -Dweblogic.ReverseDNSAllowed\=false
    RestartMax=2
    RestartDelaySeconds=5
    FileTimeSpan=24
    RestartInterval=3600
    FileTimeSpanFactor=3600000
    RotatedFileCount=7
    RotationType=bySize
    #AdminURL=http\://192.168.0.224\:7001
    NumberOfFilesLimited=true
    AutoRestart=true
    RotationTimeStart=00\:00
    FileSizeKB=500
    Regards,
    András

    To deploy your FMX you need AS 10.1.2 Forms installed, and then you can use AS control or Forms server configuration file.
    For more information regarding FMX deployment, refer to http://download.oracle.com/docs/cd/B14099_19/web.1012/b14032/toc.htm
    Regards,
    Preet

  • Using Oracle as an IP Address Managment Database

    Can an Oracle database be setup to document and manage IP
    Adresses. Our Software team built a database for my group to
    document addresses but, it does not perform any math features
    based on subnet mask. Any suggetions on where to look for IP
    Address Database creation with an Oracle database?

    Dear Stefan
    (Please send the King of Iceland my regards)
    We have just undertaken a similar project - but in reverse - i.e. synchronising an LDAP server from Oracle.
    Our challenge was a little simpler in that we could use triggers to instigate an LDAP call on update/delete/insert.
    We originally tried using the Oracle JVM in conjunction with the Netscape's LDAP JSDK, but this proved too flakey, and we have reverted to calling an extproc which inturn calls some java code to update LDAP.
    Working the other way would be more complex and I'm not sure how you could get LDAP to invoke a command to update Oracle.
    However, if you managed the process from within Oracle you could maybe use LDAP groups to maintain a list of those users that were in sync, and those that required synchronising.
    Good luck
    Andrew

  • Is oracle OODBMS (Object Oriented database management system)?

    Hello, All
    Is oracle OODBMS (Object Oriented database management system)? and if yes, please explain.
    I have query in my mind so, I just posted here.
    Regards,
    Rahul
    Edited by: Rahul K. Thakar on Nov 3, 2010 12:03 PM
    Edited by: Rahul K. Thakar on Nov 3, 2010 12:04 PM

    I believe the precise answer is that Oracle is ORDBMS (Object-Relational DBMS).For a brief period in time Oracle Corporation offered a product called Object Oriented Oracle (OOO).
    It was such a wonderous product that it was buried in the trash can of history when it did neither task very well.

  • Setting heap size through oracleAS 10.1.3 enterprise manager

    Hi All,
    Can any body pls tell me how we can set java heap size through oracleAS 10.1.3 enterprise manager
    Best Regards
    Girish Tandel

    hi...
    Yes, we can set the heap size in opmn.xml file in java-options.... But this is not the good practice to mannualy edit server xml files. In OracleAS 10.1.2 we can set the same through OEM. But i am not able to set using oem in oracleas 10.1.3
    Best Regards
    Girish

  • Oracle VM 2.2 Nic bonding

    Hi everybody,
    I want to set NIC bonding on my VM 2.2 server. How does NIC bonding work? Also would I have to do any setup on my switch? Thank you to anyone who can help me understand.

    Sean314 wrote:
    I want to set NIC bonding on my VM 2.2 server. How does NIC bonding work? Also would I have to do any setup on my switch? Thank you to anyone who can help me understand.There is a great document on the Oracle Wiki for this: [ Oracle VM Server Configuration- bonded and trunked network interfaces|http://wiki.oracle.com/page/Oracle+VM+Server+Configuration-+bonded+and+trunked+network+interfaces].

  • Oracle VM and Oracle VM Template for Enterprise Manager Cloud Control 12c M

    Hello!
    After installation of *"Oracle VM 3.1.1 Media Pack v1 for x86_64 (64 bit)"* to bare hardware
    can I install Oracle VM Template for Enterprise Manager Cloud Control 12c Media Pack ?
    Is it the wrong plan ?
    What to do if I need to set VLAN №1 ? (according note of installer I have to choose number between 2 and 4094 )
    Thanks and regards,
    Pavel
    Edited by: Pavel on Jul 30, 2012 5:01 AM

    Yes, you can install Oracle VM Manager, create a server pool with the one parent Oracle VM server in it, and then deploy the Oracle VM template in the pool. Once EM VM is up and running, you can register the same Oracle VM Manager with EM, to manage the pool.
    In general, it is not recommended that you use the OVM server backend directly. But for bootstrapping the EM environment, you can also try the following:
    Download the OVM Template on the Oracle VM server. From the OVM server terminal itself you can do "xm create" to spin a new virtual machine using the Oracle VM teamplate. Once the VM comes up, VNC into the VM and configure the EM OMS and agent.

  • Oracle VM Template for Enterprise Manager Cloud Control 12c Media Pack v1

    Hello
    I download Oracle VM Template for Enterprise Manager Cloud Control 12c Media Pack v1
    I was checking the structure and I found this
    [oracle@em12c bin]$ cd /u01
    [oracle@em12c u01]$ ls
    app lost+found OracleHomes oracle-template.sh scripts
    [oracle@em12c u01]$ cd OracleHomes/
    [oracle@em12c OracleHomes]$ ls
    checkpoints db11g Middleware
    [oracle@em12c OracleHomes]$ pwd
    /u01/OracleHomes
    [oracle@em12c OracleHomes]$ cd db11g/
    [oracle@em12c db11g]$ ls
    admin cfgtoollogs checkpoints diag fast_recovery_area oradata product
    [oracle@em12c db11g]$ cd ..
    [oracle@em12c OracleHomes]$ cd Middleware/
    [oracle@em12c Middleware]$ ls
    [oracle@em12c Middleware]$
    The Database has all binaries but Middleware is empty
    Same body knows about this issue.
    Regards

    Yes, you can install Oracle VM Manager, create a server pool with the one parent Oracle VM server in it, and then deploy the Oracle VM template in the pool. Once EM VM is up and running, you can register the same Oracle VM Manager with EM, to manage the pool.
    In general, it is not recommended that you use the OVM server backend directly. But for bootstrapping the EM environment, you can also try the following:
    Download the OVM Template on the Oracle VM server. From the OVM server terminal itself you can do "xm create" to spin a new virtual machine using the Oracle VM teamplate. Once the VM comes up, VNC into the VM and configure the EM OMS and agent.

  • Nic Bonding in OVM Server

    Hi
    I am setting up a OVM environment where I want to implement NIC bonding. I want to bond eth1 and eth3, the IP address are showing against xenbr1 and xenbr3. Please let me know the steps of doing this.
    Thanks

    itsakc wrote:
    I am setting up a OVM environment where I want to implement NIC bonding. I want to bond eth1 and eth3, the IP address are showing against xenbr1 and xenbr3. Please let me know the steps of doing this.The Underground Oracle VM Manual has an entire chapter on this: http://itnewscast.com/chapter-7-oracle-vm-networking-8021q

Maybe you are looking for