Multicast in Linux

Hi,
          Does anyone know how to add an IP address to a multicast address in Linux?
          Do I have to use the "route" command?
          Thanks,
          Mo
          

I'm not sure what you are trying to do. You shouldn't need to do anything
          special with the routing tables to enable multicast...
          Mohammad Khan wrote:
          > Hi,
          >
          > Does anyone know how to add an IP address to a multicast address in Linux?
          > Do I have to use the "route" command?
          >
          > Thanks,
          > Mo
          

Similar Messages

  • How do i enable multicast in LINUX/JDS?

    hello all,
    as soon as i execute this code i get "NoSuchDevice" error only in linux/jds and it works perfectly on windows..
    MulticastSocket ms = null;
                try
                    ms = new MulticastSocket ();
                    ms.joinGroup (ia);
                    ms.send (dp);
                    System.out.println ("Multicast.multicastSend:"+transmit);
                catch (SocketException ex)
                    System.err.println (ex);
                catch (IOException ex)
                    System.err.println (ex);
                }             i ran the same code in SuSe 9.3 also;same error here also;
    i also executed this command "#iptables -F" and "#ifconfig eth0 MULTICAST -allmulti".its not working help me please by enumerating the all the steps completely to make multicast work.
    thanks

    hello all,
    as soon as i execute this code i get "NoSuchDevice" error only in linux/jds and it works perfectly on windows..
    MulticastSocket ms = null;
                try
                    ms = new MulticastSocket ();
                    ms.joinGroup (ia);
                    ms.send (dp);
                    System.out.println ("Multicast.multicastSend:"+transmit);
                catch (SocketException ex)
                    System.err.println (ex);
                catch (IOException ex)
                    System.err.println (ex);
                }             i ran the same code in SuSe 9.3 also;same error here also;
    i also executed this command "#iptables -F" and "#ifconfig eth0 MULTICAST -allmulti".its not working help me please by enumerating the all the steps completely to make multicast work.
    thanks

  • Multicast on linux

    I can't understand why I can't receive multicast messages if I use MulticastSocket(SocketAddress addr) costructor instead of MulticastSocket(int port) costructor. This works fine in Windows while it doesn't works on Linux (Mandrake 9.1) or FreeBSD (5.0).
    I will be able to bind my process to specified address and to join a group to receive multicast messages too.
    Someone know the reason?

    No, the Address is correct. This code runs perfectly under windows Me and runs also on Linux but only if the address is 0.0.0.0 or the multicast address (in this case 225.0.0.1)
    Windows (and I think that is rigth) doesn't allow to assign multicast addresses (224.0.0.0-239.255.255.255) while Linux does.
    import java.net.*;
    public class receiver
         public static void main(String args[])
             try {
                  if (args.length!=2){System.out.println("Usage: receiver ip-bind port");}
                  int port =new Integer(args[1]).intValue();
                  InetAddress bind_ip=InetAddress.getByName(args[0]);
                   SocketAddress sa=new InetSocketAddress(bind_ip,port);
                  MulticastSocket s=new MulticastSocket(sa);  //instead of new MulticastSocket(port);
                   System.out.println(s.getLocalSocketAddress());
                   InetAddress group=InetAddress.getByName("225.0.0.1");
                   s.joinGroup(group);
                   DatagramPacket p=new DatagramPacket(new byte[512],512);
                    s.receive(p);
        }catch (Exception ex){System.out.println("Eccezione:"+ex.getMessage());ex.printStackTrace();}
        }//end main
    }(To run it on Linux)
    I have to compile the routing table adding
    route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
    the following code is the sender and should be correct.
    import java.net.*;
    public class multicast
         public static void main(String args[])
             try {
                  if (args.length!=2){System.out.println("Uso: multicast ip-bind porta");System.exit(1);}
                  int port =new Integer(args[1]).intValue();
                  InetAddress bind_addr=InetAddress.getByName(args[0]);
                  InetAddress group=InetAddress.getByName("225.0.0.1");
                   SocketAddress sa=new InetSocketAddress(bind_addr,port);
                   MulticastSocket s=new MulticastSocket(sa);
                  String message="Good bye!";
                   SocketAddress groupChannel=new InetSocketAddress(group,port);
                  DatagramPacket p=new DatagramPacket(message.getBytes(),message.length(),groupChannel);
                  s.send(p);
             }catch (Exception ex){System.out.println("Eccezione:"+ex.getMessage());ex.printStackTrace();}         
        }//end main
    }

  • Multicast from linux server

    Hi,
    I'm testing multicast from my oes linux sp2 zdm7sp1
    starting multicast session from the command line works ok
    ( /opt/novell/zenworks/preboot/bin/novell-zmgmcast -mcast SESSION1 ....)
    but trying to start it from C1, going to the server object, multicast
    session, add, specifying my filename, nothing happens on the client...
    can't join the multicast session.....
    troubleshooting steps ? bug ?
    Marc

    On Mon, 23 Oct 2006 21:23:27 GMT, Marc-Andre Vallee wrote:
    > After checking some tids and docs, I found that to image on multicast
    > from C1, we need to use img auto, not img session SES1
    yes.. the img s SES1 would only come in if you would setup the multicast
    session manually on the server itself..
    Marcus Breiden
    If you are asked to email me information please change -- to - in my e-mail
    address.
    The content of this mail is my private and personal opinion.
    http://www.edu-magic.net

  • Does MulticastSocket API start the multicast if it is disabled in Linux

    Basically I am running a application which uses multicast in Linux environment.I am using MulticastSocket API to invoke my multicast.
    Now SLES10 SP2 if I disable multicast using ifconfig eth0 -multicast also when call "MulticastSocket " API it is appearing to be starting the multicast.
    Can any one confirm will MulticastSocket API start the multicast if it is not enabled.

    Note: This thread was originally posted in the [Java Secure Socket Extension  (JSSE)|http://forums.sun.com/forum.jspa?forumID=2] forum, but moved to this forum for closer topic alignment.

  • Coherence Multicast test fails on rPath linux

    Hi,
    I am trying to run coherence on rPath Linux, when i run the multicast-test.sh it fails with the following error - "java.io.IOException: Operation not permitted".
    Am I missing out on any config setting?
    Configuring multicast socket...
    Starting listener...
    Mon Dec 14 13:47:00 UTC 2009: Sent packet 1.
    2009-12-14 13:47:00.669/0.821 Oracle Coherence GE 3.5.2/463 <Error> (thread=main, member=n/a): An exception occurred while executing the MulticastTest:
    2009-12-14 13:47:00.670/0.822 Oracle Coherence GE 3.5.2/463 <Error> (thread=main, member=n/a): (Wrapped) java.io.IOException: Operation not permitted
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.net.MulticastTest.run(MulticastTest.java:303)
    at com.tangosol.net.MulticastTest.main(MulticastTest.java:126)
    Caused by: java.io.IOException: Operation not permitted
    at java.net.PlainDatagramSocketImpl.send(Native Method)
    at java.net.DatagramSocket.send(Unknown Source)
    at com.tangosol.net.MulticastTest.run(MulticastTest.java:295)
    ... 1 more
    2009-12-14 13:47:00.670/0.822 Oracle Coherence GE 3.5.2/463 <Error> (thread=main, member=n/a):
    Exiting MulticastTest
    Thanks,
    Prakash

    Thanks.
    I found out the issue. It because of IP Tables blocking off multicast packets.
    Once I stopped IP Tables everything worked fine. Looks like I will have to modify the rules.

  • Multicast Proble under Linux

    Hi,
    I think here may be a bug in jdk6 . There is a problem with Multicast sockets. If i have two nic and open two Multicast socket (set network interface and join on proper interface ) both of them under Windows send multicast packets . Unfortunetly under linux the same code doesn't work. Packets are always send only via the same and one interface. Why ? Writicng conde in c under linux everything works fine so there is no problem with linux confguration .
    How to report a bug or can anyone help me to resolve it

    defaultIP = "239.0.0.1" port=1111
    public void setInterface(NetworkInterface i){
    try {
    logger.info("MulticastAnnounce setting interface");
    this.address = new InetSocketAddress(defaultIP,port);
    this.socket = new MulticastSocket(port);
    this.socket.setNetworkInterface(i);
    this.socket.joinGroup(this.address,i);
    logger.info("MulticastSocket Annoucer success");
    this.socket = socket;
    }catch(Exception e){
    logger.error("Cannot set network Interface:"+e.toString());
    Iterator it = networkInterfacesList.iterator();
    int i = 0;
    while(it.hasNext()){
    MulticastCommunicationChannel multicastChannel = new MulticastCommunicationChannel();
    NetworkInterface netif = (NetworkInterface)it.next();
    multicastChannel.setMessageListener(this.messageHandler);
    multicastChannel.setMessageParser(this.messageParser);
    multicastChannel.setInterface(netif);
    i++;
    this.multicastChannels.add(multicastChannel);
    logger.info("Staring multicast Channel");
    Thread t = new Thread(multicastChannel,"Annoucer MulticastChannel interface:"+netif.getName());
    t.start();
    }

  • I am using Oracle Linux 6.0 as OS and i am using vertical clustering but the multicast address is not connecting in my cluster?

    <Oct 28, 2013 10:22:36 PM IST> <Error> <Cluster> <BEA-000109> <An error occurred while sending multicast message: java.io.IOException: Invalid argument
    java.io.IOException: Invalid argument
            at java.net.PlainDatagramSocketImpl.send(Native Method)
            at java.net.DatagramSocket.send(DatagramSocket.java:625)
            at weblogic.cluster.MulticastFragmentSocket.sendThrottled(MulticastFragmentSocket.java:206)
            at weblogic.cluster.MulticastFragmentSocket.send(MulticastFragmentSocket.java:158)
            at weblogic.cluster.FragmentSocketWrapper.send(FragmentSocketWrapper.java:91)
            at weblogic.cluster.MulticastSender.fragmentAndSend(MulticastSender.java:395)
            at weblogic.cluster.MulticastSender.send(MulticastSender.java:178)
            at weblogic.cluster.MulticastManager.timerExpired(MulticastManager.java:766)
            at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Oct 28, 2013 10:22:36 PM IST> <Error> <Cluster> <BEA-000110> <Multicast socket receive error: java.net.SocketException: Socket closed
    java.net.SocketException: Socket closed
            at java.net.PlainDatagramSocketImpl.receive0(Native Method)
            at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:145)
            at java.net.DatagramSocket.receive(DatagramSocket.java:725)
            at weblogic.cluster.MulticastFragmentSocket.receive(MulticastFragmentSocket.java:239)
            at weblogic.cluster.FragmentSocketWrapper.receive(FragmentSocketWrapper.java:98)
            at weblogic.cluster.MulticastManager.run(MulticastManager.java:466)
            at java.lang.Thread.run(Thread.java:662)
    >
    <Oct 28, 2013 10:22:46 PM IST> <Error> <Cluster> <BEA-000109> <An error occurred while sending multicast message: java.io.IOException: Invalid argument
    java.io.IOException: Invalid argument
            at java.net.PlainDatagramSocketImpl.send(Native Method)
            at java.net.DatagramSocket.send(DatagramSocket.java:625)
            at weblogic.cluster.MulticastFragmentSocket.sendThrottled(MulticastFragmentSocket.java:206)
            at weblogic.cluster.MulticastFragmentSocket.send(MulticastFragmentSocket.java:158)
            at weblogic.cluster.FragmentSocketWrapper.send(FragmentSocketWrapper.java:91)
            at weblogic.cluster.MulticastSender.fragmentAndSend(MulticastSender.java:395)
            at weblogic.cluster.MulticastSender.send(MulticastSender.java:178)
            at weblogic.cluster.MulticastManager.timerExpired(MulticastManager.java:766)
            at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    <Oct 28, 2013 10:22:56 PM IST> <Error> <Cluster> <BEA-000109> <An error occurred while sending multicast message: java.io.IOException: Invalid argument
    java.io.IOException: Invalid argument
            at java.net.PlainDatagramSocketImpl.send(Native Method)
            at java.net.DatagramSocket.send(DatagramSocket.java:625)
            at weblogic.cluster.MulticastFragmentSocket.sendThrottled(MulticastFragmentSocket.java:206)
            at weblogic.cluster.MulticastFragmentSocket.send(MulticastFragmentSocket.java:158)
            at weblogic.cluster.FragmentSocketWrapper.send(FragmentSocketWrapper.java:91)
            at weblogic.cluster.MulticastSender.fragmentAndSend(MulticastSender.java:395)
            at weblogic.cluster.MulticastSender.send(MulticastSender.java:178)
            at weblogic.cluster.MulticastManager.timerExpired(MulticastManager.java:766)
            at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Oct 28, 2013 10:23:06 PM IST> <Error> <Cluster> <BEA-000110> <Multicast socket receive error: java.net.SocketException: Socket closed
    java.net.SocketException: Socket closed
            at java.net.PlainDatagramSocketImpl.receive0(Native Method)
            at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:145)
            at java.net.DatagramSocket.receive(DatagramSocket.java:725)
            at weblogic.cluster.MulticastFragmentSocket.receive(MulticastFragmentSocket.java:239)
            at weblogic.cluster.FragmentSocketWrapper.receive(FragmentSocketWrapper.java:98)
            at weblogic.cluster.MulticastManager.run(MulticastManager.java:466)
            at java.lang.Thread.run(Thread.java:662)
    >
    <Oct 28, 2013 10:23:06 PM IST> <Error> <Cluster> <BEA-000109> <An error occurred while sending multicast message: java.io.IOException: Invalid argument
    java.io.IOException: Invalid argument
            at java.net.PlainDatagramSocketImpl.send(Native Method)
            at java.net.DatagramSocket.send(DatagramSocket.java:625)
            at weblogic.cluster.MulticastFragmentSocket.sendThrottled(MulticastFragmentSocket.java:206)
            at weblogic.cluster.MulticastFragmentSocket.send(MulticastFragmentSocket.java:158)
            at weblogic.cluster.FragmentSocketWrapper.send(FragmentSocketWrapper.java:91)
            at weblogic.cluster.MulticastSender.fragmentAndSend(MulticastSender.java:395)
            at weblogic.cluster.MulticastSender.send(MulticastSender.java:178)
            at weblogic.cluster.MulticastManager.timerExpired(MulticastManager.java:766)
            at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Oct 28, 2013 10:23:06 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Oct 28, 2013 10:23:07 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>

    -Djava.net.preferIPv4Stack=true for JAVA_OPTION in {DOMAIN}/bin/setDoaminEnv.sh  used this option but the issue still is their and in OS multicast is also enabled .

  • Client unable to connect to Oracle 10g on linux

    I have installed Oracle 10g on an Intel box running RedHat AS 3.0. The database installation was succesful but I am unable to connect to it from the client on my laptop running Oracle 10g client and Winfdows XP Pro. The server ip is 192.168.1.10 and I can ping it from the client:
    C:\>ping attila.n3kje.net
    Pinging attila.n3kje.net [192.168.1.10] with 32 bytes of data:
    Reply from 192.168.1.10: bytes=32 time<1ms TTL=64
    Reply from 192.168.1.10: bytes=32 time<1ms TTL=64
    Reply from 192.168.1.10: bytes=32 time<1ms TTL=64
    Reply from 192.168.1.10: bytes=32 time<1ms TTL=64
    Ping statistics for 192.168.1.10:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    Here is some info about the 2 environments:
    [oracle@attila bin]$ uname -a
    Linux attila.n3kje.net 2.4.21-9.0.1.ELsmp #1 SMP Mon Feb 9 22:26:51 EST 2004 i686 i686 i386 GNU/Linux
    Server hosts file
    ======================================================
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1 attila.n3kje.net attila localhost.localdomain localhost
    hostname output
    ======================================================
    [root@attila root]# hostname
    attila.n3kje.net
    ifconfig output
    =======================================================
    [root@attila root]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:C0:9F:1D:0C:C8
    inet addr:192.168.1.10 Bcast:192.168.1.255 Mask:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:13772171 errors:0 dropped:0 overruns:0 frame:0
    TX packets:13748842 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1269613311 (1210.7 Mb) TX bytes:4065314800 (3876.9 Mb)
    Interrupt:16 Base address:0xecc0 Memory:fe100000-fe120000
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:5513840 errors:0 dropped:0 overruns:0 frame:0
    TX packets:5513840 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:865454291 (825.3 Mb) TX bytes:865454291 (825.3 Mb)
    Client TNSNAMES.ORA
    ======================================================
    # tnsnames.ora Network Configuration File: C:\Oracle\product\10.1.0\Client_1\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORACLE10G =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.10)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = DEV10G)
    PRDSRR =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.10)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = dev10g)
    Client SQLNET.ORA
    ======================================================
    # sqlnet.ora Network Configuration File: C:\Oracle\product\10.1.0\Client_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (EZCONNECT, TNSNAMES)
    Server TNSNAMES.ORA
    ======================================================
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/n
    etwork/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    DEV10G =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = attila.n3kje.net)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = DEV10G)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    Server LISTENER.ORA
    ======================================================
    # listener.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/n
    etwork/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/10.1.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = attila.n3kje.net)(PORT = 1521))
    Results from the TNSPING command issued at the client
    =================================================================
    C:\>tnsping prdsrr
    TNS Ping Utility for 32-bit Windows: Version 10.1.0.2.0 - Production on 02-APR-2
    004 09:26:11
    Copyright (c) 1997, 2003, Oracle. All rights reserved.
    Used parameter files:
    C:\Oracle\product\10.1.0\Client_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = 192.168.1.10)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = dev10g)))
    TNS-12541: TNS:no listener
    C:\>tnsping oracle10g
    TNS Ping Utility for 32-bit Windows: Version 10.1.0.2.0 - Production on 02-APR-2
    004 09:26:38
    Copyright (c) 1997, 2003, Oracle. All rights reserved.
    Used parameter files:
    C:\Oracle\product\10.1.0\Client_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = 192.168.1.10)(PORT = 1521))) (CONNECT_DATA = (SERVER = DEDICATED) (SERVI
    CE_NAME = DEV10G)))
    TNS-12541: TNS:no listener
    C:\>
    Trying to connect to the database from the server
    ==================================================
    [oracle@attila bin]$ echo $ORACLE_SID
    DEV10G
    [oracle@attila bin]$ ./sqlplus system
    SQL*Plus: Release 10.1.0.2.0 - Production on Fri Apr 2 12:22:29 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    [oracle@attila bin]$ ./sqlplus system@dev10g
    SQL*Plus: Release 10.1.0.2.0 - Production on Fri Apr 2 12:23:09 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified
    tnsping issued at the server
    ======================================================
    [oracle@attila bin]$ tnsping dev10g
    TNS Ping Utility for Linux: Version 10.1.0.2.0 - Production on 02-APR-2004 12:3
    :44
    Copyright (c) 1997, 2003, Oracle. All rights reserved.
    Used parameter files:
    /u01/app/oracle/product/10.1.0/db_1/network/admin/sqlnet.ora
    TNS-03505: Failed to resolve name
    What am I doing wrong?
    Thanks
    Renato

    Ok, I was able to succesfully connect to the database from the client. I made the following changes to the sqlnet.ora, tnsnames and listener. Here are the changes I made:
    sqlnet.ora
    ==============================
    # SQLNET.ORA Network Configuration File: /u01/app/oracle/product/9.2.0.1.0/netwo
    rk/admin/sqlnet.ora
    # Generated by Oracle configuration tools.
    # NAMES.DIRECTORY_PATH= (EZCONNECT)
    NAMES.DIRECTORY_PATH= (EXCONNECT, TNSNAMES, ONAMES, HOSTNAME)
    listener.ora
    ==============================
    # listener.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/n
    etwork/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/10.1.0/db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = DEV10G)
    (ORACLE_HOME = /u01/app/oracle/product/10.1.0/db_1)
    (SID_NAME = DEV10G)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.10)(PORT = 1521))
    tnsnames.ora
    ===========================================
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/n
    etwork/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    DEV10G =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.10)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = DEV10G)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    Here is the new problem!
    I start the dbconsole using the folowing command:
    [oracle@attila bin]$ ./emctl start dbconsole
    TZ set to US/Eastern
    Oracle Enterprise Manager 10g Database Control Release 10.1.0.2.0
    Copyright (c) 1996, 2004 Oracle Corporation. All rights reserved.
    http://attila.n3kje.net:5500/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control ........................
    ... started.
    Logs are generated in directory /u01/app/oracle/product/10.1.0/db_1/attila.n3kje
    .net_DEV10G/sysman/log
    When I try and access it from the client I get the following error message:
    "The database status is currently unavailable. It is possible that the database is in mount or nomount state. Click 'Startup' to obtain the current status and open the database. If the database cannot be opened, click 'Perform Recovery' to perform an appropriate recovery operation."
    What am I doing wrong this time?
    Your help would be greatly appreciated
    Thanks
    Renato

  • Oracle10g Installation problem on Linux with DHCP IP

    Hi,
    I am new to Oracle Products, I have tried to install Oracle 10G on Linux with DHCP IP.
    I got the following warning while installing even though I have loopback interface configured.
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned public IP addresses. However, the primary network interface on the system should be configured with a static IP address in order for the Oracle Software to function properly. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    Please help me in resolving this problem or Can I ignore this message?
    My Server Configurations:
    [root@SQAESMRH5 Oracle_Install_Errors]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:12:3F:79:FA:2C
    inet addr:10.10.121.61 Bcast:10.10.121.2 Mask:255.255.255.0
    inet6 addr: fe80::212:3fff:fe79:fa2c/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:20751998 errors:0 dropped:0 overruns:0 frame:0
    TX packets:19278549 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:2150795393 (2.0 GiB) TX bytes:438232502 (417.9 MiB)
    Interrupt:177
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:12383146 errors:0 dropped:0 overruns:0 frame:0
    TX packets:12383146 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1965045834 (1.8 GiB) TX bytes:1965045834 (1.8 GiB)
    [root@SQAESMRH5 Oracle_Install_Errors]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    #::1 localhost6.localdomain6 localhost6
    127.0.0.1 localhost.localdomain localhost
    #::1 localhost6.localdomain6 localhost6
    [root@SQAESMRH5 Oracle_Install_Errors]#

    This warning means it is not recommended to install Oracle 10g on a DHCP assigned IP address. It could work, but you won't be able to configure Enterprise Manager, since this tool requires a fixed IP address. If possible, have the IP address fixed.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • Sap Netweaver 4.0 testdrive on linux - impossible to connect from sapgui

    Hi guys,
    i've just finished to install the NW40 testdrive on a linux box, based on Redhat 9.0 distro (as requested by the equirements). At the end of installation, i have two boxes
    One box with winxp sp1 called Darkstar with i.p. 192.168.100.1 and Subnet mask 255.255.0.0
    The second box (with linux and NW40) called Darkmoon (prob. i was too bored to think a completly different name ) with i.p. 192.168.100.15 and subnet mask 255.255.0.0
    The /etc/hosts file of the linux box contain these entries :
    127.0.0.1     Darkmoon
    192.168.100.15     Darkmoon.locadomain.ext
    195.155.155.1     nw4host
    The last line was taked from other posts found in SDN forum. I followed all the install steps and the db and the instances going-up very well, without any problem.
    If i ping the two boxes, they reply each-others (from winxp to linux and vice-versa).
    The "hostname" command in the linux box, return only "Darkmoon" as request by installation steps.
    Now the problem.
    On the winxp box i have installed sapgui 6.20. In it, I've created an entry with these information:
    Description : Linux box
    Application server : 192.168.100.15
    System number : 00
    When i try to connect with double clink on that entry, i have the following error :
    Partner not reached (host 192.168.100.15, service sapdp00)
    Component NI (Network interface)
    Release 6.20
    Ver 36
    Return code -10
    System call SO_ERROR
    Error text : WSACONNREFUSED
    Seems the boxes don't see between them.
    Could be a hosts file problem on linux box???
    Someone of u could give me some help ??
    Could be very unhappy couln't use NW40 just for a little error.
    Thx a lot for all your hints and suggestions
    Andrea

    Hi Gregor,
    thx a lot for your interest in my problem.
    The firts answer is yes, i've started the instance with the command "startsap", and the instance comes up.
    I can see the processed with ps -ef .
    Here the log of ifconfig :
    eth0      Link encap:Ethernet  HWaddr 00:0C:29:5E:D9:84 
              inet addr:192.168.100.15  Bcast:192.168.255.255        Mask:255.255.0.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:4525 errors:0 dropped:0 overruns:0 frame:0
              TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:336907 (329.0 Kb)  TX bytes:168 (168.0 b)
              Interrupt:10 Base address:0x1080
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:10 errors:0 dropped:0 overruns:0 frame:0
              TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:700 (700.0 b)  TX bytes:700 (700.0 b)
    Another thing .
    The command traceroute in each box works, and shows the right path.
    Thx a lot for every information u would give me .
    Andrea

  • A follow-up Multicasting question (brh0001?)

    But does the fact that I can't use my LocalHost to multicast internaly, mean that I must be connected to the web throughout the simulation??
    (Otherwise I got "Network unreachable".)
    Mustn't there be some alternative?
    Thanx.

    Yep, I am trying to run the whole process on the same machine.
    In fact it's the first project I run on LINUX and I haven't got the right modem for net connection from there...
    Thanx-a -lot, anyway.

  • Error during Oracle installation in Oracle Enterprise Linux

    Hi All,
    I was trying to install Oracle 10g in Oracle Enterprise Linux, and I'm getting the following error when I give the command *./runInstall*.
    [oracle@localhost database]$ ./runInstaller -responseFile /home/oracle/database/response/enterprise1.rsp -nowelcome
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-04-05_12-58-11AM. Please wait ...[oracle@localhost database]$ Oracle Universal Installer, Version 10.2.0.1.0 Production
    Copyright (C) 1999, 2005, Oracle. All rights reserved.
    Can't connect to X11 window server using '127.0.0.1:0.0' as the value of the DISPLAY variable.
    127.0.0.1:0.0
    127.0.0.1:0.0
    OUI-10025:Unable to start an interactive install session because of the following error:Can't connect to X11 window server using '127.0.0.1:0.0' as the value of the DISPLAY variable. The DISPLAY environment variable should be set to <hostname or IP address>:<screen>, where the <screen> is usually '0.0'.
    OUI-10026:Depending on the Unix Shell, you can use one of the following commands as examples to set the DISPLAY environment variable:
    - For csh: % setenv DISPLAY 192.168.1.128:0.0
    - For sh, ksh and bash: $ DISPLAY=192.168.1.128:0.0; export DISPLAY
    Use the following command to see what shell is being used:
    echo $SHELL
    Use the following command to view the current DISPLAY environment variable setting:
    echo $DISPLAY
    - Make sure that client users are authorized to connect to the X Server.
    OUI-10027:To enable client users to access the X Server, open an xterm, dtterm or xconsole as the user that started the session and type the following command:
    % xhost +
    To test that the DISPLAY environment variable is set correctly, run a X11 based program that comes with the native operating system such as 'xclock':
    % <full path to xclock... see below>
    If you are not able to run xclock successfully, please refer to your PC-X Server or OS vendor for further assistance.
    Typical path for 'xclock': '/usr/X11R6/bin/xclock'
    I have tried to set the DISPLAY variable to my IP address, but it still gives the same issue.
    Please find the logs for the same:
    [oracle@localhost database]$ /sbin/ifconfig
    eth0 Link encap:Ethernet HWaddr 00:0C:29:95:3B:4F
    inet addr:192.168.64.128 Bcast:192.168.64.255 Mask:255.255.255.0
    inet6 addr: fe80::20c:29ff:fe95:3b4f/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:532694 errors:0 dropped:0 overruns:0 frame:0
    TX packets:288167 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:792077163 (755.3 MiB) TX bytes:16147337 (15.3 MiB)
    Interrupt:193 Base address:0x2024
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:3280 errors:0 dropped:0 overruns:0 frame:0
    TX packets:3280 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1739143 (1.6 MiB) TX bytes:1739143 (1.6 MiB)
    [oracle@localhost database]$ export DISPLAY=192.168.64.128:0.0
    [oracle@localhost database]$ echo $DISPLAY
    192.168.64.128:0.0
    Please suggest on what can be done as this is the last step for the Oracle installation which I'm unable to complete.
    Let me know for any more details needed.
    Thanks
    Ravi
    Ph: +919583750774

    Hi,
    Thanks for the immediate response.
    Now I'm getting the following error:
    [oracle@scondw01 database]$ ./runInstaller -force -responseFile /u01/database/response/enterprise1.rsp -silent -nowelcome
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-04-05_09-10-03PM. Please wait ...[oracle@scondw01 database]$ Oracle Universal Installer, Version 10.2.0.1.0 Production
    Copyright (C) 1999, 2005, Oracle. All rights reserved.
    Unexpected Signal : 11 occurred at PC=0xB7C297CE
    Function=(null)
    Library=/tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.chgrp(Native Method)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.changeGroup(OiipgBootstrap.java:1206)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.writeInvLoc(OiipgBootstrap.java:900)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(OiipgBootstrap.java:408)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(OiicSessionInterfaceManager.java:400)
    at oracle.sysman.oii.oiic.OiicSilentInterfaceManager.doInvSetupOperations(OiicSilentInterfaceManager.java:679)
    at oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(OiicInvSetupWCCE.java:217)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
    at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
    at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
    at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:546)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:929)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:866)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 08:01 511751 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/bin/java
    08056000-08059000 rwxp 0000d000 08:01 511751 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/bin/java
    a4d43000-a4d4a000 r-xp 00000000 08:01 659354 /tmp/OraInstall2012-04-05_09-10-03PM/oui/lib/linux/liboraInstaller.so
    a4d4a000-a4d4b000 rwxp 00006000 08:01 659354 /tmp/OraInstall2012-04-05_09-10-03PM/oui/lib/linux/liboraInstaller.so
    a4d4b000-a4d88000 r-xs 00000000 08:01 659257 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/jewt4-nls.jar
    a4d88000-a4f2f000 r-xs 00000000 08:01 659256 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/jewt4.jar
    a4f2f000-a4f67000 r-xs 00000000 08:01 659275 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/OraPrereq.jar
    a4f67000-a5085000 r-xs 00000000 08:01 659274 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/classes12.jar
    a5085000-a508d000 r-xs 00000000 08:01 659272 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/swingaccess.jar
    a508d000-a50da000 r-xs 00000000 08:01 659255 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ewt3-nls.jar
    a50da000-a50e0000 r-xs 00000000 08:01 659273 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ewt3-swingaccess.jar
    a50e0000-a5365000 r-xs 00000000 08:01 659254 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ewt3.jar
    a5365000-a538c000 r-xs 00000000 08:01 659259 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/help4-nls.jar
    a538c000-a53f1000 r-xs 00000000 08:01 659258 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/help4.jar
    a53f1000-a54a6000 r-xs 00000000 08:01 659271 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/oracle_ice.jar
    a54a6000-a54c3000 r-xs 00000000 08:01 659269 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_zh_TW.jar
    a54c3000-a54e0000 r-xs 00000000 08:01 659268 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_zh_CN.jar
    a54e0000-a54fe000 r-xs 00000000 08:01 659267 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_pt_BR.jar
    a54fe000-a551b000 r-xs 00000000 08:01 659266 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_ko.jar
    a551b000-a5537000 r-xs 00000000 08:01 659265 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_ja.jar
    a5537000-a5554000 r-xs 00000000 08:01 659264 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_it.jar
    a5554000-a5571000 r-xs 00000000 08:01 659263 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_fr.jar
    a5571000-a558e000 r-xs 00000000 08:01 659262 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_es.jar
    a558e000-a55ad000 r-xs 00000000 08:01 659261 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_de.jar
    a55ad000-a55c9000 r-xs 00000000 08:01 659260 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp.jar
    a55c9000-a55ea000 r-xs 00000000 08:01 659270 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstImages.jar
    a55ea000-a55f0000 r-xs 00000000 08:01 659345 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ojmisc.jar
    a55f0000-a56ce000 r-xs 00000000 08:01 659342 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/emCfg.jar
    a56ce000-a56e1000 r-xs 00000000 08:01 659344 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/orai18n-mapping.jar
    a56e1000-a57e1000 r-xs 00000000 08:01 659343 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/orai18n-collation.jar
    a57e1000-a5866000 r-xs 00000000 08:01 659341 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/xml.jar
    a5866000-a5868000 r-xs 00000000 08:01 659349 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/OraInstallerNet.jar
    a5868000-a5876000 r-xs 00000000 08:01 659350 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/share.jar
    a5876000-a593d000 r-xs 00000000 08:01 659347 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/srvm.jar
    a593d000-a5a65000 r-xs 00000000 08:01 659346 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/xmlparserv2.jar
    a5a65000-a5a72000 r-xs 00000000 08:01 659351 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/oneclick.jar
    a5a72000-a5e0f000 r-xs 00000000 08:01 659348 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/OraInstaller.jar
    a5e0f000-a5e2b000 r-xs 00000000 08:01 642421 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/sunjce_provider.jar
    a5e2b000-a5ee6000 r-xs 00000000 08:01 642420 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/localedata.jar
    a5ee6000-a5ef3000 r-xs 00000000 08:01 642419 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/ldapsec.jar
    a5ef3000-a5ef6000 r-xs 00000000 08:01 642418 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/dnsns.jar
    a60fa000-a62fa000 r-xp 00000000 08:01 330503 /usr/lib/locale/locale-archive
    b5bfb000-b618a000 r-xs 00000000 08:01 511764 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/charsets.jar
    b618a000-b619b000 r-xs 00000000 08:01 511802 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/jce.jar
    b619b000-b6274000 r-xs 00000000 08:01 511803 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/jsse.jar
    b6274000-b628a000 r-xs 00000000 08:01 196225 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/sunrsasign.jar
    b62d4000-b79c2000 r-xs 00000000 08:01 511810 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/rt.jar
    b79c2000-b79d6000 r-xp 00000000 08:01 659151 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libzip.so
    b79d6000-b79d9000 rwxp 00013000 08:01 659151 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libzip.so
    b79d9000-b79f9000 r-xp 00000000 08:01 659136 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libjava.so
    b79f9000-b79fb000 rwxp 0001f000 08:01 659136 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libjava.so
    b79fb000-b7a0b000 r-xp 00000000 08:01 659150 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libverify.so
    b7a0b000-b7a0d000 rwxp 0000f000 08:01 659150 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libverify.so
    b7a0d000-b7a16000 r-xp 00000000 08:01 344676 /lib/libnss_files-2.3.4.so
    b7a16000-b7a17000 r-xp 00008000 08:01 344676 /lib/libnss_files-2.3.4.so
    b7a17000-b7a18000 rwxp 00009000 08:01 344676 /lib/libnss_files-2.3.4.so
    b7a1f000-b7a23000 rwxs 00000000 08:01 249425 /tmp/hsperfdata_oracle/5761
    b7a23000-b7a44000 r-xp 00000000 08:01 344698 /lib/tls/libm-2.3.4.so
    b7a44000-b7a45000 r-xp 00020000 08:01 344698 /lib/tls/libm-2.3.4.so
    b7a45000-b7a46000 rwxp 00021000 08:01 344698 /lib/tls/libm-2.3.4.so
    b7a46000-b7a58000 r-xp 00000000 08:01 344660 /lib/libnsl-2.3.4.so
    b7a58000-b7a59000 r-xp 00011000 08:01 344660 /lib/libnsl-2.3.4.so
    b7a59000-b7a5a000 rwxp 00012000 08:01 344660 /lib/libnsl-2.3.4.so
    b7a5e000-b7a66000 r-xp 00000000 08:01 659161 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    b7a66000-b7a67000 rwxp 00007000 08:01 659161 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    b7a67000-b7e6d000 r-xp 00000000 08:01 659159 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/client/libjvm.so
    b7e6d000-b7e88000 rwxp 00405000 08:01 659159 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/client/libjvm.so
    b7e9c000-b7fc1000 r-xp 00000000 08:01 344696 /lib/tls/libc-2.3.4.so
    b7fc1000-b7fc3000 r-xp 00124000 08:01 344696 /lib/tls/libc-2.3.4.so
    b7fc3000-b7fc5000 rwxp 00126000 08:01 344696 /lib/tls/libc-2.3.4.so
    b7fc7000-b7fc9000 r-xp 00000000 08:01 344656 /lib/libdl-2.3.4.so
    b7fc9000-b7fca000 r-xp 00001000 08:01 344656 /lib/libdl-2.3.4.so
    b7fca000-b7fcb000 rwxp 00002000 08:01 344656 /lib/libdl-2.3.4.so
    b7fcc000-b7fda000 r-xp 00000000 08:01 344700 /lib/tls/libpthread-2.3.4.so
    b7fda000-b7fdb000 r-xp 0000d000 08:01 344700 /lib/tls/libpthread-2.3.4.so
    b7fdb000-b7fdc000 rwxp 0000e000 08:01 344700 /lib/tls/libpthread-2.3.4.so
    b7fe9000-b7ffe000 r-xp 00000000 08:01 344641 /lib/ld-2.3.4.so
    b7ffe000-b7fff000 r-xp 00015000 08:01 344641 /lib/ld-2.3.4.so
    b7fff000-b8000000 rwxp 00016000 08:01 344641 /lib/ld-2.3.4.so
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 387K [0xa6550000, 0xa65f0000, 0xa70d0000)
    eden space 512K, 69% used [0xa6550000, 0xa65a8f48, 0xa65d0000)
    from space 64K, 50% used [0xa65d0000, 0xa65d8080, 0xa65e0000)
    to space 64K, 0% used [0xa65e0000, 0xa65e0000, 0xa65f0000)
    tenured generation total 1408K, used 1090K [0xa70d0000, 0xa7230000, 0xafb50000)
    the space 1408K, 77% used [0xa70d0000, 0xa71e0938, 0xa71e0a00, 0xa7230000)
    compacting perm gen total 4864K, used 4693K [0xafb50000, 0xb0010000, 0xb3b50000)
    the space 4864K, 96% used [0xafb50000, 0xaffe5698, 0xaffe5800, 0xb0010000)
    Local Time = Thu Apr 5 21:10:05 2012
    Elapsed Time = 0
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid5761.log.
    # Please refer to the file for further information.
    Please let me know what can be the solution.
    thanks
    Ravikanth

  • Linux 3.12 and streaming media on a Dell XPS 13: kernel panic

    Hi all,
    Shortly after upgrading from Linux 3.11.6 to 3.12, I started getting kernel panics while playing streaming media (in particular from Youtube and The Daily Show). Here is a camera shot. The crash would not take place immediatly, but perhaps after 15 minutes of streaming. After downgrading to Linux 3.11.6 everything works fine. Therefore, it is clear to me that the issue is related to the Linux 3.12 kernel, but this is all I know.
    The fifth-to-last line from the camera shot reads:
    [11438.332699] RIP [<ffffffff8129e160>] __sg_page_iter_start+0x20/0x20
    A quick Google search reveals that __sg_page_iter_start is a function inside the scatterlist.h library in the Linux kernel, which apparently deals with memory paging, but my knowledge about this stuff is so poor that the message is almost meaningless. I would greatly appreciate if someone could give me a hint about this.
    I did not find anything useful in the journal, but here are the last few journal lines for 2 different crash instances:
    Crash #1
    Nov 15 00:22:45 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:24:15 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:24:22 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:24:24 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:24:26 xps gnome-session[385]: Starting FCEUX 2.2.2...
    Nov 15 00:24:26 xps gnome-session[385]: Loading /home/vrg/MyFiles/roms/nes/CASTLEVA.NES...
    Nov 15 00:24:26 xps gnome-session[385]: PRG ROM: 8 x 16KiB
    Nov 15 00:24:26 xps gnome-session[385]: CHR ROM: 0 x 8KiB
    Nov 15 00:24:26 xps gnome-session[385]: ROM CRC32: 0xb668c7fc
    Nov 15 00:24:26 xps gnome-session[385]: ROM MD5: 0x728e05f245ab8b7fe61083f6919dc485
    Nov 15 00:24:26 xps gnome-session[385]: Mapper #: 2
    Nov 15 00:24:26 xps gnome-session[385]: Mapper name: UNROM
    Nov 15 00:24:26 xps gnome-session[385]: Mirroring: Vertical
    Nov 15 00:24:26 xps gnome-session[385]: Battery-backed: No
    Nov 15 00:24:26 xps gnome-session[385]: Trained: No
    Nov 15 00:24:26 xps gnome-session[385]: Power on
    Nov 15 00:24:26 xps gnome-session[385]: Initializing video... Video Mode: 256 x 224 x 32 bpp
    Nov 15 00:24:26 xps gnome-session[385]: Initializing video... Video Mode: 1920 x 1080 x 32 bpp full screen
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 126.0%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 158.7%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 200.0%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 252.0%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 200.0%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 158.7%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 126.0%
    Nov 15 00:24:26 xps gnome-session[385]: Emulation speed 100.0%
    Nov 15 00:24:26 xps gnome-session[385]: Initializing video... Video Mode: 256 x 224 x 32 bpp
    Nov 15 00:24:27 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:26:02 xps kernel: perf samples too long (2530 > 2500), lowering kernel.perf_event_max_sample_rate to 50100
    Nov 15 00:27:43 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:28:44 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:30:55 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:30:55 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:30:55 xps gnome-session[385]: !!! [YouTubeInfoService: setting loadContext]: TypeError: channel is undefined
    Nov 15 00:31:25 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:31:31 xps gnome-session[385]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 15 00:31:32 xps gnome-session[385]: !!! [YouTubeInfoService: setting loadContext]: TypeError: channel is undefined
    Crash #2
    Nov 17 14:35:41 xps dbus-daemon[279]: dbus[279]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Nov 17 14:35:41 xps dbus[279]: [system] Activating via systemd: service name='org.freedesktop.NetworkManager' unit='dbus-org.freedesktop.NetworkManager.service'
    Nov 17 14:35:41 xps dbus[279]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Nov 17 14:35:41 xps dbus-daemon[279]: dbus[279]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.NetworkManager.service': Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Nov 17 16:15:31 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:15:39 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:15:50 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:15:50 xps gnome-session[351]: !!! [YouTubeInfoService: setting loadContext]: TypeError: channel is undefined
    Nov 17 16:16:03 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:24:09 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:29:40 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:37:00 xps gnome-session[351]: Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    Nov 17 16:41:42 xps gnome-session[351]: NOTE: child process received `Goodbye', closing down
    In the first journal log, the following line calls my attention:
    Nov 15 00:26:02 xps kernel: perf samples too long (2530 > 2500), lowering kernel.perf_event_max_sample_rate to 50100
    However, this seems to be a normal occurrence after playing games (https://bbs.archlinux.org/viewtopic.php?id=170471), so I would guess this is not related to the kernel panic.
    For reference, here are some hardware specifications of my Dell XPS 13:
    # lsmod
    Module Size Used by
    usb_storage 47847 1
    fuse 74829 3
    uvcvideo 72804 0
    videobuf2_vmalloc 3272 1 uvcvideo
    videobuf2_memops 2335 1 videobuf2_vmalloc
    videobuf2_core 27797 1 uvcvideo
    videodev 110188 2 uvcvideo,videobuf2_core
    media 11591 2 uvcvideo,videodev
    hid_generic 1153 0
    usbhid 41434 0
    hid 89751 2 hid_generic,usbhid
    joydev 9663 0
    dell_wmi 1485 0
    sparse_keymap 3114 1 dell_wmi
    ax88179_178a 12500 0
    usbnet 26083 1 ax88179_178a
    mii 4027 2 usbnet,ax88179_178a
    x86_pkg_temp_thermal 6959 0
    intel_powerclamp 8642 0
    coretemp 6326 0
    kvm_intel 129457 0
    kvm 379351 1 kvm_intel
    crc32_pclmul 2987 0
    crc32c_intel 14249 0
    ghash_clmulni_intel 4469 0
    cryptd 8473 1 ghash_clmulni_intel
    nls_cp437 5953 2
    iTCO_wdt 5407 0
    vfat 10055 2
    fat 51827 1 vfat
    iTCO_vendor_support 1929 1 iTCO_wdt
    dell_laptop 8851 0
    dcdbas 6455 1 dell_laptop
    arc4 2000 2
    iwldvm 172354 0
    mac80211 454008 1 iwldvm
    microcode 15024 0
    psmouse 85356 0
    snd_hda_codec_hdmi 30233 1
    evdev 10693 15
    serio_raw 5041 0
    pcspkr 2027 0
    i2c_i801 11269 0
    iwlwifi 137049 1 iwldvm
    snd_hda_codec_realtek 37276 1
    cfg80211 403337 3 iwlwifi,mac80211,iwldvm
    i915 611138 3
    wmi 8347 1 dell_wmi
    rfkill 15698 3 cfg80211
    thermal 8620 0
    snd_hda_intel 36520 3
    intel_agp 10872 1 i915
    snd_hda_codec 148129 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    intel_gtt 12664 2 i915,intel_agp
    drm_kms_helper 35854 1 i915
    snd_hwdep 6332 1 snd_hda_codec
    tpm_tis 10921 0
    tpm 15091 1 tpm_tis
    snd_pcm 77765 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    tpm_bios 9745 1 tpm
    drm 236060 4 i915,drm_kms_helper
    snd_page_alloc 7202 2 snd_pcm,snd_hda_intel
    shpchp 25457 0
    snd_timer 18718 1 snd_pcm
    i2c_algo_bit 5391 1 i915
    snd 59141 13 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec,snd_hda_intel
    i2c_core 23720 6 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,videodev
    soundcore 5450 1 snd
    mei_me 9296 0
    battery 6925 0
    mei 62003 1 mei_me
    video 11380 1 i915
    mperf 1235 0
    lpc_ich 13112 0
    ac 3324 0
    processor 25077 0
    button 4669 1 i915
    vboxdrv 263994 0
    ext4 470284 3
    crc16 1359 1 ext4
    mbcache 5866 1 ext4
    jbd2 83376 1 ext4
    sd_mod 30739 8
    ahci 22888 5
    libahci 21393 1 ahci
    ehci_pci 4120 0
    libata 171318 2 ahci,libahci
    ehci_hcd 48052 1 ehci_pci
    xhci_hcd 91357 0
    scsi_mod 128695 3 usb_storage,libata,sd_mod
    usbcore 178087 8 uvcvideo,usb_storage,ehci_hcd,ehci_pci,usbhid,usbnet,ax88179_178a,xhci_hcd
    usb_common 1648 1 usbcore
    # lshw
    xps
    description: Portable Computer
    product: Dell System XPS L322X (System SKUNumber)
    vendor: Dell Inc.
    version: 0.1
    serial: 2H0CVW1
    width: 64 bits
    capabilities: smbios-2.7 dmi-2.7 vsyscall32
    configuration: administrator_password=unknown boot=normal chassis=portable family=ChiefRiver System frontpanel_password=unknown keyboard_password=unknown power-on_password=unknown sku=System SKUNumber uuid=44454C4C-4800-1030-8043-B2C04F565731
    *-core
    description: Motherboard
    product: 0PJHXN
    vendor: Dell Inc.
    physical id: 0
    version: A00
    serial: .2H0CVW1.CN4864332G0061.
    slot: Part Component
    *-cpu
    description: CPU
    product: Core i7 (To Be Filled By O.E.M.)
    vendor: Intel Corp.
    physical id: 4
    bus info: cpu@0
    version: Intel(R) Core(TM) i7-3537U CPU @ 2.00GHz
    serial: To Be Filled By O.E.M.
    slot: CPU Socket - U3E1
    size: 2500MHz
    capacity: 3100MHz
    width: 64 bits
    clock: 100MHz
    capabilities: x86-64 fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms cpufreq
    configuration: cores=2 enabledcores=2 threads=4
    *-cache:0
    description: L1 cache
    physical id: 6
    slot: L1-Cache
    size: 32KiB
    capacity: 32KiB
    capabilities: internal write-through instruction
    *-cache:1
    description: L2 cache
    physical id: 7
    slot: L2-Cache
    size: 256KiB
    capacity: 256KiB
    capabilities: internal write-through unified
    *-cache:2
    description: L3 cache
    physical id: 8
    slot: L3-Cache
    size: 4MiB
    capacity: 4MiB
    capabilities: internal write-back unified
    *-cache
    description: L1 cache
    physical id: 5
    slot: L1-Cache
    size: 32KiB
    capacity: 32KiB
    capabilities: internal write-through data
    *-firmware
    description: BIOS
    vendor: Dell Inc.
    physical id: 0
    version: A06
    date: 12/03/2012
    size: 128KiB
    capacity: 6592KiB
    capabilities: pci pnp upgrade shadowing escd cdboot bootselect edd int13floppy360 int13floppy1200 int13floppy720 int5printscreen int9keyboard int14serial int17printer int10video acpi usb ls120boot smartbattery biosbootspecification netboot
    *-memory
    description: System Memory
    physical id: 35
    slot: System board or motherboard
    size: 8GiB
    *-bank:0
    description: DIMM DDR3 Synchronous 1600 MHz (0.6 ns)
    product: HT5SMRAP
    vendor: Hynix/Hyundai
    physical id: 0
    serial: 00000000
    slot: ChannelA-DIMM0
    size: 4GiB
    width: 64 bits
    clock: 1600MHz (0.6ns)
    *-bank:1
    description: DIMM DDR3 Synchronous 1600 MHz (0.6 ns)
    product: HT5SMRAP
    vendor: Hynix/Hyundai
    physical id: 1
    serial: 00000000
    slot: ChannelB-DIMM0
    size: 4GiB
    width: 64 bits
    clock: 1600MHz (0.6ns)
    *-pci
    description: Host bridge
    product: 3rd Gen Core processor DRAM Controller
    vendor: Intel Corporation
    physical id: 100
    bus info: pci@0000:00:00.0
    version: 09
    width: 32 bits
    clock: 33MHz
    *-display
    description: VGA compatible controller
    product: 3rd Gen Core processor Graphics Controller
    vendor: Intel Corporation
    physical id: 2
    bus info: pci@0000:00:02.0
    version: 09
    width: 64 bits
    clock: 33MHz
    capabilities: msi pm vga_controller bus_master cap_list rom
    configuration: driver=i915 latency=0
    resources: irq:45 memory:d0000000-d03fffff memory:c0000000-cfffffff ioport:2000(size=64)
    *-usb:0
    description: USB controller
    product: 7 Series/C210 Series Chipset Family USB xHCI Host Controller
    vendor: Intel Corporation
    physical id: 14
    bus info: pci@0000:00:14.0
    version: 04
    width: 64 bits
    clock: 33MHz
    capabilities: pm msi xhci bus_master cap_list
    configuration: driver=xhci_hcd latency=0
    resources: irq:40 memory:d0500000-d050ffff
    *-usbhost:0
    product: xHCI Host Controller
    vendor: Linux 3.11.6-1-ARCH xhci_hcd
    physical id: 0
    bus info: usb@2
    logical name: usb2
    version: 3.11
    capabilities: usb-3.00
    configuration: driver=hub slots=4 speed=5000Mbit/s
    *-usb
    description: Ethernet interface
    product: AX88179
    vendor: ASIX Elec. Corp.
    physical id: 2
    bus info: usb@2:2
    logical name: enp0s20u2
    version: 1.00
    serial: 0000249B0982FA
    size: 100Mbit/s
    capacity: 1Gbit/s
    capabilities: usb-3.00 ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
    configuration: autonegotiation=on broadcast=yes driver=ax88179_178a duplex=full ip=128.103.14.222 link=yes maxpower=496mA multicast=yes port=MII speed=100Mbit/s
    *-usbhost:1
    product: xHCI Host Controller
    vendor: Linux 3.11.6-1-ARCH xhci_hcd
    physical id: 1
    bus info: usb@1
    logical name: usb1
    version: 3.11
    capabilities: usb-2.00
    configuration: driver=hub slots=4 speed=480Mbit/s
    *-usb
    description: USB hub
    product: USB2.0 Hub
    vendor: Genesys Logic, Inc.
    physical id: 1
    bus info: usb@1:1
    version: 32.98
    capabilities: usb-2.00
    configuration: driver=hub maxpower=100mA slots=4 speed=480Mbit/s
    *-usb:0
    description: Mouse
    product: USB OPTICAL MOUSE
    vendor: PIXART
    physical id: 1
    bus info: usb@1:1.1
    version: 1.00
    capabilities: usb-1.10
    configuration: driver=usbhid maxpower=100mA speed=2Mbit/s
    *-usb:1
    description: Mass storage device
    product: Android Phone
    vendor: HTC
    physical id: 2
    bus info: usb@1:1.2
    version: 2.26
    serial: HT08DHL10581
    capabilities: usb-2.00 scsi
    configuration: driver=usb-storage maxpower=500mA speed=480Mbit/s
    *-communication
    description: Communication controller
    product: 7 Series/C210 Series Chipset Family MEI Controller #1
    vendor: Intel Corporation
    physical id: 16
    bus info: pci@0000:00:16.0
    version: 04
    width: 64 bits
    clock: 33MHz
    capabilities: pm msi bus_master cap_list
    configuration: driver=mei_me latency=0
    resources: irq:42 memory:d0515000-d051500f
    *-usb:1
    description: USB controller
    product: 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2
    vendor: Intel Corporation
    physical id: 1a
    bus info: pci@0000:00:1a.0
    version: 04
    width: 32 bits
    clock: 33MHz
    capabilities: pm debug ehci bus_master cap_list
    configuration: driver=ehci-pci latency=0
    resources: irq:16 memory:d051a000-d051a3ff
    *-usbhost
    product: EHCI Host Controller
    vendor: Linux 3.11.6-1-ARCH ehci_hcd
    physical id: 1
    bus info: usb@3
    logical name: usb3
    version: 3.11
    capabilities: usb-2.00
    configuration: driver=hub slots=2 speed=480Mbit/s
    *-usb
    description: USB hub
    product: Integrated Rate Matching Hub
    vendor: Intel Corp.
    physical id: 1
    bus info: usb@3:1
    version: 0.00
    capabilities: usb-2.00
    configuration: driver=hub slots=6 speed=480Mbit/s
    *-usb
    description: Video
    product: Laptop_Integrated_Webcam_1.3M
    vendor: 00248CE62D1E-CC18-000603
    physical id: 5
    bus info: usb@3:1.5
    version: 27.09
    capabilities: usb-2.00
    configuration: driver=uvcvideo maxpower=500mA speed=480Mbit/s
    *-multimedia
    description: Audio device
    product: 7 Series/C210 Series Chipset Family High Definition Audio Controller
    vendor: Intel Corporation
    physical id: 1b
    bus info: pci@0000:00:1b.0
    version: 04
    width: 64 bits
    clock: 33MHz
    capabilities: pm msi pciexpress bus_master cap_list
    configuration: driver=snd_hda_intel latency=0
    resources: irq:43 memory:d0510000-d0513fff
    *-pci
    description: PCI bridge
    product: 7 Series/C210 Series Chipset Family PCI Express Root Port 1
    vendor: Intel Corporation
    physical id: 1c
    bus info: pci@0000:00:1c.0
    version: c4
    width: 32 bits
    clock: 33MHz
    capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
    configuration: driver=pcieport
    resources: irq:16 memory:d0400000-d04fffff
    *-network DISABLED
    description: Wireless interface
    product: Centrino Advanced-N 6235
    vendor: Intel Corporation
    physical id: 0
    bus info: pci@0000:01:00.0
    logical name: wlp1s0
    version: 24
    serial: c8:f7:33:83:71:1f
    width: 64 bits
    clock: 33MHz
    capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
    configuration: broadcast=yes driver=iwlwifi driverversion=3.11.6-1-ARCH firmware=18.168.6.1 latency=0 link=no multicast=yes wireless=IEEE 802.11abgn
    resources: irq:44 memory:d0400000-d0401fff
    *-usb:2
    description: USB controller
    product: 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1
    vendor: Intel Corporation
    physical id: 1d
    bus info: pci@0000:00:1d.0
    version: 04
    width: 32 bits
    clock: 33MHz
    capabilities: pm debug ehci bus_master cap_list
    configuration: driver=ehci-pci latency=0
    resources: irq:23 memory:d0519000-d05193ff
    *-usbhost
    product: EHCI Host Controller
    vendor: Linux 3.11.6-1-ARCH ehci_hcd
    physical id: 1
    bus info: usb@4
    logical name: usb4
    version: 3.11
    capabilities: usb-2.00
    configuration: driver=hub slots=2 speed=480Mbit/s
    *-usb
    description: USB hub
    product: Integrated Rate Matching Hub
    vendor: Intel Corp.
    physical id: 1
    bus info: usb@4:1
    version: 0.00
    capabilities: usb-2.00
    configuration: driver=hub slots=8 speed=480Mbit/s
    *-isa
    description: ISA bridge
    product: QS77 Express Chipset LPC Controller
    vendor: Intel Corporation
    physical id: 1f
    bus info: pci@0000:00:1f.0
    version: 04
    width: 32 bits
    clock: 33MHz
    capabilities: isa bus_master cap_list
    configuration: driver=lpc_ich latency=0
    resources: irq:0
    *-storage
    description: SATA controller
    product: 7 Series Chipset Family 6-port SATA Controller [AHCI mode]
    vendor: Intel Corporation
    physical id: 1f.2
    bus info: pci@0000:00:1f.2
    version: 04
    width: 32 bits
    clock: 66MHz
    capabilities: storage msi pm ahci_1.0 bus_master cap_list
    configuration: driver=ahci latency=0
    resources: irq:41 ioport:2098(size=8) ioport:20bc(size=4) ioport:2090(size=8) ioport:20b8(size=4) ioport:2060(size=32) memory:d0518000-d05187ff
    *-serial UNCLAIMED
    description: SMBus
    product: 7 Series/C210 Series Chipset Family SMBus Controller
    vendor: Intel Corporation
    physical id: 1f.3
    bus info: pci@0000:00:1f.3
    version: 04
    width: 64 bits
    clock: 33MHz
    configuration: latency=0
    resources: memory:d0514000-d05140ff ioport:efa0(size=32)
    *-battery
    product: DELL
    vendor: Dynapack
    physical id: 1
    version: 2008
    serial: 1.0
    slot: Rear
    capacity: 46620mWh
    configuration: voltage=7.4V
    *-scsi
    physical id: 2
    bus info: scsi@6
    logical name: scsi6
    capabilities: scsi-host
    configuration: driver=usb-storage

    Posted to [email protected], I hope I just haven't dawdled for too long and this can make it to 3.13 final.
    Hopefully this should be sufficient information, I've linked to this thread too.  I've also mentioned I'm willing to beam one at someone from Amazon, with 2-day shipping to the USA the Pluggable branded adapter is just under NZD$40, which I can easily live with.
    ===========================================================================================================
    USB3 gigabit ethernet adapters with the ASIX AX88179 chipset (LevelOne USB0401-V3, Plugable USB3-E1000, SIIG JU-NE0211-S1 and others) are experiencing kernel panics in usb_hcd_map_urb_for_dma since 3.12.  The issue does not seem to directly correlate with low or high network activity, occurring seemingly at random.  Some panics occurred less than 5 minutes from boot and tens of megabytes of network transfer, while on other occasions it would be stable for multiple days with tens to hundreds of gigabytes of line-rate throughput and several sleep/resume cycles.
    Both my Sony Vaio Pro 13 and another user reporting this issue on the Arch forums [1] are Intel-based, my USB controller is an 8086:9c31 (Lynx Point LP), the other is reported as a C210/7 series (unknown PID).  A third with a Haswell Dell XPS has attempted my workaround and reports similar success.
    I have a mediocre quality photo of my laptop's screen from one of these panics [2], the call trace - which is similar but not identical between my machine and that of the other user reporting the issue - is as follows:
    usb_hcd_map_urb_for_dma
    usb_hcd_submit_urb
    local_bh_enable_ip
    selinux_parse_skb
    usb_alloc_urb
    __kmalloc
    usbnet_start_xmit
    usbnet_start_xmit
    dev_hard_start_xmit
    sch_direct_xmit
    dev_queue_xmit
    ip_finish_output2
    ip_finish_output
    ip_output
    dst_output
    ip_local_out
    ip_queue_xmit
    tcp_transmit_skb
    tcp_write_xmit
    __tcp_push_pending_frames
    tcp_push
    tcp_sendmsg
    inet_sendmsg
    __sock_sendmsg_nosec
    sock_sendmsg
    set_restore_sigmask
    set_restore_sigmask
    fget_light
    SYSC_sendto
    set_restore_sigmask
    SyS_sendto
    system_call_fastpath
    So far as I can tell, the driver is unaffected as late as 3.11.6, but problematic as of 3.12 (and still affected in 3.13-rc5).  The history of drivers/net/usb/ax88179_178a.c for this time period yields this patch, which at least in my somewhat limited understanding appeared a likely candidate.  I've reverted this on my system - against several linux-next builds from the last 3-4 weeks - and have had no issues with this network controller since.
    commit 3804fad45411b48233b48003e33a78f290d227c8
    Author: Ming Lei <[email protected]>
    Date:   Thu Aug 8 21:48:25 2013 +0800
        USBNET: ax88179_178a: enable tso if usb host supports sg dma
        This patch enables 'can_dma_sg' flag for ax88179_178a device
        if the attached host controller supports building packet from
        discontinuous buffers(DMA SG is possible), so TSO can be enabled
        and skb fragment buffers can be passed to usb stack via urb->sg
        directly.
        With the patch, system CPU utilization decreased ~50% and throughput
        increased by ~10% when doing iperf client test on one ARM A15 dual
        core board.
        Cc: Ben Hutchings <[email protected]>
        Cc: Grant Grundler <[email protected]>
        Cc: Oliver Neukum <[email protected]>
        Cc: Alan Stern <[email protected]>
        Cc: Freddy Xin <[email protected]>
        Signed-off-by: Ming Lei <[email protected]>
        Acked-by: Eric Dumazet <[email protected]>
        Acked-by: David S. Miller <[email protected]>
        Signed-off-by: Greg Kroah-Hartman <[email protected]>
    Unfortunately I have not retained the built kernel from a broken 3.12 build, so the system information below reflects the patched linux-next kernel I am running currently.
    I understand this may be a somewhat obscure piece of hardware, I am willing to assist by drop-shipping one to someone from Amazon (or local country equivalent if the price is not extortionate) should it be required.
    System information:
    ver_linux:
    Linux neko 3.13.0-rc5-next-20131224+ #1 SMP Sat Dec 28 19:09:27 NZDT 2013 x86_64 Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz GenuineIntel GNU/Linux
    Gnu C                  4.7.3
    Gnu make               4.0
    binutils               2.24
    util-linux             scripts/ver_linux: line 23: fdformat: command not found
    mount                  assert
    module-init-tools      16
    e2fsprogs              1.42.9
    jfsutils               1.1.15
    reiserfsprogs          3.6.24
    reiser4progs           1.0.7
    xfsprogs               3.1.11
    quota-tools            4.01.
    PPP                    2.4.5
    Linux C Library        2.17
    Dynamic linker (ldd)   2.17
    Procps                 3.3.9
    Net-tools              1.60_p20130513023548
    Kbd                    2.0.1
    Sh-utils               8.22
    Modules Loaded         bonding rndis_host cdc_ether tun snd_usb_audio snd_usbmidi_lib snd_rawmidi cdc_acm ctr ccm hidp nfsd rfcomm bnep iptable_nat nf_nat_ipv4 nf_nat uvcvideo btusb bluetooth hid_multitouch videobuf2_vmalloc videobuf2_memops videobuf2_core uinput ax88179_178a usbnet mii rtsx_pci_sdmmc rtsx_pci mmc_core fuse snd_hda_codec_realtek iwlmvm kvm_intel snd_hda_codec_generic mac80211 kvm pn544_mei mei_phy iwlwifi pn544 snd_hda_intel hci nfc snd_hda_codec snd_hwdep cfg80211 xhci_hcd
    /proc/cpuinfo:
    processor       : 3
    vendor_id       : GenuineIntel
    cpu family      : 6
    model           : 69
    model name      : Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz
    stepping        : 1
    microcode       : 0x10
    cpu MHz         : 2968.125
    cache size      : 4096 KB
    physical id     : 0
    siblings        : 4
    core id         : 1
    cpu cores       : 2
    apicid          : 3
    initial apicid  : 3
    fpu             : yes
    fpu_exception   : yes
    cpuid level     : 13
    wp              : yes
    flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid
    bogomips        : 4788.92
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 39 bits physical, 48 bits virtual
    power management:
    PCI:
    -[0000:00]-+-00.0  Intel Corporation Haswell-ULT DRAM Controller [8086:0a04]
               +-02.0  Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16]
               +-03.0  Intel Corporation Device [8086:0a0c]
               +-14.0  Intel Corporation Lynx Point-LP USB xHCI HC [8086:9c31]
               +-16.0  Intel Corporation Lynx Point-LP HECI #0 [8086:9c3a]
               +-1b.0  Intel Corporation Lynx Point-LP HD Audio Controller [8086:9c20]
               +-1c.0-[01]----00.0  Intel Corporation Wireless 7260 [8086:08b1]
               +-1c.3-[02]--
               +-1c.4-[03]----00.0  Samsung Electronics Co Ltd Device [144d:a800]
               +-1d.0  Intel Corporation Lynx Point-LP USB EHCI #1 [8086:9c26]
               +-1f.0  Intel Corporation Lynx Point-LP LPC Controller [8086:9c43]
               \-1f.3  Intel Corporation Lynx Point-LP SMBus Controller [8086:9c22]
    USB:
    Bus 001 Device 002: ID 8087:8000 Intel Corp.
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 025: ID 0b95:1790 ASIX Electronics Corp.
    Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 002 Device 027: ID 8087:07dc Intel Corp.
    Bus 002 Device 003: ID 04f2:b3be Chicony Electronics Co., Ltd
    Bus 002 Device 002: ID 0eef:a108 D-WAV Scientific Co., Ltd
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    /proc/modules:
    bonding 84837 0 - Live 0xffffffffc00d5000
    rndis_host 5162 0 - Live 0xffffffffc0096000
    cdc_ether 4324 1 rndis_host, Live 0xffffffffc006e000
    tun 16811 0 - Live 0xffffffffc009e000
    snd_usb_audio 102474 0 - Live 0xffffffffc007b000
    snd_usbmidi_lib 16542 1 snd_usb_audio, Live 0xffffffffc0072000
    snd_rawmidi 15891 1 snd_usbmidi_lib, Live 0xffffffffc0017000
    cdc_acm 16166 0 - Live 0xffffffffc05ec000
    ctr 3471 2 - Live 0xffffffffc05e8000
    ccm 6977 2 - Live 0xffffffffc05e3000
    hidp 12989 0 - Live 0xffffffffc05db000
    nfsd 192979 13 - Live 0xffffffffc059b000
    rfcomm 27704 12 - Live 0xffffffffc058e000
    bnep 9055 2 - Live 0xffffffffc0587000
    iptable_nat 2550 0 - Live 0xffffffffc0583000
    nf_nat_ipv4 3118 1 iptable_nat, Live 0xffffffffc057f000
    nf_nat 9984 2 iptable_nat,nf_nat_ipv4, Live 0xffffffffc0577000
    uvcvideo 60542 0 - Live 0xffffffffc0562000
    btusb 14182 0 - Live 0xffffffffc0519000
    bluetooth 200149 23 hidp,rfcomm,bnep,btusb, Live 0xffffffffc04d8000
    hid_multitouch 8791 0 - Live 0xffffffffc04d1000
    videobuf2_vmalloc 2528 1 uvcvideo, Live 0xffffffffc04cd000
    videobuf2_memops 1559 1 videobuf2_vmalloc, Live 0xffffffffc04c9000
    videobuf2_core 22473 1 uvcvideo, Live 0xffffffffc04be000
    uinput 6657 0 - Live 0xffffffffc04b9000
    ax88179_178a 11352 0 - Live 0xffffffffc04b2000
    usbnet 17066 3 rndis_host,cdc_ether,ax88179_178a, Live 0xffffffffc04a7000
    mii 3427 2 ax88179_178a,usbnet, Live 0xffffffffc04a3000
    rtsx_pci_sdmmc 8434 0 - Live 0xffffffffc049d000
    rtsx_pci 24242 1 rtsx_pci_sdmmc, Live 0xffffffffc0490000
    mmc_core 73734 1 rtsx_pci_sdmmc, Live 0xffffffffc0471000
    fuse 65180 0 - Live 0xffffffffc0458000
    snd_hda_codec_realtek 37786 1 - Live 0xffffffffc0448000
    iwlmvm 99382 0 - Live 0xffffffffc03d9000
    kvm_intel 119916 0 - Live 0xffffffffc033e000
    snd_hda_codec_generic 39626 1 snd_hda_codec_realtek, Live 0xffffffffc032d000
    mac80211 352537 1 iwlmvm, Live 0xffffffffc0239000
    kvm 332678 1 kvm_intel, Live 0xffffffffc014f000
    pn544_mei 1507 0 - Live 0xffffffffc014b000
    mei_phy 1942 1 pn544_mei, Live 0xffffffffc0147000                                                                                                                                         
    iwlwifi 70257 1 iwlmvm, Live 0xffffffffc0129000                                                                                                                                           
    pn544 6215 1 pn544_mei, Live 0xffffffffc0124000                                                                                                                                           
    snd_hda_intel 29721 2 - Live 0xffffffffc0106000                                                                                                                                           
    hci 13343 2 mei_phy,pn544, Live 0xffffffffc00fd000                                                                                                                                         
    nfc 46459 2 pn544,hci, Live 0xffffffffc00c8000                                                                                                                                             
    snd_hda_codec 72588 3 snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_intel, Live 0xffffffffc00a7000                                                                                   
    snd_hwdep 5373 2 snd_usb_audio,snd_hda_codec, Live 0xffffffffc009b000                                                                                                                     
    cfg80211 320801 3 iwlmvm,mac80211,iwlwifi, Live 0xffffffffc001e000                                                                                                                         
    xhci_hcd 88348 0 - Live 0xffffffffc0000000
    /proc/iomem:
    00000000-00000fff : reserved
    00001000-00057fff : System RAM
    00058000-00058fff : reserved
    00059000-0009dfff : System RAM
    0009e000-0009ffff : reserved
    000a0000-000bffff : PCI Bus 0000:00
    000c0000-000c3fff : PCI Bus 0000:00
    000c4000-000c7fff : PCI Bus 0000:00
    000c8000-000cbfff : PCI Bus 0000:00
    000cc000-000cffff : PCI Bus 0000:00
    000d0000-000d3fff : PCI Bus 0000:00
    000d4000-000d7fff : PCI Bus 0000:00
    000d8000-000dbfff : PCI Bus 0000:00
    000dc000-000dffff : PCI Bus 0000:00
    000f0000-000fffff : System ROM
    00100000-ca4b7fff : System RAM
      06000000-066753ba : Kernel code
      066753bb-06cc83ff : Kernel data
      06dc9000-06ecffff : Kernel bss
    ca4b8000-ca4befff : ACPI Non-volatile Storage
    ca4bf000-ca8e7fff : System RAM
    ca8e8000-cac39fff : reserved
    cac3a000-da89bfff : System RAM
    da89c000-dab3ffff : reserved
    dab40000-dab55fff : ACPI Tables
    dab56000-dbaaafff : ACPI Non-volatile Storage
    dbaab000-dbffefff : reserved
    dbfff000-dbffffff : System RAM
    dd000000-df1fffff : reserved
      dd200000-df1fffff : Graphics Stolen Memory
    df200000-feafffff : PCI Bus 0000:00
      df200000-df3fffff : PCI Bus 0000:01
      e0000000-efffffff : 0000:00:02.0
        e0000000-e07e8fff : BOOTFB
      f0000000-f09fffff : PCI Bus 0000:03
      f0a00000-f13fffff : PCI Bus 0000:02
      f6400000-f67fffff : 0000:00:02.0
      f6800000-f71fffff : PCI Bus 0000:03
        f6800000-f680ffff : 0000:03:00.0
        f6810000-f6811fff : 0000:03:00.0
          f6810000-f6811fff : ahci
      f7200000-f7bfffff : PCI Bus 0000:02
      f7c00000-f7cfffff : PCI Bus 0000:01
        f7c00000-f7c01fff : 0000:01:00.0
          f7c00000-f7c01fff : iwlwifi
      f7d00000-f7d0ffff : 0000:00:14.0
        f7d00000-f7d0ffff : xhci_hcd
      f7d10000-f7d13fff : 0000:00:1b.0
        f7d10000-f7d13fff : ICH HD audio
      f7d14000-f7d17fff : 0000:00:03.0
      f7d19000-f7d190ff : 0000:00:1f.3
      f7d1a000-f7d1a3ff : 0000:00:1d.0
        f7d1a000-f7d1a3ff : ehci_hcd
      f7d1c000-f7d1c01f : 0000:00:16.0
        f7d1c000-f7d1c01f : mei_me
      f7fef000-f7feffff : pnp 00:0a
      f7ff0000-f7ffffff : pnp 00:0a
      f8000000-fbffffff : PCI MMCONFIG 0000 [bus 00-3f]
        f8000000-fbffffff : reserved
          f8000000-fbffffff : pnp 00:0a
    fec00000-fec00fff : reserved
      fec00000-fec003ff : IOAPIC 0
    fed00000-fed03fff : reserved
      fed00000-fed003ff : HPET 0
    fed10000-fed17fff : pnp 00:0a
    fed18000-fed18fff : pnp 00:0a
    fed19000-fed19fff : pnp 00:0a
    fed1c000-fed1ffff : reserved
      fed1c000-fed1ffff : pnp 00:0a
        fed1f410-fed1f414 : iTCO_wdt
          fed1f410-fed1f414 : iTCO_wdt
    fed20000-fed3ffff : pnp 00:0a
    fed45000-fed8ffff : pnp 00:0a
    fed90000-fed93fff : pnp 00:0a
    fee00000-fee00fff : Local APIC
      fee00000-fee00fff : reserved
    ff000000-ffffffff : reserved
      ff000000-ffffffff : pnp 00:0a
    100000000-21fdfffff : System RAM
    21fe00000-21fffffff : RAM buffer
    /proc/ioports:
    0000-0cf7 : PCI Bus 0000:00
      0000-001f : dma1
      0020-0021 : pic1
      0040-0043 : timer0
      0050-0053 : timer1
      0060-0060 : keyboard
      0062-0062 : EC data
      0064-0064 : keyboard
      0066-0066 : EC cmd
      0070-0077 : rtc0
      0080-008f : dma page reg
      00a0-00a1 : pic2
      00c0-00df : dma2
      00f0-00ff : fpu
      04d0-04d1 : pnp 00:07
      0680-069f : pnp 00:04
    0cf8-0cff : PCI conf1
    0d00-ffff : PCI Bus 0000:00
      164e-164f : pnp 00:04
      1800-1803 : ACPI PM1a_EVT_BLK
      1804-1805 : ACPI PM1a_CNT_BLK
      1808-180b : ACPI PM_TMR
      1810-1815 : ACPI CPU throttle
      1830-1833 : iTCO_wdt
        1830-1833 : iTCO_wdt
      1850-1850 : ACPI PM2_CNT_BLK
      1854-1857 : pnp 00:06
      1860-187f : iTCO_wdt
        1860-187f : iTCO_wdt
      1880-189f : ACPI GPE0_BLK
      1c00-1cfe : pnp 00:04
      1d00-1dfe : pnp 00:04
      1e00-1efe : pnp 00:04
      1f00-1ffe : pnp 00:04
      2008-200b : pnp 00:04
      3000-3fff : PCI Bus 0000:01
      d000-dfff : PCI Bus 0000:03
      e000-efff : PCI Bus 0000:02
      f000-f03f : 0000:00:02.0
      f040-f05f : 0000:00:1f.3
      ffff-ffff : pnp 00:04
        ffff-ffff : pnp 00:04
    Regards,
    Thomas

  • R12 INSTALLATION ON LINUX

    Hi...
    I am installing R12 on RHEL 4 and encountering error at the time of Step 2 0f 5 and the errors are as below..
    "RW-50004 and RW-50010
    Fatal:error occured in Apply db:
    Control file creation failed
    Cannot execute configue of db using rapid clone
    Script has returned an error"
    Pls guide.
    Rgds
    Geeta

    /etc/hosts
    [root@ORASERVER jdbc]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    #127.0.0.1 localhost.localdomain localhost ORASERVER.bhrigus
    192.168.0.197 ORASERVER.bhrigus ORASERVER
    ====================
    ipaddress and ping hostname
    [root@ORASERVER jdbc]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:18:8B:FC:E8:90
    inet addr:192.168.0.197 Bcast:192.168.0.255 Mask:255.255.255.0
    inet6 addr: fe80::218:8bff:fefc:e890/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:16295 errors:0 dropped:0 overruns:0 frame:0
    TX packets:6792 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:5957328 (5.6 MiB) TX bytes:1581099 (1.5 MiB)
    Interrupt:169
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:8321 errors:0 dropped:0 overruns:0 frame:0
    TX packets:8321 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:433632 (423.4 KiB) TX bytes:433632 (423.4 KiB)
    ping oraserver
    PING ORASERVER.bhrigus (192.168.0.197) 56(84) bytes of data.
    64 bytes from ORASERVER.bhrigus (192.168.0.197): icmp_seq=0 ttl=64 time=0.037 ms
    ========================================================
    part of log file...(/apps/oracle/vision/db/tech_st/10.2.0/appsutil/log/VIS_orase rver/ApplyDatabase_07031116.log)
    afmkinit.sh exiting with status 0
    .end std out.
    .end err out.
    Skipping Profile Phase
    Skipping Apply Phase
    Executing CreateDB...
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : oraserver
    sDbDomain : bhrigus
    sDbPort : 1521
    sDbSid : VIS
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@oraserver.bhrigus:1521:VIS
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oraserver.bhrigus)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=VIS)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oraserver.bhrigus)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=VIS.bhrigus)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    adcrdb.sh started at Tue Jul 3 16:16:56 IST 2007
    The environment settings are as follows ...
    ORACLE_HOME : /apps/oracle/vision/db/tech_st/10.2.0
    ORACLE_SID : VIS
    TWO_TASK :
    PATH : /apps/oracle/vision/db/tech_st/10.2.0/perl/bin:/apps/oracle/vision/db/tech_st/10.2.0/bin:/usr/bin:/usr/sbin:/apps/oracle/vision/db/tech_st/10.2.0/appsutil/jre/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/apps/StageR12/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /apps/oracle/vision/db/tech_st/10.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/apps/oracle/vision/db/tech_st/10.2.0/lib:/usr/dt/lib:/apps/oracle/vision/db/tech_st/10.2.0/ctx/lib
    Executable : /apps/oracle/vision/db/tech_st/10.2.0/bin/sqlplus
    The log information will be written to
    /apps/oracle/vision/db/tech_st/10.2.0/appsutil/log/VIS_oraserver/adcrdb_VIS.txt
    Creating the control file for VIS_oraserver database ...
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Jul 3 16:16:56 2007
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    Connected to an idle instance.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 1073741824 bytes
    Fixed Size 1264892 bytes
    Variable Size 427819780 bytes
    Database Buffers 633339904 bytes
    Redo Buffers 11317248 bytes
    Control file created.
    Database altered.
    Tablespace altered.
    Tablespace altered.
    Database altered.
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 1073741824 bytes
    Fixed Size 1264892 bytes
    Variable Size 427819780 bytes
    Database Buffers 633339904 bytes
    Redo Buffers 11317248 bytes
    Database mounted.
    PL/SQL procedure successfully completed.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 1073741824 bytes
    Fixed Size 1264892 bytes
    Variable Size 427819780 bytes
    Database Buffers 633339904 bytes
    Redo Buffers 11317248 bytes
    Control file created.
    Database altered.
    Tablespace altered.
    Tablespace altered.
    Database altered.
    PL/SQL procedure successfully completed.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    exit_code=0
    Checking for errors ...
    .end std out.
    .end err out.
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : oraserver
    sDbDomain : bhrigus
    sDbPort : 1521
    sDbSid : VIS
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@oraserver.bhrigus:1521:VIS
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oraserver.bhrigus)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=VIS)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oraserver.bhrigus)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=VIS.bhrigus)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    RC-00118: Error occurred during creation of database
    Raised by oracle.apps.ad.clone.ApplyDatabase
    Rgds
    Geeta

Maybe you are looking for

  • FOC material scrap

    hi all please suggest i am getting free of cost material form customer an doses value addition and then supply to cutsomer while pricing customer credit the scrap generated during vlaue addition/converson. since i have created these material as Non v

  • Acrobat 9.0 Pro crashes when trying to edit fields

    Acrobat 9.0 Professional crashes when I try to edit or add text fields. I am running Windows Vista. All other functions of Acrobat work.

  • Any plans of taking Libav into concideration when building packages?

    Hi, I guess itæs till too early to say which side will "win" in the feude between libav and ffmpeg. As I haven't cared at all, I haven't done anything but keep using ffmpeg. But I currently had to install libav from AUR because ffmpeg just can't hand

  • Table with a sub-heading row - under only two columns

    Hi all, Using TCS2 on Win 7 64-bit. This is likely a silly question but I can't for the life of me figure it out. I want to create a table as follows: -one table, with 4 columns and 5 rows -i would like the header row to span all 4 columns, but only

  • Physical inventory tables

    Hi, Can anyone let me know what is the table for physical inventory which are carried out for warehouse. I want to know the table in which my before count  and after count results gets posted. Sunil