Solaris 8 and SunFire v445

Hello,
I need information about compatibility and limitations for Solaris 8
running in a SunFire v445.
Looking into v445 specifications I found only suppports Solaris 9 & 10.
Is it that correct ?
Thanks

Solaris 8 on the V445 platform ?
... not going to happen.
Here's a recent discussion from the Hardware Forum.
http://forum.sun.com/jive/thread.jspa?threadID=108466
(Recent = only four weeks ago)
In particular, see the 11-Oct-06 response in that thread, from contributor Maalatft.

Similar Messages

  • Why  difference in Solaris and Linux

    Hi,
    The following program is giving results diferently when I am executing using g++ compiler in Solaris and Linux.
    Why it is so.
    here is the code:
    #include <stdio.h>
    #include <string.h>
    #include <malloc.h>
    #include <stdlib.h>
    int main( void )
    size_t size;
    char *buf;
    if ( ( buf = (char *)malloc(10 *sizeof(char))) == NULL)
    exit (1);
    size = sizeof( buf );
    strcpy(buf, "HelloWorld");
    printf("\n Address is : %u String is : %s size : %d ", buf, buf,size);
    if (( buf = (char *) realloc(buf, sizeof(20))) == NULL)
    exit ( 1);
    *(buf+10) = 'A'; *(buf+11) = 'B'; *(buf+12) = '\0';
    printf("\n Address is : %u String is : %s\n", buf, buf);
    free( buf);
    exit( 0 );
    Solaris:
    Address is : 134160 String is : HelloWorld size : 4
    Address is : 135704 String is : HelloWor
    Linux:
    Address is : 134518824 String is : HelloWorld size : 4
    Address is : 134518824 String is : HelloWorldAB
    Thanks
    Venkat

    Hi,
    The following program is giving results diferently
    when I am executing using g++ compiler in Solaris
    and Linux.
    Why it is so.
    here is the code:
    #include <stdio.h>
    #include <string.h>
    #include <malloc.h>
    #include <stdlib.h>
    int main( void )
    size_t size;
    char *buf;
    if ( ( buf = (char *)malloc(10 *sizeof(char))) == NULL)
    exit (1);
    size = sizeof( buf );The size you get here is the size of buf, which is the size of a pointer, not the size of what buf points to. sizeof(*buf) would give you size of a char, the type (not the object) that buf points to.
    There is no portable way to find out the number of bytes allocated on the heap if you are give only a pointer to the memory. You have to remember the size some other way..
    strcpy(buf, "HelloWorld");A literal string consists of the characters in the string plus a terminating null, all of which are copied by strcpy. You allocated 10 chars for buf, but are writing 11 chars into it. At this point, the program has undefined behavior. Literally anything at all could happen, because you can't predict the effect of writing outside the bounds of allocated memory.
    printf("\n Address is : %u String is : %s size :
    e : %d ", buf, buf,size);
    if (( buf = (char *) realloc(buf, sizeof(20))) == NULL)The "sizeof" operator in this case is returning the size of the type of a literal 20, which is an int. If you want to allocate 20 bytes, you write 20, not sizeof(20).
    exit ( 1);
    *(buf+10) = 'A'; *(buf+11) = 'B'; *(buf+12) == '\0';SInce you can't count on buf having more than 4 bytes at this time, you are writing into unallocated memory, with undefined results.
    printf("\n Address is : %u String is : %s\n", buf, buf);
    free( buf);
    exit( 0 );
    Instead of asking why you get different results on different platforms, you should be asking why the program doesn't crash on all platforms. :-)
    You can avoid these problems with keeping track of allocating memory by using the C++ standard library instead of trying to manage low-level details yourself as in C code.
    The standard string class, for example, extends itself as needed, and ensures that heap memory is freed when the string object is deleted or goes out of scope. You don't need pointers, malloc, free, or sizeof to use C++ strings.

  • Why keyboard and mouse right click not working in Solaris and Linux?

    Hi all,
    I have two problems:
    1) I am working on AWT/Swing application and its working fine in window enviornment,but while running on solaris and linux mouse right-click option window not poping up.
    2) Ctrl+c,Ctrl+v,Home and End keyboard key are not working in solaris and linux OS for same application.
    Pls provide me some solution for these problem.
    -Dinesh

    Hi Nik,
    Thanks for reply. I found some solution for the above problem.
    For mouse right click there was problem in my source code.I have not implemented the mousePressed() method
    In case of keyboard Home, End and arrow key working fine after exporting AWTUSE_TYPE4_PATCH=false; in solaris and linux
    But still Ctrl-c and Ctrl-v not working.
    I am using JDK1.5.0_07+Eclipse IDE 3.1
    -Dinesh

  • Installing 11i on Solaris and migrating 8.0.5 to new 8.1.6 database

    I've installed 11i (several times) on a new Sun solaris server. I also selected it to install a fresh database. On another server we have 11.0 and 8.0.5 database. We are using a new server to install 11i and we want to move our database over. I managed to transfer all database files over to the new server and upgrade to 8.1.6 (succeeded)
    How do I proceed now to get the 11i applications to use the database i've transferred over. Is this possible??? Can't find any clear documentation on how to merge this database into the applications 11i.
    Thanks
    null

    Gina, I am attempting something similar... but it involves moving an exisiting installation from HP-UX to Solaris, so I cannot move the datafiles... If I run into a method that helps both of us, I will let you know... as of now, I am installing fresh on Solaris and going to try to run upgrade scripts on existing 10.7 and exp/imp into the new instance on 11i (Solaris).
    Let me know of anything you find out that could help me, and I will do the same...
    thanks
    dns

  • You can take a coldbackup from solaris and use it on windows NT?

    hi all,
    You can take a coldbackup from solaris and use it on windows NT?
    can we?
    regards
    girish

    khaja(DBA) wrote:
    Yes!!! why not
    Have you actually done this?
    Why not? Because the internal structure of the solaris files is different from Windows.
    >
    >
    Regards,
    khaja

  • JNI, Solaris and Signal 11

    There are a number of bugs in the database that have the following attributes:
    -JNI
    -Solaris
    -Signal 11 exceptions.
    -Long running applications.
    I am experiencing something similar. I was using C threads for some call back functionality (and of course registering it them with JNI.) I was hoping that starting the threads with java would help but it didn't.
    I have several questions:
    -Has anyone found anything that allows them to work around this? Doesn't matter what you think it was - like a different switch on an application server. I am just curious if anyone thinks they solved it in any way.
    -Does anyone have an idea what might cause it? Even an just an idle thought?
    -Does anyone have a long running application, that uses JNI on Solaris and they don't experience this (obviously the JVM itself does this, but I am still curious?)
    -And slightly different that the above, does anyone have a long running JNI Solaris application using C threads that doesn't have this problem?

    jschell, are you still experiencing this?
    You may have seen some of my posts before... I have seen many of yours. But I hadn't seen this one until now, by chance.
    I am running on Solaris 8 with Java 1.3.1_03 and have a multithreaded C/C++ program that invokes the JVM and makes calls into Java via JNI. Actually, I have a few programs like this, but a particular one is set up to run as a daemon and eventually (after a couple of hours) runs into a segmentation fault (signal 11). The stack in the core file when the program fails shows that a thread started in the native code attempted "AttachCurrentThread()" and then a segfault happens way down in the JVM somewhere. However, I had an issue like this previously and I tracked it down (unexpectedly) to a memory leak in a totally unrelated portion of the native code. So I am trying to find other memory leaks in the code using tools like Rational Purify but it is tricky to get Purify and the JVM to play nicely together.
    Additional info: I have all latest patches applied, not using signal handlers, and am using the "alternate" thread library in /usr/lib/lwp.
    - I have another similar program on Solaris that does not seem to have this problem.
    - The same program that's crashing on Solaris seems to run OK on both Windows and HP-UX.
    Given the above, I am pursuing the avenue of a memory corruption in the native code as that has turned out to be the cause of numerous other problems in the past, but I am having a very hard time with this one. jschell (or anyone else), please let me know about your status and what you think.
    Thanks -
    Chris

  • Issues with jbdc logging on solaris and windows enviroment

    Hi All,
    I tried to enable JDBC logging on my app server (tried on Solaris and Windows)and
    i am facing issues. It would be great if someone can share their experiences.
    SOLARIS ISSUE:
    <Mar 12, 2003 8:09:36 PM PST> <Notice> <Management>
    <Mar 12, 2003 8:09:52 PM PST> <Notice> <WebLogicServer> <Starting WebLogic Admin
    Server "xyz" for domain "abc">
    <Mar 12, 2003 8:09:57 PM PST> <Emergency> <Server> <Unable to initialize the server:
    'Fatal initialization exception
    Throwable: java.lang.NullPointerException
    java.lang.NullPointerException
    at weblogic.jdbc.common.JDBCService.initLog(JDBCService.java:231)
    at weblogic.jdbc.common.JDBCService.initialize(JDBCService.java:57)
    at weblogic.t3.srvr.ServerServiceList.initialize(ServerServiceList.java:48)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:492)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:206)
    at weblogic.Server.main(Server.java:35)
    WINDOWS:
    DriverManager.initialize: jdbc.drivers = null
    JDBC DriverManager initialized
    registerDriver: driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@1bfaff]
    DriverManager.getDriver("jdbc:oracle:thin:@172.16.10.150:1521:vtpsr")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@1bfaff]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@1bfaff]
    SQLException: SQLState(null) vendor code(17055)
    java.sql.SQLException: Invalid character encountered in: failAL32UTF8Conv
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.check_error(DBError.java:1130)
         at oracle.jdbc.dbaccess.DBConversion.failAL32UTF8Conv(DBConversion.java:2762)
         at oracle.jdbc.dbaccess.DBConversion.javaCharsToAL32UTF8Bytes(DBConversion.java:2678)
         at oracle.jdbc.dbaccess.DBConversion.stringToAL32UTF8Bytes(DBConversion.java:2624)
         at oracle.jdbc.dbaccess.DBConversion.stringToAccessCharBytes(DBConversion.java:391)
         at oracle.jdbc.dbaccess.DBConversion.StringToCharBytes(DBConversion.java:456)
         at oracle.jdbc.ttc7.O3log.setSessionFields(O3log.java:796)
    Thanks,
    Suresh

    Infact it is same issue for both environments...
    It is
    java.sql.SQLException: Invalid character encountered in: failAL32UTF8Conv
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.check_error(DBError.java:1130)
         at oracle.jdbc.dbaccess.DBConversion.failAL32UTF8Conv(DBConversion.java:2762)
         at oracle.jdbc.dbaccess.DBConversion.javaCharsToAL32UTF8Bytes(DBConversion.java:2678)
         at oracle.jdbc.dbaccess.DBConversion.stringToAL32UTF8Bytes(DBConversion.java:2624)
         at oracle.jdbc.dbaccess.DBConversion.stringToAccessCharBytes(DBConversion.java:391)
         at oracle.jdbc.dbaccess.DBConversion.StringToCharBytes(DBConversion.java:456)
         at oracle.jdbc.ttc7.O3log.setSessionFields(O3log.java:796)for both enviroments..
    Please let me know if any of u guys came across this before.
    Thanks,
    Suresh
    "suresh maram" <[email protected]> wrote:
    >
    Hi All,
    I tried to enable JDBC logging on my app server (tried on Solaris and
    Windows)and
    i am facing issues. It would be great if someone can share their experiences.
    SOLARIS ISSUE:
    <Mar 12, 2003 8:09:36 PM PST> <Notice> <Management>
    <Mar 12, 2003 8:09:52 PM PST> <Notice> <WebLogicServer> <Starting WebLogic
    Admin
    Server "xyz" for domain "abc">
    <Mar 12, 2003 8:09:57 PM PST> <Emergency> <Server> <Unable to initialize
    the server:
    'Fatal initialization exception
    Throwable: java.lang.NullPointerException
    java.lang.NullPointerException
    at weblogic.jdbc.common.JDBCService.initLog(JDBCService.java:231)
    at weblogic.jdbc.common.JDBCService.initialize(JDBCService.java:57)
    at weblogic.t3.srvr.ServerServiceList.initialize(ServerServiceList.java:48)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:492)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:206)
    at weblogic.Server.main(Server.java:35)
    WINDOWS:
    DriverManager.initialize: jdbc.drivers = null
    JDBC DriverManager initialized
    registerDriver: driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@1bfaff]
    DriverManager.getDriver("jdbc:oracle:thin:@172.16.10.150:1521:vtpsr")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@1bfaff]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@1bfaff]
    SQLException: SQLState(null) vendor code(17055)
    java.sql.SQLException: Invalid character encountered in: failAL32UTF8Conv
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.check_error(DBError.java:1130)
         at oracle.jdbc.dbaccess.DBConversion.failAL32UTF8Conv(DBConversion.java:2762)
         at oracle.jdbc.dbaccess.DBConversion.javaCharsToAL32UTF8Bytes(DBConversion.java:2678)
         at oracle.jdbc.dbaccess.DBConversion.stringToAL32UTF8Bytes(DBConversion.java:2624)
         at oracle.jdbc.dbaccess.DBConversion.stringToAccessCharBytes(DBConversion.java:391)
         at oracle.jdbc.dbaccess.DBConversion.StringToCharBytes(DBConversion.java:456)
         at oracle.jdbc.ttc7.O3log.setSessionFields(O3log.java:796)
    Thanks,
    Suresh

  • Solaris and Windows (differences between the two OS for development)

    Hi All,
    From the moment that I learned Java, I have always been using Windows to do all of my implementation. Very soon, I will be moving to Solaris and I was just wondering whether anyone out here could share the things that I should take notice for developing under Solaris which in the past (in XP/NT/2000) would not be something that I have to deal with.
    Also, to speed things up, would it be helpful if I start experimenting Java under Linux?? or Developing under Linux is also different than Solaris. I might get comfortable playing with the commands (as it's been 10 years since I last worked on Unix)
    But really, I am more concerned about all the problems that I will have to face, I would appreciate if anyone could share their experience with me.
    Thx.

    The Java language is platform independent.
    You might find a few thread syncing issues on a true multitasking multiprocessor Solaris box which windows timeslicing won't reveal, and there's the unix file system has a few more tricks, like being able to read and write a file simultaniously, but that's about it (from memory).
    The only practical difference developing on Solaris is the box won't crash behind the JVM.
    Oh, and your ant scripts & properties files will need porting.
    Good luck. Keith.

  • Problem adding IBMtape and TS3200 fibre library to solaris 10 sunfire 280R

    Hi,
    I have IBM TS3200 Fibre library and I&rsquo;m having problems to connect it to my solaris 10 (and TSM) there is nothing in under /dev/rmt ??
    Information:
    SunOS tsm 5.10 Generic_118833-36 sun4u sparc SUNW,Sun-Fire-280R
    HBA Model          : QLA2310
    Driver Version     : qlc-20080514-2.28
    FCode Version     : 1.14.09
    Firmware Version     : 3.03.27 IP
    There are 2 drivers and one changer and bout are seen by hardware:
    cfgadm -o show_FCP_dev -al
    Ap_Id      Type Receptacle Occupant Condition
    c3           fc-fabric connected configured unknown
    c3::2002000e11116daf,0         tape         connected    configured   unknown
    c3::2002000e11116daf,1         med-changer  connected    configured   unknown
    c3::2008000e11116daf,0         tape         connected    configured   unknown
    c3::500601603a201211,0 disk connected configured unknown
    c3::500601603a201211,1 disk connected configured unknown
    c4           fc-private connected configured unknown
    c4::210000203784c0ff,0 disk connected configured unknown
    c4::210000203784dff0,0 disk connected configured unknown
    I have installed the IBMtape as in IBM documentation is instructed.
    All commended out in st.conf, mt.conf and lb.conf.
    st driver is not loadet. (rem_drv st)
    there is in /devices entrys like this: (du -a /devices)
    2 /devices/pci@8,700000/SUNW,qlc@2/fp@0,0/sgen@w2002000e11116daf,1
    0 /devices/pci@8,700000/SUNW,qlc@2/fp@0,0/sgen@w2002000e11116daf,1:changer
    What is sgen@??
    So the hardware sees the library but the os dos not compute&hellip; any idea how to get the drivers working and something under /dev/rmt?

    You could experiment with giving OBP the absolute path to that USB device, but I doubt you'll be successful. The Sunfire 280R (same hardware as the Sunblade 1000, Sunblade 2000, and Netra 20) design expected USB to be only for keyboard and mouse, not for any storage devices. If booting ever works manually from a USB stick, then you could create a custom alias for the device.
    Try an experiment by using a CD or DVD of an older release of Solaris 10 instead of the current release.
    [http://www.sun.com/software/solaris/releases.jsp|http://www.sun.com/software/solaris/releases.jsp]
    The earlier ones need fewer hardware resources. I also recall a few forum posts that seem to suggest the bootblock structure on the CD's and DVD's of those earlier releases was more compatible with older hardware.
    You might also need to get yourself a copy of the OBP 4.x Command Reference Manual, document No. 816-1177
    [http://dlc.sun.com/pdf/816-1177-10/816-1177-10.pdf|http://dlc.sun.com/pdf/816-1177-10/816-1177-10.pdf]

  • Solaris 10 and sunfire V210 server

    I have a sunfire v210 server and Solaris 10 is already preinstalled. When I set up the server I asked for no DHCP and configured the network card on bge0 with a specified IP address. Somehow the configuration . How do I configure bge0

    If you just want to configure bge0 ... until next reboot:
    ifconfig bge0 inet <IP> netmask <NETMASK> up
    If you want to make it persistent after next reboot:
    check the content of the file /etc/hostname.bge0 make sure it matches
    the entry in /etc/hosts (and /etc/inet/ipnodes)
    If you want to re-configure your server from scratch /usr/sbin/sys-unconfig
    Coco D.

  • How to Restart Sun Solaris SunFire V445

    Hi all,
    May i know whether this command "shutdown -g0 -y -i6" is for restart server? Normally our practice is to physically press the server 'start' botton and the server boot up everything such as Oracle, Tomcat, Mount Point and other Scriptings automatically.
    I'm wondering above command is having the same function with the press 'start' button. Also how about "init 6" command?
    Thanks.

    Well, the -i 6 flag tells you that shutdown will call 'init' with the argument '6'.
    Since you use -y (yes) and -g0 (wait for 0 seconds before calling 'init 6') the only difference between shutdown and init in this case is that shutdown will wall out a message to the connected users before running init 6.
    The command is equivalent to shutting down and power off the system and pressing the 'start' button.
    .7/M.

  • WLS6.1 hanging on Solaris- and SIGQUIT doesn't work

    Hi,
    We are experiencing a problem that looks like a deadlock when our server is under load (using WLS6.1SP2, Solaris 8 and the 1.3.1 JVM supplied with WLS). After processing many requests, the server hangs and CPU usage drops to 0%. Unfortunately the standard means of getting a thread dump (sending a SIGQUIT with kill -3 or Ctrl-\) does nothing. The problem also occurs if WebLogic is running under debug (using
    -Xdebug -Xnoagent -Djava.compiler=none -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5555) but alas the debugger hangs when trying to pause the server after this deadlock). It appears as though the server is not accepting any requests (including administrative requests from the console) but this doesn't seem to be due to thread starvation as CPU usage is 0%.
    The only output we can get is from truss, which seems to indicate no activity at all until the SIGQUIT is received. It seems to register the SIGQUIT but it looks as though it is not being processed.
    Does anyone have any ideas?
    Kevin.

    We found a solution to this problem, relating to the threading model that the JVM
    uses.
    Have a look at http://java.sun.com/docs/hotspot/threads/threads.html for more
    details.
    The default threading model on Solaris 8 is many-to-many (threads to LWPs) with
    thread-based synchronisation. After playing with various threading models, we
    found that the best was one-to-one with the alternate thread library. This is
    the default provided by Solaris 9, but you can also tell Java to use this with
    older versions of Solaris by putting the following line in your start command
    prior to executing WebLogic:
    export LD_LIBRARY_PATH=/usr/lib/lwp:$LD_LIBRARY_PATH
    Apologies to anyone who was looking for an answer to this beforehand: I should
    have replied to this newsgroup back in September!
    Kevin Thomas
    J2EE Consultant
    LogicaCMG
    Charlie Therit <[email protected]> wrote:
    Kevin,
    If you are not able to capture a JVM thread dump, then the next best
    thing would be to capture several "/usr/proc/bin/pstack pid" C-level
    thread dumps. This information may enable BEA Support to help suggest
    potential work arounds. Depending upon the data in the pstack output,
    you may also wish to open a support case with Sun.
    Sincerely,
    Charlie Therit
    Developer Relations Engineer
    BEA Support
    Kevin Thomas wrote:
    Hi,
    We are experiencing a problem that looks like a deadlock when our serveris under load (using WLS6.1SP2, Solaris 8 and the 1.3.1 JVM supplied
    with WLS). After processing many requests, the server hangs and CPU
    usage drops to 0%. Unfortunately the standard means of getting a thread
    dump (sending a SIGQUIT with kill -3 or Ctrl-\) does nothing. The problem
    also occurs if WebLogic is running under debug (using
    -Xdebug -Xnoagent -Djava.compiler=none -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5555)but alas the debugger hangs when trying to pause the server after this
    deadlock). It appears as though the server is not accepting any requests
    (including administrative requests from the console) but this doesn't
    seem to be due to thread starvation as CPU usage is 0%.
    The only output we can get is from truss, which seems to indicate noactivity at all until the SIGQUIT is received. It seems to register
    the SIGQUIT but it looks as though it is not being processed.
    Does anyone have any ideas?
    Kevin.

  • JVM crash for weblogic8.1 running on solaris and JDK1.4.2_05

    Hi,
    I am an administrator of weblogic8.1 server platfrom running solaris8.1 There are 2 managed server runs on 2 solaris unix box and admin server run on a third solaris unix box. Since last couple of days, weblogic server crashing everyday creating a core file and hs_err_pidxxxx.log, on each manage server.Below is the content of hs_err_pidxxxx.log.
    Unexpected Signal : 11 occurred at PC=0xFE1CBCAC
    Function=[Unknown. Nearest: JVM_FillInStackTrace+0x4CE4]
    Library=/bea/jdk142_05/jre/lib/sparc/server/libjvm.so
    Current Java thread:
    Dynamic libraries:
    0x10000 /bea/jdk142_05/bin/java
    0xff360000 /usr/lib/libthread.so.1
    0xff3a0000 /usr/lib/libdl.so.1
    0xff200000 /usr/lib/libc.so.1
    0xff340000 /usr/platform/SUNW,Sun-Fire-V240/lib/libc_psr.so.1
    0xfe000000 /bea/jdk142_05/jre/lib/sparc/server/libjvm.so
    0xff2e0000 /usr/lib/libCrun.so.1
    0xff1e0000 /usr/lib/libsocket.so.1
    0xff100000 /usr/lib/libnsl.so.1
    0xff0d0000 /usr/lib/libm.so.1
    0xff1c0000 /usr/lib/libsched.so.1
    0xff310000 /usr/lib/libw.so.1
    0xff0a0000 /usr/lib/libmp.so.2
    0xff070000 /bea/jdk142_05/jre/lib/sparc/native_threads/libhpi.so
    0xff050000 /usr/lib/nss_files.so.1
    0xfe7d0000 /bea/jdk142_05/jre/lib/sparc/libverify.so
    0xfe790000 /bea/jdk142_05/jre/lib/sparc/libjava.so
    0xfe770000 /bea/jdk142_05/jre/lib/sparc/libzip.so
    0xf94a0000 /osmf/i3/i3v7/products/j2ee/lib/libPreciseLog.so
    0xf9480000 /usr/lib/libpthread.so.1
    0xf9460000 /usr/lib/libkstat.so.1
    0xa9050000 /bea/jdk142_05/jre/lib/sparc/libnet.so
    0xa9290000 /usr/lib/nss_dns.so.1
    0xa8db0000 /usr/lib/libresolv.so.2
    0xa9030000 /bea/weblogic814/server/lib/solaris/libmuxer.so
    0xa8b60000 /usr/ucblib/libucb.so.1
    0xa8b20000 /usr/lib/libelf.so.1
    0xa8d90000 /bea/jdk142_05/jre/lib/sparc/libnio.so
    0xa8a60000 /usr/lib/librt.so.1
    0xa8920000 /usr/lib/libaio.so.1
    0xa8900000 /usr/lib/libsendfile.so.1
    0xa83e0000 /bea/jdk142_05/jre/lib/sparc/libioser12.so
    Heap at VM Abort:
    Heap
    def new generation total 339264K, used 293091K [0xa9400000, 0xbe950000, 0xbe950000)
    eden space 329024K, 87% used [0xa9400000, 0xbac61f00, 0xbd550000)
    from space 10240K, 58% used [0xbd550000, 0xbdb26ea0, 0xbdf50000)
    to space 10240K, 0% used [0xbdf50000, 0xbdf50000, 0xbe950000)
    tenured generation total 699072K, used 204153K [0xbe950000, 0xe9400000, 0xe9400000)
    the space 699072K, 29% used [0xbe950000, 0xcb0ae7f8, 0xcb0ae800, 0xe9400000)
    compacting perm gen total 65024K, used 64974K [0xe9400000, 0xed380000, 0xf9400000)
    the space 65024K, 99% used [0xe9400000, 0xed373a30, 0xed373c00, 0xed380000)
    Local Time = Mon Nov 20 13:17:55 2006
    Elapsed Time = 150397
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_05-b04 mixed mode)
    any idea?

    Hi Jitesh
    JVM crash could be because of any code, it could be weblogic or your own application or a bug in JDK itself.
    1) You can run tools like GDB on the core file which will indicate the source of the crash.
    From the stack it looks like a Sun JDK bug
    2) Search on sun for this error code shows some known bugs. Checkout http://onesearch.sun.com/search/onesearch/index.jsp?charset=utf-8&col=developer-debugging&qt=4F530E43505002EF+01&rt=true&cs=false
    3) You can also upgrade the JVM to the latest version of 1.4.2. I believe you have 1.4.2_05
    Vimala-

  • 10.7 to R11i On Solaris and Custom Interfaces

    Hi,
    We are planning to migrate from 10.7 to R11i on Solaris machine. We have developed custom interfaces with Oracle AP, AR and INV modules. We have GL, AP, AR, Cash Management, Inventory and purchasing modules implemented. We would really appreciate your help on following:
    1. How correct are sizing guidelines specified in R11i Installation manual?
    2. Should we have database and application servers on same machine? If not what type of application server is recommended i.e. NT or Solaris. Any performance issues in either approach?
    3. If we go for single node installations do we have to generate FMX files for custom forms under Solaris?
    4. Is it recommended to have APPL_TOP on one disk or we can split on multiple disks.
    5. Which browser is recommended i.e. Netscape Ver x.x or Internet Explorer x.x?
    6. What sorts of problems were encountered for custom interfaces?
    7. Our development server is supporting 10.7 but we are sure it cant handle R11i upgrade. Is it recommended to carry out upgrade on production machine or should have separate machine to carry out this project?
    8. Any other upgrade issues relevant to R11i upgrade on Solaris?
    We would appreciate if someone share the upgrade problems and experiences.
    Thanks
    null

    Hello TheGlamazon
    We know everyone is super exited about these amazing phones. As your order moves through the process, you can check the status at http://bit.ly/RjmCUB. You may not be able to see a change from Processing until it officially ships, then you'll see the tracking number. If you've received a confirmation email that your order was submitted, any additional information throughout the fulfillment process will be sent to that same email address. Congrats on your new phone!
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport

  • Wireless Networking / Solaris and a Dell Dimension 8100

    I'm getting ready to buy a Dell Dimension 8100 and I want to install Win2K, Solaris 8, and Mandrake Linux on it. I'm also interested in setting up a Wireless network in my house. I can get the following wireless setup from Dell, but will it work with Solaris?
    Dell Truemobile 1150 Wireless Networking PCI Card and Base Station
    Thanks,
    Matt

    Hi,
    Yes, based on its specs, it has wireless g:
    Connectivity
    USB 2.0
    Ethernet
    PictBridge
    Wireless 802.11g
    HP Printer Adapters with Bluetooth Wireless Technology (HP models bt450, bt500) (optional)
    Hope this helps.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for