Weblogic.Admin command for stopping all Managed Servers in cluster

Hello All,
I am using Weblogic 9.2 MP3 on Linux env. I have a domain which has 16 Managed servers which are part of a cluster, I have eight Managed Servers running on one physical machine and other eight running on another physical Machine.
I know we can do all stop and all start of Managed servers from console if we have node manager setup. We do not want to have node manager setup in our env.
I am looking for a way to do that using java weblogic.Admin utility
Please let me know on how we can achieve this using weblogic.Admin utility by passing clustername argument.
Thanks
Weblogic Consultant

hi sir,
I think in weblogic 9.2 weblogic.Admin utility is deprecated but it works in 9.2. We have better option than weblogic.Admin utility nothing but WLST. If u want to start using weblogic.Admin we have command
java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx START managedservername
java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx SHUTDOWN managedservername
java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx START clustername
java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx SHUTDOWN clustername
If u want to use WLST for starting managed servers and clusters
check the follwing steps.
1. java weblogic.WLST
2. startNodeManager()
3. TAKE ANOTHER COMMAND PROMPT START ADMIN SERVER
4. TAKE ANOTHER COMMAND PROMPT
java weblogic.WLST
5. start('man1','Server') or start('man1','Server','localhost:7003')
6. start('mycluster','Cluster')
7.shutdown('man1','Server') or start('man1','Server','localhost:7003')
8.shutdown('mycluster','Cluster')
regards
abhi
Edited by: sumanth_abhi on Feb 5, 2009 8:54 PM

Similar Messages

  • Weblogic.Admin command

    After I ran setEnv.sh, I used Java weblogic.Admin command for THREAD_DUMP, it produced error "Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/Admin
    ". What would be the best way to run a THREAD_DUMP, kill -3 PID or a java command?

    hi sir,
    I think in weblogic 9.2 weblogic.Admin utility is deprecated but it works in 9.2. We have better option than weblogic.Admin utility nothing but WLST. If u want to start using weblogic.Admin we have command
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx START managedservername
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx SHUTDOWN managedservername
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx START clustername
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx SHUTDOWN clustername
    If u want to use WLST for starting managed servers and clusters
    check the follwing steps.
    1. java weblogic.WLST
    2. startNodeManager()
    3. TAKE ANOTHER COMMAND PROMPT START ADMIN SERVER
    4. TAKE ANOTHER COMMAND PROMPT
    java weblogic.WLST
    5. start('man1','Server') or start('man1','Server','localhost:7003')
    6. start('mycluster','Cluster')
    7.shutdown('man1','Server') or start('man1','Server','localhost:7003')
    8.shutdown('mycluster','Cluster')
    regards
    abhi
    Edited by: sumanth_abhi on Feb 5, 2009 8:54 PM

  • Commands for STOPPING admin and managed servers

    I am writing a script for our application, which apart from building and
    deploying application, also needs to stop and start both admin and managed
    servers. Is there any command available for properly stopping the weblogic
    servers? ( something that "initiates the shutdown")
    Thanks

    sorry i haven't moved up to 6.0 yet, so i don't know much about it :(
    hope someone else can help you there
    Manmari wrote:
    thanks bhavin. I will try this on my 6.0 However what is the command for
    stopping any of my "managed servers"? Is it the same or something like
    java weblogic.Managed "t3://managedserver:7003" SHUTDOWN
    Have you tried it. I founf a note on other newsgroup that this does not work
    for maged servers. Do you know the solution? Does it work for you?
    youe help is much appreciated
    Thanks
    "bhavin patel" <[email protected]> wrote in message
    news:[email protected]..
    i don't know if this is what you are looking for, but to stop wl 5.10
    you just need to run the weblogic.Admin class
    like this
    java weblogic.Admin "t3://yourserver:7001" SHUTDOWN <username> <password>
    hth
    Manmari wrote:
    I am writing a script for our application, which apart from building and
    deploying application, also needs to stop and start both admin and
    managed
    servers. Is there any command available for properly stopping theweblogic
    servers? ( something that "initiates the shutdown")
    Thanks

  • How to write the CMD command for restarting all obi services?

    Hi Experts,
    BIEE:11.1.1.6
    How to write the CMD command for restarting all obi services automatically by windows task scheduler?
    I am try to write the code as below, but it does not work. Please help me to review it and check what I am missing.Thanks.
    Or is there any better method for solving my requirement ? Please share me.Thanks very much.
    cd C:\InstallPath\OBIEE\instances\instance1\bin
    opmnctl stopall
    opmnctl startall
    I am facing the problem that it does not excute the 'opmnctl startall' code, which will be stopped after 'opmnctl stopall',
    So how to modify the command ?Thanks

    See if any of the these are useful or solves your query -
    4.5.2 Using a Windows Service to Start and Stop System Components
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/components.htm#BABEEAAI
    4.5.3 Using the Oracle BI Systems Management API to Programmatically Start and Stop Oracle Business Intelligence
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/components.htm#BABFGICA
    Edited by: Abhi on May 8, 2013 4:44 AM

  • Creating a Global Role using weblogic.Admin command

    Hi,
    Does anyone have an example of creating a global role using the weblogic.Admin commands? I think I have to use the INVOKE command with the DefaultRoleMapper and createRole method, but I'm not quite sure what the rest of the syntax is.
    Thanks,
    Gabriel

    Gabriel,
    The following works for me:
    weblogic.Admin -url t3://localhost:80 -username weblogic -password weblogic INVOKE -mbean "Security:Name=myrealmDefaultRoleMapper" -method createRole "" "MyGlobalRole" "Grp(Administrators)" ""
    The null first parameter identifies this role as a global role.
    The second param is the name of the role.
    The third parameter is the policy expression. Here, I've mapped the role to the Administrators group. You can also map it to users or a combo of the two. For example, to map it to the "weblogic" user, use "Usr(weblogic)" as the policy expression. If you leave this parameter empty, the role will be created but will not be mapped to anything.
    I'm not sure what the fourth parameter is for. It's not defined in the RoleEditorMBean docs but not including it causes an error. I suspect it's a description field because WLS does not seem to care what you put there.
    HTH,
    Mike

  • Command for STOPPING  admin and managed servers

    I am writing a script for our application, which apart from building and
    deploying application, also needs to stop and start both admin and managed
    servers. Is there any command available for properly stopping the weblogic
    servers? ( something that "initiates the shutdown")
    Thanks

    Scott, could you try specifying the protocol: t3 in the url of the
    servers.
    eg) java weblogic.Admin -url t3://172.17.13.46:7013 -username system
    -password
    xxx SHUTDOWN
    -mihir
    Scott Jones wrote:
    I have a script that shutsdown all my servers java weblogic.Admin -url
    neo.conway.acxiom.com:$S4_ONLINE_PORT SHUTDOWN -username system
    -password $S4_WLS_ADMIN_PW
    java weblogic.Admin -url neo.conway.acxiom.com:$S4_S4MT_PORT SHUTDOWN
    -username system -password $S4_WLS_ADMIN_PW
    java weblogic.Admin -url neo.conway.acxiom.com:$S4_WLS_ADMIN_PORT
    SHUTDOWN -username system -password $S4_WLS_ADMIN_PWThe first two
    lines shut down my managed server. The last shuts down my admin
    server. Scott [email protected]
    "Mihir Kulkarni" <[email protected]> wrote in
    message news:[email protected] here -
    Solaris 2.7 with WLS 60 sp1.
    I am not facing any problems, though!
    Fyi, my managed-server is not in a cluster.
    JD wrote:
    I am running on Solaris 2.7 using WL6.0sp1.
    Mihir Kulkarni <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0transitional//en">
    <html>
    Hi,
    <br>Could you please specify on which platform are youfacing this problem.Also,
    which sp of the WLS 60 are you using ?
    <p>I tried the weblogic.Admin SHUTDOWN command on NT andSolaris and
    it
    runs correctly on both. These are the results:
    <p><b>on NT:</b>
    <br>on the client:
    <br>java weblogic.Admin -url t3://172.17.13.46:7013-username system
    -password
    xxx SHUTDOWN
    <br>Shutdown initiated
    <br>The shutdown sequence has been initiated.
    <p>on the Managed server:
    <br><Jun 13, 2001 11:45:49 AM PDT> <Alert><WebLogicServer>
    <The
    disabling of server
    <br> logins has been requested by system>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Alert><WebLogicServer>
    <Server
    logins have been
    <br> disabled.>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Alert><WebLogicServer>
    <Server
    shutdown has bee
    <br>n requested by system>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Alert><WebLogicServer>
    <The
    shutdown sequence h
    <br>as been initiated.>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Info><WebLogicServer> <Server
    shutdown is comme
    <br>ncing NOW and is irreversible.>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Info> <HTTP> <[HTTPstandAloneServer]
    Destroying
    <br> servlets in default servlet context>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Info> <JMS><Undeployed
    4 default connection fac
    <br>tories.>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Info> <JMS> <JMSshutdown
    is complete.>
    <br><Jun 13, 2001 11:45:49 AM PDT> <Info><WebLogicServer> <Removing
    "ClientContext
    <br>- id: '#|standAloneServer|1.992457846784', bound:'false', dead:
    'false'"
    becaus
    <br>e of hard disconnect timeout.>
    <br><Jun 13, 2001 11:45:50 AM PDT> <Info><WebLogicServer> <Requesting
    all threads t
    <br>o perform their own shutdown.>
    <br><Jun 13, 2001 11:45:50 AM PDT> <Info><WebLogicServer> <Shutting
    down Thread[SSL
    <br>ListenThread,5,WebLogicServer]>
    <br><Jun 13, 2001 11:45:50 AM PDT> <Info><WebLogicServer> <Waiting
    20 seconds for t
    <br>hreads to complete shutdown.>
    <br><Jun 13, 2001 11:45:50 AM PDT> <Info><WebLogicServer> <Shutting
    down Thread[Lis
    <br>tenThread,5,WebLogicServer]>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Info><WebLogicServer> <Stopping
    execute threads
    <br>.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '0' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '1' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '2' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '3' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '4' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '5' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '6' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '7' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '8' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '9' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '10' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '11' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '12' for queue: 'default'' stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '0' for queue: '__weblogic_admin_html_queue''stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '1' for queue: '__weblogic_admin_html_queue''stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '0' for queue: '__weblogic_admin_rmi_queue''stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Critical> <Kernel><Execute
    Thread: 'ExecuteThre
    <br>ad: '1' for queue: '__weblogic_admin_rmi_queue''stopped.>
    <br><Jun 13, 2001 11:46:10 AM PDT> <Info><WebLogicServer> <Shutdown
    has completed.>
    <p><b>on Solaris platform:</b>
    <br>on client:
    <br>java weblogic.Admin -url t3://willard.beasys.com:7003-username system
    -xxx mihirk00 SHUTDOWN
    <br>Shutdown initiated
    <br>The shutdown sequence has been initiated.
    <p>on the Managed server:
    <br><Jun 13, 2001 11:52:26 AM PDT> <Alert><WebLogicServer>
    <Server
    shutdown has been requested by system>
    <br><Jun 13, 2001 11:52:26 AM PDT> <Alert><WebLogicServer>
    <The
    shutdown sequence has been initiated.>
    <br><Jun 13, 2001 11:52:26 AM PDT> <Emergency><WebLogicServer>
    <ListenThread.run() failed: java.lang.ThreadDeath>
    <br><Jun 13, 2001 11:52:27 AM PDT> <Emergency><WebLogicServer>
    <The WebLogic Server is no longer listening forconnections. You should
    probably restart it.>
    <br><Jun 13, 2001 11:52:27 AM PDT> <Alert><WebLogicServer>
    <Server
    shutdown has been requested by system>
    <br><Jun 13, 2001 11:52:27 AM PDT> <Alert><WebLogicServer>
    <The
    shutdown sequence has been initiated.>
    <p>So, it works fine for me.
    <br>Please let me know if I am missing something.
    <p>cheers,
    <br>Mihir
    <br>
    <p>Scott Simpson wrote:
    <blockquote TYPE=CITE>"JD" <[email protected]> wrote
    in message
    <br><a
    href="news:[email protected]">news:[email protected]</a>...
    <br>> I ran this problem past BEA support and as usualthey can not duplicate
    <br>the problem.
    <p>They can't duplicate the problem! Everybody on thisnewsgroup has
    the
    same
    <br>problem. How can they not duplicate it?!</blockquote>
    </html>
    [att1.html]

  • Script to start/stop all manager sever/Admin server

    Hi Gurus,
    I am new bee to weblogic and learning it on daily basic.
    I have a scenario and would like to see if this is possible.
    We have one server and have couple of applications are running like SOA,OSB, OSR etc. During any downtime, we have to shut down each Admin Server, Manage server one by one and take up. This take time and effort too.
    Do we have some options through which we can configure all start/stop script in one file and do this work with few clicks. server shout down should be clean and take care of node manager recycle also.
    Could you please advise me on this or pls point me towards some already documented solution. I goggled this but did not find.

    Thanks radoui for your response.
    I see this approach as the default one.. Could you please advice me whats the correct sequence of shutting down the servers including node manager and starting back.
    Like I have SOA installed.
    So First I have to take down SOA managed server followed by Admin server and then node manager ..? Let me know if this is not correct.
    I still have doubt on this approach as if, managed server failed to stop and means while script will take down admin server and so on..

  • Setting timeout in weblogic.admin command

    Hello:
    I run a script that checks the state of several thing in my platform. One of the commands I use in this script
    is
    java -cp .. weblogic.Admin localhost:7001 ..... GETSTATE
    IS there anyway to set a timeout in this command for the case weblogic server is hang and doesn´t answer anything. I have tried using sun properties for connect timeout and readTimeout but they haven´t worked(I suppose that it is because weblogic.admin uses t3 instead http). I have thought to make the following
    sleep 10|ps -efx| grep -i GETSTATE|grep -v grep|awk '{ print $2 }'|xargs kill -9 &
    java -cp .. weblogic.Admin localhost:7001 ..... GETSTATE
    but I don´t like at all this solution
    Regards,
    Mario.

    hi sir,
    I think in weblogic 9.2 weblogic.Admin utility is deprecated but it works in 9.2. We have better option than weblogic.Admin utility nothing but WLST. If u want to start using weblogic.Admin we have command
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx START managedservername
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx SHUTDOWN managedservername
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx START clustername
    java weblogic.Admin -url adminhost:listenport -username xxxx -password xxxx SHUTDOWN clustername
    If u want to use WLST for starting managed servers and clusters
    check the follwing steps.
    1. java weblogic.WLST
    2. startNodeManager()
    3. TAKE ANOTHER COMMAND PROMPT START ADMIN SERVER
    4. TAKE ANOTHER COMMAND PROMPT
    java weblogic.WLST
    5. start('man1','Server') or start('man1','Server','localhost:7003')
    6. start('mycluster','Cluster')
    7.shutdown('man1','Server') or start('man1','Server','localhost:7003')
    8.shutdown('mycluster','Cluster')
    regards
    abhi
    Edited by: sumanth_abhi on Feb 5, 2009 8:54 PM

  • Cluster Monitoring didn't show all the managed servers in cluster .

    Hi
    We have below configuration :
    domain :- 6 clusters
    each cluster :- 3 managed servers (managed servers are on different physical boxes)
    when monitoring the cluster we can see
    for ms1 it shows : ms1,ms2 but not ms3
    for ms2 it shows : ms1,ms2 but not ms3
    for ms3 it shows : ms1,ms2,ms3
    ms3 is Running.
    Why ms1 and ms2 are not able to see ms3? This is happening with all the clusters.ms1 and ms2 are not able to see ms3.
    Is the reason that heart beat messages are not received by ms1 and ms2 even though ms3 is running?
    Is this because network issue?
    Is it that if JVM is busy doing full Gc then it ignores Hearbeat messages. ?
    Please correct me if i ma wrong.
    Thanks in advance.. :)

    Hi,
    Did u check if the server MS3 was running .. also did u see any exception/error/warn message in the system.out log.
    regards,
    Zeno

  • Weblogic 6.0 Automatic startup of Managed Servers

    Simple question -
    Environ: Weblogic 6.0, NT/2K
    Is there a way to start the managed servers under a given AdminServer
    without configuring the individual managed servers as an NT Service?
    I'd like the AdminServer be registered as a service, come up
    automatically and then kick of its managed servers.
    Thanks,
    John

    Is there a way to start the managed servers under a given
    AdminServerwithout configuring the individual managed servers as an NT
    Service?Nope
    I'd like the AdminServer be registered as a service, come up
    automatically and then kick of its managed servers.You will have to write a NT script for that. its not possible from within
    the WLS infrastructure.
    cheers,
    Mihir

  • Key Command for Selecting All in Stack?

    - Hi, I'm wondering if there is a key command that I missed that allows you to select all items in a stack when it is collapsed?
    I'm mostly using Bridge for the Stacks feature. I actually prefer to use cataloging programs for DAM. But shooting HDR, stacks are a must!
    But when I want to do things with the images in a stack, such as deleting them all, opening in Photoshop (individually or to merge), etc., it only selects the top image by default.
    I must be missing something. It's a drag to have to open/close all the time.
    And a separate but related issue:
    - Does anyone know why all stacks are removed when you do a Batch Rename on a set of photos?
    I let Photoshop churn for 30min. + on the 'combine HDR/Panorama into stacks' command. Got all my HDR sets grouped nicely as stacks. Then decided to batch rename them and presto - no more stacks! Had to do it all over again!!!

    Hi Kenny,
    To apply a command to all photos in a collapsed stack, you must select them all by clicking the stack border, not the top image. See
    Stack files in Bridge Community Help.
    I'm not sure about the batch rename issue that you describe. Maybe someone else can chime in on that.

  • How to start Managed Servers in Cluster in background

    I am new to weblogic. I have two managed servers each on two boxes, i need to start these managed servers in background.
    Thanks

    I got this error while starting Managed Server2 on machine A. Managed Server was started using the same command line with clean start. I am using JDK1.5.0_14
    eg., nohup ./startManagedWebLogic.sh Managed-mn2 http://localhost:7001 &
    <Dec 12, 2008 2:17:11 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    [thread 43 also had an error]#
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGBUS
    Exception (0xa)in thread " at pc=0xff390c50CompilerThread0, pid=21379" , tid=1java.lang.OutO
    fMemoryError: requested
    34416#
    bytes# Java VM: Java HotSpot(TM) Server VM (1.5.0_14-b03 mixed mode)
    for # Problematic frame:
    Chunk::new# . Out of swap space?
    C [libc_psr.so.1+0xc50]
    An error report file with more information is saved as hs_err_pid21425.log
    Exception in thread "CompilerThread0" java.lang.OutOfMemoryError: requested 34416 bytes for Chunk::new. Out of swap space?
    Edited by: user10705269 on Dec 12, 2008 11:42 AM

  • Cannot list all the servers within cluster (on Resin)

    We have 10 Resin servers in the cluster, but when I try to list them I got only 9 of them listed.
    It doesn't list the local server (the one from which the servlet is actually invoked).
    Do you have any other idea how to list all the servers?
    Here is the code I use:
    for (int i = 0; i < clusterList.length; i++) {
         ClusterMXBean cluster = (ClusterMXBean) Jmx.findGlobal(clusterList.getObjectName());
         // --- retrieve all servers within one cluster
         ServerConnectorMXBean[] srunNames = cluster.getServers();
         for (int j = 0; j < srunNames.length; j++) {
              ServerConnectorMXBean server = (ServerConnectorMXBean) Jmx
                        .findGlobal(srunNames[j].getObjectName());
              String host = server.getAddress();
              int port = server.getPort();
              String state = server.getState();
    And here is the MX configuration:
    resin:type=SessionManager,Host=default,WebApp=/
    resin:type=ServerConnector,name=i
    resin:type=ServerConnector,name=h
    resin:type=ServerConnector,name=b
    resin:type=Resin
    resin:type=ServerConnector,name=j
    resin:type=ProxyCache
    resin:type=Host,name=default
    resin:type=ServerConnector,name=c
    resin:type=ServerConnector,name=e
    resin:type=Port,name=192.68.1.50-6802
    resin:type=ServerConnector,name=g
    resin:type=ServerConnector,name=a
    resin:type=ThreadPool
    resin:type=WebApp,Host=default,name=/
    resin:type=WebApp,Host=default,name=/mya
    resin:type=ConnectionPool,Host=default,WebApp=/mya,name=jdbc/mya
    resin:type=ServerConnector,name=f
    resin:type=Cluster,name=cluster1
    resin:type=ServerConnector,name=d
    resin:type=SessionManager,Host=default,WebApp=/mya
    resin:type=Server                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    kus wrote:
    There is a solution but not a very portable one, i.e. you can't use it to get a listing of files from any server that you happen to look at. But here are the steps you need to take:
    1. Use a browser (firefox, opera, etc.) to view the file listing and then view the source.
    2. Duplicate the retrieval of data from the given URL in Java (new URL(...), etc.)
    3. Parse the HTTP response and/or the HTML that the server returns to you to extract what you need.
    Step #3 is the biggest piece of work and the format you need to parse will depend on whatever the remote server hands to you. It's intended for humans, not machines; every server can decide how to format this and it even depends on the server's configuration how this data is presented to you. In any case, it's entirely up to you to make sense of whatever the server happens to throw back at you and if the server happens to present you a nice, picturesque page rather than a listing of files then your completely out of luck.He actually wasn't talking about http at all, so most of this thread has been a wild goose chase.

  • SVM equivalent command for veritas volume manager "VXEVAC" command

    Hi All
    I am working on a major migration project , where servers are heterogenous with part of servers with Veritas volume manager and rest with Solaris volume manager.
    Migration is quite easy on Veritas servers using "VXEVAC COMMAND " i can easily move my data to new luns
    But need to know any equivalent procedure in SVM. ..
    all servers with latest solaris 10
    Quick reply is highly appreciated.
    Rgds
    Md

    Hello,
    I�m not an expert on volume management, but maybe these considerations that come to my mind can help you to improve your performance:
    1.- The interlace size of the striping. You should adjust the size of the striping to match the I/O requests made by the Operating System or by the database management software (is the data access in a raw mode?). For example, if the data access is made through normal ufs access, the stripping size should match the block size of the file system.
    2.- Are those disks on different controlers? Maybe a saturation of the controler, of the bus, etc... could slow down your I/O read/writes.
    Bye,
    jmiturbe

  • Error while starting the weblogic admin server for OSB

    Hi all,
    Please help.
    My admin server startup is breaking for weblogic 11g for the following cause :
    Caused By: oracle.mds.exception.MDSExceptionList: MDS-01329: unable to load elem
    ent "persistence-config"
    MDS-01370: MetadataStore configuration for metadata-store-usage "OWSM_TargetRepo
    s" is invalid.
    ORA-06550: line 1, column 12:
    PLS-00201: identifier 'MDS_INTERNAL_SHREDDED.GETREPOSITORYVERSION' must be decla
    red
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    at oracle.mds.config.PConfig.loadFromBean(PConfig.java:684)
    at oracle.mds.config.PConfig.<init>(PConfig.java:499)
    at oracle.mds.config.MDSConfig.loadFromBean(MDSConfig.java:707)
    at oracle.mds.config.MDSConfig.loadFromElement(MDSConfig.java:764)
    at oracle.mds.config.MDSConfig.<init>(MDSConfig.java:420)
    Truncated. see log file for complete stacktrace
    *>*
    *<Dec 15, 2011 12:51:22 PM GMT+05:30> <Error> <Deployer> <BEA-149231> <Unable to*
    set the activation state to true for the application 'wsm-pm'.
    *weblogic.application.ModuleException: [HTTP:101216]Servlet: "PolicyManagerValida*
    *tor" failed to preload on startup in Web application: "/wsm-pm".*
    oracle.adf.share.ADFShareException: MDSConfigurationException encountered in par
    seADFConfiguration
    at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConf
    ig.java:178)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.adf.share.config.ADFConfigImpl.getResultFromComponent(ADFConfi
    gImpl.java:472)
    at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.j
    ava:543)
    at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.j
    ava:521)
    at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.ja
    va:586)
    at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.ja
    va:581)
    at oracle.adf.share.config.ADFContextMDSConfigHelperImpl.getMDSInstance(
    ADFContextMDSConfigHelperImpl.java:274)
    at oracle.adf.share.ADFContext.getMDSInstanceAsObject(ADFContext.java:16
    *19)*
    at oracle.wsm.repository.mds.MDSInstanceFactory.getMDSInstance(MDSInstan
    ceFactory.java:95)
    at oracle.wsm.policymanager.bean.AbstractBean.getRepository(AbstractBean
    *.java:298)*
    at oracle.wsm.policymanager.bean.AbstractBean.createSession(AbstractBean
    *.java:198)*
    at oracle.wsm.policymanager.bean.UpgradeManagerBean.seedWSMPolicyReposit
    ory(UpgradeManagerBean.java:506)
    at oracle.wsm.policymanager.web.PolicyManagerValidator.init(PolicyManage
    rValidator.java:111)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(St
    ubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    *120)*
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecuri
    tyHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubL
    ifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHel
    per.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppS
    Thanks...

    I had a few packages and types in Invalid state.
    I compiled the same.
    But even then the same problem persists.
    Please help if any idea of any other change that may be needed..
    Thanks in advance

Maybe you are looking for

  • In "Set your default programs" under Win7, file associations of Firefox are tampered!

    In "Set your default programs" under the Control Panel of Windows 7, Firefox does appears in the "Programs" list on the left. But, its icon is that of Windows Media Player. After I click on the program's name (Firefox) to display the details on the r

  • Certificate from vendor

    Hi, we want to have vendor mill test certificate along with the goods from the vendor when we do gr against PO? we set insp type as 01, qm active in procurement, pls advise which control key or setting is to be done to ensure the receiving vendor cer

  • Icloud error

    Icloud: The maximum number of free accounts have been activated on this Iphone. i keep getting this message can someone help

  • G5 killed by mail when upgrading from Panther to Tiger...HELP!

    Hello, I just upgraded one of our G5s from Panther to Tiger. When I opened mail, it began "importing" all the messages (I assume because of the update to mail.app). Now, the user who's computer I upgraded contained 9GB of mail (!!!) but the G5 had mo

  • Account determination for non-valuated material

    hi, I have configured account determination for non-valuated material when I try to post the Invoice then error come that GR/IR account required for posting. but my GR is Non valuated so GR/IR account would be ignore then why required GR/IR account b