Sun Java Web Server 6.1SP4 deadlock, stops responding

Hi, i have a java web app on a Java Web SErver 6.1SP4 and when there are a lot of users the web server hangs, it stops responing. After a while (from 2 to 15 minutes) it start responding again. This serves neither dinamic nor static content. CPU usage is 100%. Just stoping and restarting the web server instance it works properly (even with the same or greater number of clients).
Reading many posts some one wrote to use pstack to see whats happening. I did it, but i can't interpret results (i think there is a deadlock but don't know if thats true and how to resolve it).
Any hint will be appreciated
There are a lot of blocks like this:
----------------- lwp# 3468 / thread# 3468 --------------------
fe11f950 lwp_mutex_lock (918c18)
fd692384 __1cNObjectMonitorGenter26MpnGThread__v_ (5000, 525c, 5000, 50dc, 4800, 4af0) + 2d8
fd6324d4 __1cSObjectSynchronizerKfast_enter6FnGHandle_pnJBasicLock_pnGThread__v_ (e104f604, e104f77c, 831ff50, 0, 35d654, fd6328ec) + 68
fd632954 __1cQinstanceRefKlassZacquire_pending_list_lock6FpnJBasicLock__v_ (e104f77c, fd970000, e7330000, 4491d4, fd61bc2c, 0) + 78
fd63167c __1cPVM_GC_OperationNdoit_prologue6M_i_ (e104f764, 4400, fd970000, 2cdc0, 4a6268, 1) + 38
fd62e0b0 __1cIVMThreadHexecute6FpnMVM_Operation__v_ (e104f764, 80e9b0, 0, 0, 1, 0) + 90
fd52c2a4 __1cbCTwoGenerationCollectorPolicyRmem_allocate_work6MIii_pnIHeapWord__ (2e368, fd9c29ec, fd9c297c, fd931a26, 4800, 4998) + 160
fd522940 __1cNinstanceKlassRallocate_instance6MpnGThread__pnPinstanceOopDesc__ (f3c09020, 831ff50, 81e33e0, 4000, 4178, 0) + 180
fd7b7744 __1cQjava_lang_StringQbasic_create_oop6FpnQtypeArrayOopDesc_ipnGThread__pnHoopDesc__ (f0a5e910, 0, 831ff50, 0, 1, 1) + a8
fd63228c jni_NewStringUTF (831ffe4, 605b9c8, fd587824, 80e9f8, 4800, 4998) + b8
fdafdefc __1cKNSJavaUtilQsetStringElement6FpnHJNIEnv__pnN_jobjectArray_Ipkc_v_ (831ffe4, ace7e4, 2, 605b9c8, 4, 605b828) + 34
fdb068dc __1cONSAPIConnectorOgetRequestInfo6MpnHJNIEnv__pnN_jobjectArray_4pnK_jintArray__v_ (e104fabc, 831ffe4, ace7e4, ace7e0, ace7dc, 4) + 9c
fdb042e4 __1cONSAPIConnectorHservice6MpnRJ2EEVirtualServer__i_ (e104fabc, ea9560, 8, 84b9464, 6d137e0, ace7dc) + 260
fdb02734 service_j2ee (3c1c0, 84b97f0, 84b9868, 0, fdb11d57, 132414) + 40
ff1cf994 __1cNfunc_exec_str6FpnKFuncStruct_pnGpblock_pnHSession_pnHRequest__i_ (668, 3c1c0, 84b97f0, 84b9868, 0, 0) + 248
ff1d0db4 INTobject_execute (77308, 84b97f0, 84b9868, 0, 37ff8, 80d290) + 5e8
ff1d5de4 INTservact_service (84b97f0, 84b9868, ff2e7b58, 0, 0, ff2e7b30) + 4d8
ff1d64f4 INTservact_handle_processed (84b97f0, 84b9868, 20, 2, 605bee0, 76858) + 158
ff218a9c __1cLHttpRequestUUnacceleratedRespond6Mpc_v_ (84b9750, ff2e7b7c, 2f48, 1bb, 84b9868, 84b97f0) + 3c8
ff21818c __1cLHttpRequestNHandleRequest6MpnGnetbuf__i_ (84b9750, 6059290, 605b3f0, 605b3d8, 2000, 60592f0) + 62c
ff216588 __1cNDaemonSessionDrun6M_v_ (84b9348, 2000, ff2ed7bc, 0, 0, ff2ed774) + 17c
ff106dec ThreadMain (84b9348, 84fcef0, 3, 0, 1, 4b8) + 24
fedd0028 ptroot (84fcef0, 0, 0, 0, 20000, fede8d70) + d0
fe165c94 lwpstart (0, 0, 0, 0, 0, 0)

hi
sorry for the delayed response.
well, the problem that you are trying to run into is very common when your server is getting good amount of load and uses large amount of servlet/jsp web applications running.
here is a url that you might find it a useful read
http://java.sun.com/docs/hotspot/gc1.4.2/index.html#4.%20Types%20of%20Collectors|outline
if you do not want to take this trouble reading this document and want a quick solution, you do can do couple of things:
- first understand how to size the heap
http://java.sun.com/docs/hotspot/gc1.4.2/index.html#3.%20Sizing%20the%20Generations|outline
- understand that the system is paused because jvm is busy doing garbage collection before allowing the web server to continue.
- this can be avoided by properly tuning the jvm to how you think the server should behave. unfortunately, there is no miracle one one line to fix this issue
- by careful and decent analysis of your system, you can tune your jvm properly that it can scale very well without any glitches.
though, you will need to take the pain to learn the garbage collection acronyms and see what's best suited for you.
- first, you want to know what is happening inside the jvm before you proceed to optimize . you can do this by adding this option
-verbose:gc -XX:+PrintGCDetails
How to add this option in the server.xml , is by doing something like
start admin server -> manager your server -> click Java tab
-> click on JVM Option in the left side
-> Add this JVM option -verbose:gc -XX:+PrintGCDetails
-> restart the server
-> note, you do NOT want to leave the above option in the production environment as this will tremendously slow your application and this is meant to be only for development purposes.
- if your server is a multi processor server (has more than 1 CPU) and you want less pause time, you can typically try adding this jvm option to your server and restarting it.
-XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled
here are few other short cut , jvm options that you also try in your devleopment environment before going to production.
Server application(Like Web Server 6.1) running alone on a large multi-processor server with 4gb of physical memory.
#java -server -XX:+AggressiveHeap
Two applications running on a large multi-processor server with 4gb of physical memory. Each java application instance is allocated a part of total system memory by an explicit specification of the maximum and minimum heap sizes.
#java -server -XX:+AggressiveHeap -Xms1024m -Xmx1024m
(again, do your research before you use this option in the production environment)

Similar Messages

  • Php with xsl on Sun Java Web Server 7.0

    Hi anyone,
    i installed php as nsapi via phppack. Now i need xsl support in php. I've tryed to compile php with the following line (php 5.2.6):
    ./configure with-nsapi=/export/netscape_71 enable-force-cgi-redirect with-gettext with-zlib --with-xsl=/usr/lib64/php5/extensions
    magnus.conf, obj.conf and mime.types are assimilate to this article:
    http://developers.sun.com/webtier/reference/techart/php2.html
    After compiling, i copy the libphp5.so in the .plugins/php/ dir an restart the webserver.
    He stops with this message:
    failure: CORE2253: Error running Init function load-modules: dlopen of /export/netscape_71/plugins/php/libphp5.so failed (/export/netscape_71/plugins/php/libphp5.so: wrong ELF class: ELFCLASS64)
    failure: server initialization failed
    What's going wrong?
    How i get xsl Support on Sun Java Web Server?
    thanks!

    essential wrote:
    ./configure with-nsapi=/export/netscape_71 enable-force-cgi-redirect with-gettext with-zlib --with-xsl=/usr/lib64/php5/extensionsYou are pointing to 64-bit library path. Change it to 32-bit library path.
    failure: CORE2253: Error running Init function load-modules: dlopen of /export/netscape_71/plugins/php/libphp5.so failed (/export/netscape_71/plugins/php/libphp5.so: wrong ELF class: ELFCLASS64)
    failure: server initialization failedThis means that it expects a 32-bit library but it found a 64-bit one.

  • Error when starting Sun ONE Web Server 6.1SP4 after successful installation

    I have installed Sun ONE Web Server 6.1SP4 on my Solaris computer and I receive the following error when I try to start the Admin server:
    Sun ONE Web Server 6.1SP4 B01/20/2005 17:43
    failure: CORE3170: Configuration initialization failed: Error running init funct
    ion load-modules: dlopen of /opt/SUNWwbsvr/bin/https/lib/libj2eeplugin.so failed
    (ld.so.1: webservd: fatal: relocation error: file /opt/SUNWwbsvr/bin/https/lib/
    libares3.so: symbol __res_state: referenced symbol not found)
    I am running Solaris 8 and I have installed Patch 108993-22 as stated in chapter 2 of the installation and migration guide. I have also installed patches 116602-01, 115827-01, 113648-03, 112396-02, 111317-05, 111310-01, 111111-04, 111023-03, 110386-03, 108987-15, and 108528-24 since they are necessary for patch 108993-22.
    I have been stumped by this error. I have tried several different ways to install this software but I always get the same error. I believe that I have the latest version of the Sun One Web Server and I received no error notifications when I installed it! Any help would be apeciated!
    Thanks!!!!!

    I think this might occur if you don't have the patch for SunAlert 46042 installed. There's more information on this critical Solaris security vulnerability, which was reported back in 2002, at http://sunsolve.central.sun.com/search/document.do?assetkey=1-26-46042-1
    Can you run the following command to check if you have patch 109326-09 installed and let us know the result?showrev -p | grep 109326If you don't have 109326-09 or higher installed, you should install it as soon as possible. You can follow the link from the SunAlert. Better yet, install the latest Solaris 8 recommended patch cluster from http://sunsolve.sun.com/pub-cgi/show.pl?target=patches/patch-access to make sure your system is fully patched and up to date.

  • Sun Java Web Server 7 and JNDI Jell

    Hi all,
    I am building a normal Java EE web app (WAR file), and I was originally developing on GlassFish v2.1 and everything was beautiful. Now, I found out our shared server is Sun Java Web Server 7, but the sys admin said everything should run fine as long as I wasn't using JSB's.
    I downloaded and installed SJWS7 on my local machine so I could test my application against it, and JPA and SJWS7 are not getting along.
    I am trying to bind my persistence.xml to the data source I created on SJWS7.
    SJWS7 JDBC Resource: jdbc/pact
    persistence.xml:
        <persistence-unit name="pact" transaction-type="RESOURCE_LOCAL">
            <description>PA/Circuit Tracking Development</description>
            <provider>org.hibernate.ejb.HibernatePersistence</provider>
            <non-jta-data-source>java:comp/env/jdbc/pact</non-jta-data-source>
            <properties>
            ....There is nothing in sun-web.xml or web.xml that references this resource (although I tried that too, and no go).
    The traceback I get is:
    <code>Caused by: javax.naming.NameNotFoundException: PWC4216: Name pact is not bound in this Context
         at org.apache.naming.NamingContext.lookup(NamingContext.java:778)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:148)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:789)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:148)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:789)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:148)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:789)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:161)
         at org.apache.naming.SelectorContext.lookup(SelectorContext.java:147)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvider.java:52)
         ... 151 moreI've been trying for almost an entire day now, and googling isn't revealing anything helpful. I don't know what I'm doing wrong. Can anyone point me in the right direction?

    u should be using
    - default installation ( you can also use silent installation for this)
    admin-server/bin/startserv
    wadm delete-instance --user admin
    wadm delete-config --user admin                                                                                                                                                                                                                                                                                                                                                                               

  • Deploy .war or .ear file to sun java web server 7.0 update 4

    Hi
    This could be a very daft question, but still I would like to get a clarification.
    My clients are a financial organisation, and for security and various other reasons they accept only .ear files. But this time the development and deployment would be done on Sun Java Web Server 7.0 update 4 . Now since its a web server I don't think I can deploy an .ear file.
    But sure I would like to get an answer from the experts here, is it possible to deploy and .ear file to Sun Java Web Server 7.0 before I can go back to my clients.
    Please help me here as I'm in a real big confusion here. Your help would be highly valuable to me.
    Thanks
    Jagdish

    Hi
    Thanks for the reply and I appreciate your help. Well I tried deploying an .ear file directly and web server 7 complains that it doesn't have a .war extension, understandably so.
    And then ripping apart the .ear file and deploying the .war file does work, as is expected of a web server.
    Well, about my customer is a bank and they have a very tight security policy, and why they need an .ear file is beyond my understanding. Well as far as this issue is concerned, I need a strong point so that I can get back to them that we need to comply to the third party software.
    But I didn't wan't to get back to them saying we can only provide a .war file and then later find out an .ear file could have done the job. And being seen as the technical experts we can't afford to make any mistake.
    Thanks
    Jagdish

  • Install certifcate on sun java web server 7.0

    we just moved away from IIS and servlet exec because of issues we are having with the speed. sun java web server was like 4 times faster. we had the web app up and running, but for some reason we couldnt figure out how to install a certificate. i went through the request wizard and got the code and sent it to digicert and got my code for the certificate. i then installed it by pasting it, after i finish i get this error (unknown option 'by'). can someone point me in the right direction.
    my only guess so far was i am using *.domain.com in the domain field, when you request the certificate.

    I can't see anything wrong with the steps you followed to install the certificate. Are you using Web Server 7.0 or Web Server 7.0 update 1? As far as I remember, in Web Server 7.0, wildcard characters like * were not allowed in the "Server Name(cn)" field of request certificate wizard. This got fixed in 7.0 update1 release.
    Can you post you server logs so that we can figure out what is wrong? You can as well try certutil command as been suggested by mv and let us know if you could manage to install the certificate.

  • Problem installing Sun Java Web Server

    Hi
    I'm trying to install Sun Identity Server which need Sun Java Web Server...
    I try to install identity server and web server using Sun Java Enterprise System Install Wizard...
    When I came to page Identity Server:Sun Java System Web Server (3 of 6 ) and I entered Hostname, dir1.usmnet, I get an error pop-up window stating Host Name is not valid......but if I typed dir1.domain.com the error message didn' t appear.....
    I'm using Solaris 9 on Intel platform. I have setup my network and able to ping to other valid hostname in my LAN....
    FYI my network information are as follows
    /etc/hosts
    127.0.0.1 localhost
    <my ip > dir dir.usmnet loghost
    /etc/hostname.elxl0
    dir1
    /etc/resolv.conf
    domain usmnet
    nameserver <dns server ip>
    search usmnet
    I have also setup /etc/netmasks and /etc/defaultrouter
    When I type the domainname command, nothing appeared
    What when wrong, I could ping to my dns server and to other computer in this LAN, could anybody give a suggestion ?

    OK, found the solution by myself.
    The Administrator's Guide mentiones the possibility to install a certificate with the wadm CLI, so I tried that:
    wadm> install-cert -v --config=www -y server -n Server-Cert /www.crt    
    Please enter token-pin>
    ADMIN4086: The Certificate could not be installedThe CLI Reference Manual says for the command install-cert, option --replace*:
    "Note – --replace option of install-cert CLI is deprecated
    and currently using this option may not work as expected.
    For replacing a CA-signed certificate, users should delete the
    cert using delete-cert CLI and then install the new one
    using install-cert CLI."
    wadm> install-cert -v --config=www -y server -n Server-Cert --replace /www.crt 
    Please enter token-pin>
    ADMIN4112: No Private key foundOK, so maybe if I had installed the first certificate (before generating the new CSR) that would have worked, I don't know.
    Deleting the old cert doesn't work at once:
    wadm> delete-cert -v --config=www Server-Cert
    Please enter token-pin>
    ADMIN4139: Certificate Server-Cert is being referred to by listeners: http-listener-2So before deleting you have to remove the certificate from the listener. Then:
    wadm> delete-cert -v --config=www Server-Cert                                           
    Please enter token-pin>
    CLI201 Command 'delete-cert' ran successfully
    wadm> install-cert -v --config=www -y server -n Server-Cert /www.crt  
    Please enter token-pin>
    CLI201 Command 'install-cert' ran successfullyAfter re-adding the certificate to the ssl listener and deploying all the changes to the servers
    everything is fine.
    F.D.

  • Using Sun Java Web Server 2.0 for XSQL

    In the documentation for XSQL, a number of Java Web servers are described but not Sun java web server. I need to know the configuration for Sun java web server 2.0 for running XSQL.
    null

    This is not enough information to be useful.

  • Sun ONE Web Server 6.1SP4 - Crashing

    I am getting the below while starting the web server instance. I have checked with the OS support team and they confirmed that the system is upto date with all the OS patches. Can someone please help?
    Sun ONE Web Server 6.1SP4 B01/20/2005 17:43
    catastrophe: CORE3260: Server crash detected (signal SIGSEGV)
    info: CORE3262: Crash occurred in function strlen from module /usr/lib/libc.so.1

    Thanks. I got it now. Here is the output of pstack.
    # pstack core.webservd.10594.evapsd005.0.0.1137645487
    core 'core.webservd.10594.evapsd005.0.0.1137645487' of 10594: webservd -r /opt/geps/iPlanet -d /opt/geps/iPlanet/https-admserv/confi
    ----------------- lwp# 1 / thread# 1 --------------------
    fe0331d0 strlen (286f626a, 400, 544, 0, ff0ef758, 0) + 38
    ff0b7390 ldap_charray_dup (ff0ddea0, 0, fda61118, ff3de7a8, 0, 0) + 68
    fd39cd48 ldap_url_dup (b27f8, 0, ffffffff, fffffff8, 0, ae565) + 1ac
    fd39cd7c ldap_url_duplist (b27f8, 0, 0, 4, 1, fd3bf4c8) + 14
    fd388e48 ldap_create (fffffff6, 32, 0, fe0bf789, fd3dc618, fd3dc602) + d8
    fd3890a4 ldap_initialize (fd3ed488, fd3ed808, fd3dc5e8, fd3dc710, fd3dc440, 0) + 8
    fd3d2a80 do_init (fd3ed488, ffbeefd8, fd3ee708, d, 0, 0) + 1bc
    fd3d34a0 do_init2 (0, ff000000, 0, fd3d6c34, ae4a8, 72) + 10
    fd3d6968 nssldap_getgroupsbymember_r (adaa0, ffbef5a4, adaa0, ae49c, fe09890c, ae3e0) + 38
    fe0498bc nss_search (1, fe0bef4c, fe0c35a4, fd3d6930, ae3e8, adaa0) + 1cc
    fe098698 _getgroupsbymember (59cf0, fe0abcbc, 10, 1, ae3e0, fe0bc008) + ac
    fe040f00 initgroups (ae398, ffffffff, 10, 59cf0, ff2f1cac, 59b88) + 84
    ff245764 __1cJWebServerDRun6F_nIPRStatus__ (ff2eedb0, ff2eed74, bbd18, ff2eedb4, 2c24, ff2c1624) + 6e8
    00010ab0 main (7, ffbef74c, ffbef76c, 20c00, 0, 0) + 1c
    00010a70 _start   (0, 0, 0, 0, 0, 0) + 108
    ----------------- lwp# 2 / thread# 2 --------------------
    fe09dbe4 _poll    (fdbbede0, fdbf0200, 1388, 1, fdbbede0, fe097c80) + 8
    fedc9568 pt_poll_now (fdbbee48, a, 3, ffffffff, ffffffff, 20) + 48
    fedca460 pt_Read (ffffffff, fdbbeed8, 1000, 178c, 1e9ec, 0) + e0
    ff23f058 __1cRLogNsprDescriptorDrun6M_v_ (66960, 1, fdbbeed8, 0, 1400, ff2e069c) + 44
    ff106dec ThreadMain (66960, 0, 2, 0, 1, 4b8) + 24
    fedd0028 ptroot (96600, fdbf0200, 0, 0, 10000, fede8d70) + d0
    fe154c3c lwpstart (0, 0, 0, 0, 0, 0)
    ----------------- lwp# 3 / thread# 3 --------------------
    fe09dbe4 _poll    (fdb3ede0, fdbf0400, 1388, 1, fdb3ede0, fe097c80) + 8
    fedc9568 pt_poll_now (fdb3ee48, f, 3, ffffffff, ffffffff, 20) + 48
    fedca460 pt_Read (ffffffff, fdb3eed8, 1000, 178c, 1e9ec, 0) + e0
    ff23f058 __1cRLogNsprDescriptorDrun6M_v_ (b7f80, 2, fdb3eed8, 1, 1400, ff2e069c) + 44
    ff106dec ThreadMain (b7f80, 0, 2, 0, 1, 4b8) + 24
    fedd0028 ptroot (ccd30, fdbf0400, 0, 0, 10000, fede8d70) + d0
    fe154c3c lwpstart (0, 0, 0, 0, 0, 0)
    #

  • Is Sun Java Web Server 6.1 compatible with RedHat 5.5

    Hi,
    Sun Java web Server 6.1 installed on Red Hat 5.1 and Opertaing System is going to be upgraded to Red Hat 5.5. Can any one tell me whether Sun Java Web Server 6.1 is compatible with Red Hat Linux 5.5

    If you want the internal server to service requests for /admin, you should teach the internal server to service requests for /admin.
    It is possible -- but complicated -- to configure Web Server 6.1 to rewrite request URIs before proxying requests to the internal server. However, unless you rewrite all the HTML generated by the internal server, the results probably won't be what you want. Consider, for example, what happens if the internal server's HTML references /foo.gif. Does that mean the web browser should ask for /admin/foo.gif or /foo.gif?
    Rewriting request URIs is much simpler in Web Server 7.0, but it's still probably not the right tool.

  • Unable to start sun java web server 6.1 SP4

    Hi,
    I have recently installed sun java web server 6.1 SP4 on solaris 10. The directory structure it created was completely different from the one mentioned in the documentation. I could not find the https-adminserv directory under the web server root directory. Instead the closest directory was bin/https/httpadmin/bin directory. On executing ./start it gave an error
    ld.so.1: start: fatal: libssl3.so: open failed: No such file or directory
    Killed
    Any help is welcome. Thanks.
    I had not installed the webserver in the standard location /opt/SUNWwbsrvr but in /BCP partition.

    also, you can do something like
    cd https-admserv
    sh -x start
    this will show as to what is the current LD_LIBRARY_PATH is pointing to and why ssl3.so is not getting loaded.
    if you don't see
    https-* under web server install root directory, then something wrong with your installation as well.
    yes, if u stand alone version of web server, then you shouldn't run into any dependencies issue. u can also get 6.1 sp6 version from web - http://www.sun.com/webserver

  • Sun Java Web Server and SLES 10

    I have just downloaded and installed Sun Java Web Server under SuSE Linux Enterprise Server 10, however are unable to get it to work. The installer runs fine however I am unable to start the admin server. The message i receive is
    Sun Java System Web Server 7.0U1 B06/12/2007 21:21
    catastrophe: CORE3260: Server crash detected (signal SIGSEGV)
    failure: server initialization failed
    The error log is not terribly helpful either.
    [27/Oct/2007:16:46:32] info (14424): CORE1116: Sun Java System Web Server 7.0U1 B06/12/2007 21:21
    [27/Oct/2007:16:46:33] catastrophe (14425): CORE3260: Server crash detected (signal SIGSEGV)
    Any help would be gratefully appreciated

    Thanks for the reply Chilideveloper, here is the output of the core dump. I hope it is a) the right thing and b) helpful
    GNU gdb 6.6
    Copyright (C) 2006 Free Software Foundation, Inc.
    GDB is free software, covered by the GNU General Public License, and you are
    welcome to change it and/or distribute copies of it under certain conditions.
    Type "show copying" to see the conditions.
    There is absolutely no warranty for GDB. Type "show warranty" for details.
    This GDB was configured as "i586-suse-linux"...
    (no debugging symbols found)
    Using host libthread_db library "/lib/libthread_db.so.1".
    warning: Can't read pathname for load map: Input/output error.
    Reading symbols from /sun/webserver7/lib/liblibdbm.so...(no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/liblibdbm.so
    Reading symbols from /sun/webserver7/lib/libns-httpd40.so...(no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libns-httpd40.so
    Reading symbols from /sun/webserver7/lib/liblibsi18n.so...
    (no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/liblibsi18n.so
    Reading symbols from /sun/webserver7/lib/libgetprop.so...(no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libgetprop.so
    Reading symbols from /sun/webserver7/lib/libnsprwrap.so...
    (no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libnsprwrap.so
    Reading symbols from /sun/webserver7/lib/libldap60.so...(no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libldap60.so
    Reading symbols from /sun/webserver7/lib/libprldap60.so...
    (no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libprldap60.so
    Reading symbols from /sun/webserver7/lib/libsasl.so...(no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libsasl.so
    Reading symbols from /sun/webserver7/lib/libxerces-c.so.26...
    (no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libxerces-c.so.26
    Reading symbols from /sun/webserver7/lib/libxalan-c.so.19...(no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libxalan-c.so.19
    Reading symbols from /sun/webserver7/lib/libxalanMsg.so.19...
    (no debugging symbols found)...done.
    Loaded symbols for /sun/webserver7/lib/libxalanMsg.so.19
    Reading symbols from /sun/webserver7/lib/libpcre.so.0...done.
    Loaded symbols for /sun/webserver7/lib/libpcre.so.0
    Reading symbols from /sun/webserver7/lib/libicui18n.so.3...done.
    Loaded symbols for /sun/webserver7/lib/libicui18n.so.3
    Reading symbols from /sun/webserver7/lib/libicuuc.so.3...done.
    Loaded symbols for /sun/webserver7/lib/libicuuc.so.3
    Reading symbols from /sun/webserver7/lib/libicudata.so.3...done.
    Loaded symbols for /sun/webserver7/lib/libicudata.so.3
    Reading symbols from /sun/webserver7/lib/libplc4.so...done.
    Loaded symbols for /sun/webserver7/lib/libplc4.so
    Reading symbols from /sun/webserver7/lib/libplds4.so...done.
    Loaded symbols for /sun/webserver7/lib/libplds4.so
    Reading symbols from /sun/webserver7/lib/libnspr4.so...done.
    Loaded symbols for /sun/webserver7/lib/libnspr4.so
    Reading symbols from /lib/libpthread.so.0...done.
    Loaded symbols for /lib/libpthread.so.0
    Reading symbols from /lib/libdl.so.2...done.
    Loaded symbols for /lib/libdl.so.2
    Reading symbols from /lib/libcrypt.so.1...done.
    Loaded symbols for /lib/libcrypt.so.1
    Reading symbols from /lib/libresolv.so.2...done.
    Loaded symbols for /lib/libresolv.so.2
    Reading symbols from /usr/lib/libstdc++.so.5...done.
    Loaded symbols for /usr/lib/libstdc++.so.5
    Reading symbols from /lib/libm.so.6...done.
    Loaded symbols for /lib/libm.so.6
    Reading symbols from /lib/libgcc_s.so.1...done.
    Loaded symbols for /lib/libgcc_s.so.1
    Reading symbols from /lib/libc.so.6...done.
    Loaded symbols for /lib/libc.so.6
    Reading symbols from /sun/webserver7/lib/libssl3.so...done.
    Loaded symbols for /sun/webserver7/lib/libssl3.so
    Reading symbols from /sun/webserver7/lib/libsmime3.so...done.
    Loaded symbols for /sun/webserver7/lib/libsmime3.so
    Reading symbols from /sun/webserver7/lib/libnss3.so...done.
    Loaded symbols for /sun/webserver7/lib/libnss3.so
    Reading symbols from /sun/webserver7/lib/libnsfc.so...done.
    Loaded symbols for /sun/webserver7/lib/libnsfc.so
    Reading symbols from /sun/webserver7/lib/libnstp.so...done.
    Loaded symbols for /sun/webserver7/lib/libnstp.so
    Reading symbols from /sun/webserver7/lib/libnstime.so...done.
    Loaded symbols for /sun/webserver7/lib/libnstime.so
    Reading symbols from /sun/webserver7/lib/libsupport.so...done.
    Loaded symbols for /sun/webserver7/lib/libsupport.so
    Reading symbols from /sun/webserver7/lib/libares3.so...done.
    Loaded symbols for /sun/webserver7/lib/libares3.so
    Reading symbols from /usr/lib/libz.so.1...done.
    Loaded symbols for /usr/lib/libz.so.1
    Reading symbols from /sun/webserver7/lib/libxsd2cpp.so...done.
    Loaded symbols for /sun/webserver7/lib/libxsd2cpp.so
    Reading symbols from /sun/webserver7/lib/libssldap60.so...done.
    Loaded symbols for /sun/webserver7/lib/libssldap60.so
    Reading symbols from /lib/ld-linux.so.2...done.
    Loaded symbols for /lib/ld-linux.so.2
    Reading symbols from /sun/webserver7/lib/libsoftokn3.so...done.
    Loaded symbols for /sun/webserver7/lib/libsoftokn3.so
    Reading symbols from /lib/libnss_compat.so.2...done.
    Loaded symbols for /lib/libnss_compat.so.2
    Reading symbols from /lib/libnsl.so.1...done.
    Loaded symbols for /lib/libnsl.so.1
    Reading symbols from /lib/libnss_ldap.so.2...done.
    Loaded symbols for /lib/libnss_ldap.so.2
    Reading symbols from /usr/lib/libldap-2.3.so.0...done.
    Loaded symbols for /usr/lib/libldap-2.3.so.0
    Reading symbols from /usr/lib/liblber-2.3.so.0...done.
    Loaded symbols for /usr/lib/liblber-2.3.so.0
    Reading symbols from /usr/lib/libgssapi_krb5.so.2...done.
    Loaded symbols for /usr/lib/libgssapi_krb5.so.2
    Reading symbols from /usr/lib/libsasl2.so.2...done.
    Loaded symbols for /usr/lib/libsasl2.so.2
    Reading symbols from /usr/lib/libssl.so.0.9.8...done.
    Loaded symbols for /usr/lib/libssl.so.0.9.8
    Reading symbols from /usr/lib/libcrypto.so.0.9.8...done.
    Loaded symbols for /usr/lib/libcrypto.so.0.9.8
    Reading symbols from /usr/lib/libkrb5.so.3...done.
    Loaded symbols for /usr/lib/libkrb5.so.3
    Reading symbols from /usr/lib/libk5crypto.so.3...done.
    Loaded symbols for /usr/lib/libk5crypto.so.3
    Reading symbols from /lib/libcom_err.so.2...done.
    Loaded symbols for /lib/libcom_err.so.2
    Reading symbols from /usr/lib/libkrb5support.so.0...done.
    Loaded symbols for /usr/lib/libkrb5support.so.0
    Reading symbols from /sun/webserver7/lib/libj2eeplugin.so...done.
    Loaded symbols for /sun/webserver7/lib/libj2eeplugin.so
    Reading symbols from /root/Downloads/java/jdk1.6.0_03/jre/lib/i386/server/libjvm.so...done.
    Loaded symbols for /root/Downloads/java/jdk1.6.0_03/jre/lib/i386/server/libjvm.so
    Reading symbols from /sun/webserver7/lib/libdavplugin.so...done.
    Loaded symbols for /sun/webserver7/lib/libdavplugin.so
    Reading symbols from /sun/webserver7/lib/libwebdav.so...done.
    Loaded symbols for /sun/webserver7/lib/libwebdav.so
    Reading symbols from /sun/webserver7/lib/libfreebl3.so...done.
    Loaded symbols for /sun/webserver7/lib/libfreebl3.so
    Reading symbols from /sun/webserver7/lib/libnssckbi.so...done.
    Loaded symbols for /sun/webserver7/lib/libnssckbi.so
    Core was generated by `webservd -d /sun/webserver7/admin-server/config -r /sun/webserver7 -t /tmp/admi'.
    Program terminated with signal 11, Segmentation fault.
    #0 0xb67bbdd5 in strtok () from /lib/libc.so.6

  • Sun java web server for Zlinux (Linux for System Z)?

    Hi
    thank you for reading my post
    Is there any version of Sun java web server available for Z linux?
    Or its better to say whether linux edition of sun java web server run under Zlinux (linux for System Z)
    thanks

    No version of Web Server is certified on ZLinux.

  • Sun Java Web Server and IPlanet

    Are there any issues with running IPlanet and Sun Java Web Server at the same time. The old Web-site are in Servlet format and the new Web site will be deployed with a .war file, so I would like to run both at the same time until I have customized the new Sun Java Web Server instance. Is this possible and if so are there any issues with running them at the same time?

    You can install iPlanet Web Server and Sun Java System Web Server on the same Solaris system, provided that each server is installed to a separate directoy. If each server is configured to listen on a different port and/or IP address, the two servers can run concurrently without problem.

  • Sun Java Web Server Administration Server Backup

    Hi!
    I've a question about Sun Java Web Server Administration Server backup, how it's possible to backup all the config, the Administration Nodes keys included? I'm thinking about in case of full damage of Administration Server how can I install a new one and restore all the config so I can manage the cluster again? Or it is necessary to re-register the Node's to the new Administration Server? In this case how can I restor to the Administration Server the application's, virtual servers, etc...?
    Regards,
    bzg

    The Admin Server is another instance of Web Server, but with some web-apps that know how to manage configuration files, etc. There's nothing real magical going on in there. You should be able to wholesale backup the entire directory and, if needed, restore it (in fact I've done this several times).
    The files in the admin instance are considered a private interface, meaning that Sun does not guarantee that they won't change in location or format from one Update to another, but in practice they rarely change.
    Regarding the nodes specifically - communication between the nodes and the admin instance is done over SSL using a self-signed certificate that was generated when the admin server was installed. The certificate is in the admin instance's config/cert8.db and key3.db files just as it would be for any "normal" instance. Keep those backed up along with admin-serv/config-store/ and you should feel pretty confident that you have the configs, nodes, and certificate/key backed up.
    Again - the files in the admin instance are considered a private interface. There are no user-serviceable parts inside. You may burn your fingers and start a fire. Your mileage may vary. Files from WS7.0u4 may break things if restored into a WS7.0u10 deployment, etc etc etc.

Maybe you are looking for

  • J1IG Excise invoice is not capturing in RG23D Register

    Dear Experts, while making GR for the materiel,Excise tab is  updating in MIGO header level.but user select no excise entry here.while excise capturing with J1IG,its not updating RG23D Register.a internalnumber is generating while capturing J1Ig,but

  • Linux: error in invoking 'ntcontab.o' of makefile while installing 11gr2

    Hey all, I installed Oracle Linux 6.1 under VirtualBox (hosted on a Windows 7 box). All is well and I began to install Oracle 11g for Linux, but ran into this error: Error in invoking target 'mkldflags ntcontab.o nnfgt.o' of makefile '/home/Roy/app/o

  • How does Non-cumulative KeyFigure Works ?

    Hi, experts ! What's the difference between the non-cumulative values of summation and of last value? And how does non-cumulative value with in-flow and out-flow works? Does anyone have relative documents? Plz post a copy to my e-mail: [email protect

  • Difference between date

    How to find a difference between two date in format 04/23/2003(mm/dd/yyyy)?

  • Patch set 3 - 10g R2

    I am wondering if anyone else has had the same problem. I have downloaded on two separate occasions patch 3 (p6810189_10204_Win32.zip) for 10g R2. When I extract the files from the zip file all I get is the readme.html even though the .zip is ~ 1GB.