Sun's MQ Clustering issue.

Cluster issue with Sun Message Queue 3.5
We are developing a basic ESB (Enterprise Service Bus) system with MQ3 as the JMS
provider. Naturally we want to cluster multiple brokers on different boxes incase one
fails. For development and testing we�ve setup two MQ3 brokers on two different
Windows 2000 machines and both are configured the same and have created the same
destinations on both. We have one producer client running on a RS6000 AIX machine
sending messages to a message queue, and one consumer client running on a iSeries
reading the messages. (Note: There are no problems when we�re not clustering and using
just one broker). The problem is after the consumer processes about 1k-3k messages it
like drops its active connection to the message queue. Looking at the Administration
Console it appears the active consumer rolls down to backup consumer. Here is what the
console shows.
When working ok:
Current Number of Messages: 65231
Current Total Message Bytes: 501033112 bytes
     Current Number of Producers: 1
Current Number of Active Consumers: 1
Current Number of Backup Consumers: 0
When it stops receiving messages:
Current Number of Messages: 72652
Current Total Message Bytes: 515987678 bytes
     Current Number of Producers: 1
Current Number of Active Consumers: 0
Current Number of Backup Consumers: 1
At this point the consumer does not pick up anymore messages, it waits on onMessage().
However, the producer keeps on running just fine. Also we�re using persistent queues,
not topics.
Following are the configuration settings.
Here is the startup screen shot, both brokers are the same except for the name, this one is
CFERRIS the other is CFERRIS2K so I just show one here.
C:\Program Files\Sun\MessageQueue3\bin>imqbrokerd -license try
[12/Apr/2005:11:35:40 CDT]
================================================================================
Sun Java(tm) System Message Queue
Sun Microsystems, Inc.
Version:  3.5 SP2  (Build 48-G)
Compile:  Fri 08/27/2004
Copyright ⌐ 2004 Sun Microsystems, Inc. All rights reserved.
Use is subject to license terms.
This product includes code licensed from RSA Data Security.
================================================================================
Java Runtime: 1.4.2_05 Sun Microsystems Inc. c:\j2sdk1.4.2_05\jre
*****  Trial license enabled.  This license will expire on     *****
*****  Jun 28, 2005.  This license is for evaluation purposes  *****
*****  only. You are in violation of the license agreement if  *****
*****  you use this product with this license enabled in a     *****
*****  production environment.                                 *****
[12/Apr/2005:11:35:40 CDT]    IMQ_HOME=C:\Program Files\Sun\MessageQueue3
[12/Apr/2005:11:35:40 CDT] IMQ_VARHOME=C:\Program Files\Sun\MessageQueue3\var
[12/Apr/2005:11:35:41 CDT] Windows 2000 5.0 x86 CFERRIS (1 cpu) cferris
[12/Apr/2005:11:35:41 CDT] Java Heap Size: max=194432k, current=16256k
[12/Apr/2005:11:35:41 CDT] Arguments: -license try
[12/Apr/2005:11:35:41 CDT] [B1060]: Loading persistent data...
[12/Apr/2005:11:35:41 CDT] Using built-in file-based persistent store: C:\Progra
m Files\Sun\MessageQueue3\var\instances\imqbroker\
[12/Apr/2005:11:35:45 CDT] [B1039]: Broker "imqbroker@CFERRIS:7676" ready.From the config.properties for both brokers, they are the same:
#Last Update:
#Fri Apr 08 15:19:45 CDT 2005
imq.jms.min_threads=10
imq.instanceconfig.version=300
imq.autocreate.queue=false
imq.jms.tcp.port=0
imq.cluster.url=file\:\\H\:\\MIS\\928DataBrokerInterfaces\\MOM\\cluster.properties
imq.autocreate.topic=false
imq.jms.max_threads=1000
From the cluster.properties file:
#Last Update:
#Fri Mar 25 15:47:49 CST 2005
imq.cluster.brokerlist=cferris2k:7676,cferris:7676
imq.cluster.masterbroker=cferris2k
From imqcmd query bkr which are the same on both boxes.
Querying the broker specified by:
Host         Primary Port
localhost    7676
Version                                              3.5 SP2
Instance Name                                        imqbroker
Primary Port                                         7676
Current Number of Messages in System                 0
Current Total Message Bytes in System                0
Max Number of Messages in System                     unlimited (-1)
Max Total Message Bytes in System                    unlimited (-1)
Max Message Size                                     70m
Auto Create Queues                                   false
Auto Create Topics                                   false
Auto Created Queue Max Number of Active Consumers    1
Auto Created Queue Max Number of Backup Consumers    0
Cluster Broker List (active)                         CFERRIS/10.3.xxx.xx:7676 (imqbroker), CFERRIS2K/10.3.xxx.xx:7676(imqbroker)
Cluster Broker List (configured)                     cferris2k:7676,cferris:7676
Cluster Master Broker                                cferris2k
Cluster URL                                          file:\H:\MIS\Project Office
\928DataBrokerInterfaces\A-Request-Requirements\MOM\cluster.properties
Log Level                                            INFO
Log Rollover Interval (seconds)                      604800
Log Rollover Size (bytes)                            unlimited (-1)
Successfully queried the broker.From imqcmd query dst
C:\>imqcmd query dst -t q -n resultsFromBOS
Querying the destination where:
Destination Name    Destination Type
resultsFromBOS      Queue
On the broker specified by:
Host         Primary Port
localhost    7676
Destination Name                      resultsFromBOS
Destination Type                      Queue
Destination State                     RUNNING
Created Administratively              true
Current Number of Messages            0
Current Total Message Bytes           0
Current Number of Producers           0
Current Number of Active Consumers    0
Current Number of Backup Consumers    0
Max Number of Messages                unlimited (-1)
Max Total Message Bytes               unlimited (-1)
Max Bytes per Message                 unlimited (-1)
Max Number of Producers               unlimited (-1)
Max Number of Active Consumers        unlimited (-1)
Max Number of Backup Consumers        3
Limit Behavior                        REJECT_NEWEST
Consumer Flow Limit                   1000
Is Local Destination                  false
Local Delivery is Preferred           false
Successfully queried the destination.For development and testing I am not using JDNI. The following shows
how I configured the connection factory.
    public ConsumerClient(int acknowledgementMode) {
      // Initiate the factory and connection.
      // Also directly instantiate and configure the object.
      connectFactory = new com.sun.messaging.ConnectionFactory();
      try {
          connectFactory.setProperty("imqAddressList",
                                                      �mq\://cferris2k\:7676/jms,mq\://cferris\:7676/jms�);
          connectFactory.setProperty("imqReconnectEnabled", �true�);
          // Set client ID/user ID
          connectFactory.setProperty("imqDefaultUsername", "admin");
          connectFactory.setProperty("imqDefaultPassword", "admin");
          connectFactory.setProperty("imqAddressListIterations", "-1");
          connectFactory.setProperty("imqReconnectAttempts", "5");
          connectFactory.setProperty("imqAddressListBehavior", "RANDOM");
          // Next create the connection and session
          connection = connectFactory.createConnection();
          session = connection.createSession(false, acknowledgementMode);
          logger.info("A connection and session have been established by ConsumerClient");
      catch(JMSException jmsError){
          reportError("Error creating the connection factory. Following is the message: ",
                       jmsError.getMessage());
    }  // of constructor I added the three properties imqAddressListIterations, imqReconnectAttempts
and imqAddressListBehavior as an attempt to fix it, but this did not work, so
previously they were the defaults. I am wondering if I needed to create destination
queues on all the brokers or just the master?
Any help with figuring this will greatly be appreciated!!
Thanks, Chris

Chris,
This is fishy.
Since the queue is configured to have unlimited active consumers, it should never attach a consumer as a backup. It seems like when the client reconnects, it somehow is establishing the consumers as a backup.
The first thing I'd try is to change maxNumBackupConsumers on the queue to 0. Hopefully this will either keep the consumer a primary (active) consumer, or trigger another error that would shed more light.
The other curious thing is why is the client loosing it's connection in the first place? To narrow this down I would turn off reconnect (i.e. set imqReconnectEnabled to false), and register a connection exception listener (Connection.setExceptionListener) and see what exception is being generated. Also check the broker's log file and see if there are any interesting messages.
When you have brokers clustered, you can create a destination on any broker in the cluster, and the destination will be propogated across the cluster. The following SunSolve document contains more details:
79051 Sun Java[TM] System Message Queue: Understanding the Role of a Master Broker in an MQ Cluster
And one other thing about clusters. Messages are persisted on the broker the sender is connected to. Messages are then forwarded to consumers anywhere on the cluster. Acknowledgements flow back to the "producing" broker and are processed by it. If a broker goes down, the messages it holds in its persistent store are not available until that broker comes back up. We're looking at improving data availability in a future MQ release and you can get it today in conjuction with the SunCluster product.
Joe

Similar Messages

  • Hyper-V 2012 r2 Clustering issue

    Hi All
    We have the following issue and I just thought of why this could be happening
    We are using a 3 node cluster with a witness disk
    The problem is that the nodes in the cluster fail daily and its not a specific node it happens to any of them, but there is always 1 online thou
    Here is the specs we are running :
    *3 identical high end desktop hardware
    *Server 2012 std R2
    *ISCSI using free nas OS on a separate physical machine
    *Teamed NIC's for Management, Clustering, ISCSI and Migration with weights defined
    *9 VM's shared on this cluster between the 3
    *The server have the exact same config except for the one server which is also running hyper-v with 1 vm which has our AD on
    *Currently there is no backup software running for these VM's
    *All the update have been done but no hot-fixes have applied
    My theory why the system is crashing is because the 1 Host is running the AD VM on the HyperV which is different setup compared to the other servers.
    Could this be the issue ?
    Thanks

    What does the validation wizard tell you?  The validation wizard should always be the first thing to run when trying to troubleshoot, as it does hundreds of tests on the environment and will alert you to anything it finds wrong or questionable.
    Out of the box, it sounds like you are running an unsupported configuration since you state it is configured with "3 identical high end desktop hardware".  One of the basic requirements of clustering is that you use hardware that the manufacturer
    has tested for supporting Windows Server 2012 R2. 
    www.windowsservercatalog.com lists all that hardware.  Since you are using desktops, I feel comfortable in saying that those servers are most likely not on the list.  That is not to say that clustering won't work, but it does mean that you are
    running an unsupported configuration.  Since clustering is usually done to provide highly available access to business critical applications, building the environment on unsupported hardware is not a good way to start.  This also means that you might
    be using NICs that are not of server quality, meaning that you may be running into networking issues, as suggested by Darren.  Then there is your iSCSI configuration.  The validation wizard will tell you if you have issues with the storage - a free
    NAS OS may not provide the features necessary for clustering.  Suggestion is to get proper hardware.  What you are describing might be okay for a learning lab, but not for production.
    . : | : . : | : . tim

  • JCaps 5.1.3 Sun Solaris CPU performance issue

    Folks,
    We are experiencing a serious CPU performance issue on our Solaris server with HL7 projects deployed.
    The projects consist of the sample HL7 inbound and outbound projects with an additional service sending to a batch local file external for writing journals.
    The performance issue occurs when there is volume of data in the queues/topics. As we continue to deploy additional HL7 projects (usually about 6 interfaces), the CPU increases until it reached 100%.
    This sanapshot is prstat when no date is transmitting through the interfaces (One inbound - one outbound):
    B PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP
    15598 jre 379M 177M sleep 59 0 2:49:11 3.1% eManager/74
    21549 phs 1174M 1037M sleep 59 0 14:49:00 2.5% is_dm_phs/113
    23090 phs 3456K 3136K cpu1 59 0 0:00:01 0.4% prstat/1
    23102 phs 3792K 3496K sleep 59 0 0:00:00 0.2% prstat/1
    21550 phs 46M 35M sleep 59 0 0:13:27 0.1% stcms.exe/3
    1272 noaccess 209M 95M sleep 59 0 0:26:30 0.1% java/25
    11733 jre 420M 212M sleep 59 0 1:35:40 0.1% java/34
    131 root 4368K 2480K sleep 59 0 0:02:10 0.1% nscd/30
    23094 phs 3064K 2168K sleep 59 0 0:00:00 0.1% bash/1
    This sanapshot is prstat when data is transmitting through the interfaces(One inbound - one outbound):
    PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP
    21549 phs 1174M 1037M cpu1 20 0 14:51:20 88% is_dm_phs/113
    15598 jre 379M 181M sleep 59 0 2:49:18 1.3% eManager/74
    21550 phs 46M 35M sleep 49 0 0:13:29 1.2% stcms.exe/3
    23090 phs 3456K 3128K cpu3 49 0 0:00:03 0.4% prstat/1
    1272 noaccess 209M 95M sleep 59 0 0:26:30 0.1% java/25
    11733 jre 420M 212M sleep 59 0 1:35:40 0.1% java/34
    21546 phs 118M 904K sleep 59 0 0:01:21 0.1% isprocmgr_dm_ph/13
    This sanapshot is prstat -L when data is transmitting through the interfaces (One inbound - one outbound):
    PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/LWPID
    21549 phs 1174M 1037M cpu1 41 0 0:00:45 22% is_dm_phs/13971
    21549 phs 1174M 1037M sleep 51 0 3:31:06 21% is_dm_phs/1394
    21549 phs 1174M 1037M run 51 0 3:14:16 20% is_dm_phs/1296
    21549 phs 1174M 1037M sleep 52 0 3:14:13 19% is_dm_phs/1380
    15598 jre 379M 181M sleep 50 0 1:49:57 3.1% eManager/4
    21549 phs 1174M 1037M sleep 59 0 0:15:36 1.7% is_dm_phs/4
    21550 phs 46M 35M sleep 59 0 0:10:52 1.0% stcms.exe/1
    21549 phs 1174M 1037M sleep 59 0 0:10:45 0.9% is_dm_phs/6
    15598 jre 379M 181M sleep 54 0 0:33:35 0.3% eManager/35
    21549 phs 1174M 1037M sleep 59 0 0:03:34 0.3% is_dm_phs/5
    21550 phs 46M 35M sleep 59 0 0:02:37 0.2% stcms.exe/2
    21549 phs 1174M 1037M sleep 59 0 0:02:17 0.2% is_dm_phs/3
    21549 phs 1174M 1037M sleep 59 0 0:02:17 0.2% is_dm_phs/2
    Solaris 10 server details:
    CPU's (4x900 Sparc III+)
    4096 MB RAM
    SunOS testican 5.9 Generic_118558-39 sun4u sparc SUNW,Sun-Fire-880
    Disk: 6 internal Fujitsu 72GBs
    swapspace on the server:
    total: 4305272k bytes allocated + 349048k reserved = 4654320k used, 10190536k available
    My sysadmin has run statistics (iostat, vmstat, psig, pmap, pfind, pstack, mpstat, etc.) - and has reported that the server is performing fine - with the exception of the CPU. It also looked like the swap space was not being utilized.
    We have increased the MaxPerm value to 512, and increased the heapsize on isprocmgr_dm_phs to -Xmx2048m, and increased the heapsize on the domain to 2048 per KB 103824
    We have also added the -d64 value (specific to Solaris) per the Deployment Guide.
    We increased the value of Maximum Pool size in the JMS clients to 128 - per the deployment Guide.
    We increased the swapspace on the server to 10Gb:
    total: 4305272k bytes allocated + 349048k reserved = 4654320k used, 10190536k available
    We have modified the tcpip and kernal parameters per the Sun Administration server 8.2 performance tuning guide:
    core file size (blocks, -c) unlimited
    data seg size (kbytes, -d) unlimited
    file size (blocks, -f) unlimited
    open files (-n) 8192
    pipe size (512 bytes, -p) 10
    stack size (kbytes, -s) 8192
    cpu time (seconds, -t) unlimited
    max user processes (-u) 29995
    virtual memory (kbytes, -v) unlimited
    None of these modificatons appear to increase performance.
    Any help is appreciated.
    Thanks
    Rich...

    Hi,
    I noticed this behavior with the Alert + SNMP Agents installed but not configured. In this situation, the SNMP agent generates traps for all events, leading to high CPU using, even when nothing was processed. Are you in a similar case?
    Regards

  • JDK 1.5 and TimeZone/sun.util.calendar.ZoneInfo issue

    Hi -
    I am working on a client/server application. The server code is being ported to JDK 1.5, but we need to support clients that are still running JDK 1.3. One of the issues we are facing is that the defaultTimeZone
    in JDK 1.5 has been changed to sun.util.calendar.ZoneInfo whereas
    the default in 1.3 is SimpleTimeZone.
    Does any one have an idea of how to convert an object that is of
    type sun.util.calendar.ZoneInfo to SimpleTimeZone?
    Many thanks for any inputs.

    http://forum.java.sun.com/thread.jspa?threadID=678742&messageID=3959360#3959360

  • WLS Clustering issues wrt to Multicasting.

              Hello,
              I am having a heck of a time trying to get the Clustering to work. THe problem seems
              to be multicasting. We have two clusters, one using a multicast address of 224.0.0.1
              and another with a multicast address of 224.0.0.2. Both clusters are in the same
              network: 192.168.100.0/24 All four machines are hooked up to a Cisco Catalyst 4006
              via fast ethernet. The cluster that is using the multicast address of 224.0.0.1 works
              fine. However, the second cluster that uses the 224.0.0.2 address does not work at
              all. The two machines that are in the 224.0.0.2 cluster can't see each other, we
              found this out by using the Multicast tool that comes with WLS. We tried changing
              the IP address to some other valid multicast address and it still does not work.
              Here is the kicker, we take the Catalyst out of the picture and put in a hub and
              both clusters come up fine and with any valid multicast address we issue. Does anyone
              with some Catalyst knowledge have any suggestions on what the problem could be on
              the 4006? I have a feeling it might be the Catalyst's fault since it works fine on
              a hub. What do we need to turn on the Catalyst to make this work?
              Thanks,
              -Daniel-
              

              If you have any switches in between, you can try setting the weblogic.cluster.multicastTTL=2
              or some higher value.
              "Tao Xie" <[email protected]> wrote:
              >The address 224.0.0.1 is assigned to all systems on a subnet. The address
              >224.0.0.2 is assigned to all routers on a subnet. Not sure if Catalyst
              >is
              >well configured.
              >
              >"Daniel Serna" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Hello,
              >>
              >> I am having a heck of a time trying to get the Clustering to work.
              >THe
              >problem seems
              >> to be multicasting. We have two clusters, one using a multicast address
              >of
              >224.0.0.1
              >> and another with a multicast address of 224.0.0.2. Both clusters are
              >in
              >the same
              >> network: 192.168.100.0/24 All four machines are hooked up to a Cisco
              >Catalyst 4006
              >> via fast ethernet. The cluster that is using the multicast address
              >of
              >224.0.0.1 works
              >> fine. However, the second cluster that uses the 224.0.0.2 address does
              >not
              >work at
              >> all. The two machines that are in the 224.0.0.2 cluster can't see each
              >other, we
              >> found this out by using the Multicast tool that comes with WLS. We
              >tried
              >changing
              >> the IP address to some other valid multicast address and it still does
              >not
              >work.
              >> Here is the kicker, we take the Catalyst out of the picture and put
              >in a
              >hub and
              >> both clusters come up fine and with any valid multicast address we
              >issue.
              >Does anyone
              >> with some Catalyst knowledge have any suggestions on what the problem
              >could be on
              >> the 4006? I have a feeling it might be the Catalyst's fault since it
              >works
              >fine on
              >> a hub. What do we need to turn on the Catalyst to make this work?
              >>
              >> Thanks,
              >>
              >> -Daniel-
              >
              >
              

  • HFM server configuration - Application Server Clusters Issue

    Hi,
    When I am tryin to get into the second tab (Application Server Clusters)of the HFM configuration utility(server and webconfigurtion):
    I am getting the below ERROR
    +" There must be a valid Database Connection in order to set Application Sever Clustering. Please check and apply a working UDL file."+
    Database and server I am using:_
    I have Oracle database: Oracle Enterprise Manager Version 9.2.1.0
    on Windown 2003 SP1 server
    I created a UDL file and also tested it. The test connection was successful. I am using the provider for udl: "Microsoft OLE DB Provider for Oracle)
    +PS: I am through with the first tab "Application Server"..+
    Belolw is the log.. may be this will be useful.
    Error*11*Administrator*11/09/2009 10:47:08*CHsxHFMConnection.cpp*Line 909*<?xml version="1.0"?>
    <EStr><Ref>{DFCB5E4F-0940-4993-84A1-1F7568F670CB}</Ref><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147220956</Num><Type>1</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>CHsxHFMConnection.cpp</File><Line>909</Line><Ver>9.3.1.0.1502</Ver></ESec></EStr>
    Error*11*Administrator*11/09/2009 10:47:08*HfmADOConnection.cpp*Line 262*<?xml version="1.0"?>
    <EStr><Ref>{1290DF08-9EC5-45B5-B846-38EA0D58E2CE}</Ref><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147220956</Num><Type>1</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>HfmADOConnection.cpp</File><Line>262</Line><Ver>9.3.1.0.1502</Ver><DStr>&lt;?xml version="1.0"?&gt;
    &lt;EStr&gt;&lt;Ref&gt;{DFCB5E4F-0940-4993-84A1-1F7568F670CB}&lt;/Ref&gt;&lt;User/&gt;&lt;DBUpdate&gt;1&lt;/DBUpdate&gt;&lt;ESec&gt;&lt;Num&gt;-2147220956&lt;/Num&gt;&lt;Type&gt;1&lt;/Type&gt;&lt;DTime&gt;11/9/2009 10:47:08 AM&lt;/DTime&gt;&lt;Svr&gt;HFMSERVER&lt;/Svr&gt;&lt;File&gt;CHsxHFMConnection.cpp&lt;/File&gt;&lt;Line&gt;909&lt;/Line&gt;&lt;Ver&gt;9.3.1.0.1502&lt;/Ver&gt;&lt;/ESec&gt;&lt;/EStr&gt;
    </DStr><PSec><Param>C:\Hyperion\FinancialManagement\Server Working Folder\hfmlink.udl</Param></PSec></ESec></EStr>
    Error*11*Administrator*11/09/2009 10:47:08*CHsxSQLHelper.cpp*Line 102*<?xml version="1.0"?>
    <EStr><Ref>{1290DF08-9EC5-45B5-B846-38EA0D58E2CE}</Ref><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147220956</Num><Type>1</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>HfmADOConnection.cpp</File><Line>262</Line><Ver>9.3.1.0.1502</Ver><DStr>&lt;?xml version="1.0"?&gt;
    &lt;EStr&gt;&lt;Ref&gt;{DFCB5E4F-0940-4993-84A1-1F7568F670CB}&lt;/Ref&gt;&lt;User/&gt;&lt;DBUpdate&gt;1&lt;/DBUpdate&gt;&lt;ESec&gt;&lt;Num&gt;-2147220956&lt;/Num&gt;&lt;Type&gt;1&lt;/Type&gt;&lt;DTime&gt;11/9/2009 10:47:08 AM&lt;/DTime&gt;&lt;Svr&gt;HFMSERVER&lt;/Svr&gt;&lt;File&gt;CHsxHFMConnection.cpp&lt;/File&gt;&lt;Line&gt;909&lt;/Line&gt;&lt;Ver&gt;9.3.1.0.1502&lt;/Ver&gt;&lt;/ESec&gt;&lt;/EStr&gt;
    </DStr><PSec><Param>C:\Hyperion\FinancialManagement\Server Working Folder\hfmlink.udl</Param></PSec></ESec><ESec><Num>-2147220956</Num><Type>0</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>CHsxSQLHelper.cpp</File><Line>102</Line><Ver>9.3.1.0.1502</Ver></ESec></EStr>
    Error*11*Administrator*11/09/2009 10:47:08*CHsxSystemConfig.cpp*Line 2508*<?xml version="1.0"?>
    <EStr><Ref>{1290DF08-9EC5-45B5-B846-38EA0D58E2CE}</Ref><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147220956</Num><Type>1</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>HfmADOConnection.cpp</File><Line>262</Line><Ver>9.3.1.0.1502</Ver><DStr>&lt;?xml version="1.0"?&gt;
    &lt;EStr&gt;&lt;Ref&gt;{DFCB5E4F-0940-4993-84A1-1F7568F670CB}&lt;/Ref&gt;&lt;User/&gt;&lt;DBUpdate&gt;1&lt;/DBUpdate&gt;&lt;ESec&gt;&lt;Num&gt;-2147220956&lt;/Num&gt;&lt;Type&gt;1&lt;/Type&gt;&lt;DTime&gt;11/9/2009 10:47:08 AM&lt;/DTime&gt;&lt;Svr&gt;HFMSERVER&lt;/Svr&gt;&lt;File&gt;CHsxHFMConnection.cpp&lt;/File&gt;&lt;Line&gt;909&lt;/Line&gt;&lt;Ver&gt;9.3.1.0.1502&lt;/Ver&gt;&lt;/ESec&gt;&lt;/EStr&gt;
    </DStr><PSec><Param>C:\Hyperion\FinancialManagement\Server Working Folder\hfmlink.udl</Param></PSec></ESec><ESec><Num>-2147220956</Num><Type>0</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>CHsxSQLHelper.cpp</File><Line>102</Line><Ver>9.3.1.0.1502</Ver></ESec><ESec><Num>-2147220956</Num><Type>0</Type><DTime>11/9/2009 10:47:08 AM</DTime><Svr>HFMSERVER</Svr><File>CHsxSystemConfig.cpp</File><Line>2508</Line><Ver>9.3.1.0.1502</Ver></ESec></EStr>
    Can someone help me on this?

    This issue has been resolved.
    I was using the wrong proveder in the UDL file.
    The correct provider to be used is " Oracle Provider for OLE DB" - when we are running on Oracle database.
    Cheers..

  • JBoss Clustering | Issue with sequence generator

    Hi all,
    I am facing a strange issue. I have 2 instances of jboss on the same machine and we have a number of stateless session beans used in our application. Now, I have written a Stateless session bean for sequence generator. I am able to run it on one instance but it is failing on another instance (even if I am only this running this one instance).
    It gives the following error:
    com.proximities.common.utils.SequenceIdGeneratorUtil: Method: getSequence(): Message: TableKey : VENUE
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: utils.SequenceIdGeneratorUtil: Method: getSequence(): Message: Fetching from sequence proxy factory: VENUE
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI initial context: org.jnp.interfaces.NamingContextFactory
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI URL: jnp://localhost:11099
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI initial context prefix: org.jboss.naming:org.jnp.interfaces
    2005-08-02 11:19:58,421 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getSequenceFacade: Message: SequenceStoreFacadeHome - Sequence store facade home returned from ejbHomeFactory isnull
    2005-08-02 11:19:58,421 FATAL [com.proximities] Class: ejb.EJBLookupUtil: Method: getSequenceFacade: Message: Exception during the invoking the remote interface
    2005-08-02 11:19:58,421 INFO [STDOUT] java.lang.NullPointerException
    2005-08-02 11:19:58,421 INFO [STDOUT] ejb.EJBLookupUtil.getSequenceFacade(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.getSequenceStore(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.reserveBlock(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.<init>(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.getSequence(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at common.utils.SequenceIdGeneratorUtil.getSequence(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.VenueDAO.add(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.VenueDAO.update(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.common.GenericDataAccessManager.executeModify(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at business.mediator.ManageVenueMediator.insertIntoVenues(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at business.sessionfacade.VenueManagementFacadeEJBean.insertIntoVenues(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2005-08-02 11:19:58,421 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:130)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:51)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:139)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.CleanShutdownInterceptor.invoke(CleanShutdownInterceptor.java:264)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:873)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2005-08-02 11:19:58,421 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:155)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:104)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:179)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:165)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:97)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
    2005-08-02 11:19:58,421 INFO [STDOUT] at $Proxy92.insertIntoVenues(Unknown Source)
    Now within the server logs, I can see that it has loaded and cached the home interface of that bean, but dont know why its not picking it up.
    Here are the logs for the same:
    [org.jboss.ejb.EjbModule] startService, starting container: SequenceStoreFacade
    [org.jboss.system.ServiceController] starting service jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.ejb.StatelessSessionContainer] Starting jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.ejb.StatelessSessionContainer] Begin java:comp/env for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] TCL: org.jboss.util.loading.DelegatingClassLoader@188d92e
    [org.jboss.ejb.StatelessSessionContainer] Bound java:comp/ORB for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] Bound java:comp:/HandleDelegate for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] End java:comp/env for EJB: SequenceStoreFacade
    [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] SequenceStoreFacade cannot be Bound, doesn't have local and local home interfaces
    [org.jboss.proxy.ejb.ProxyFactory] (re-)Binding Home ejb.SequenceStoreFacadeHome
    [org.jboss.proxy.ejb.ProxyFactory] Bound SequenceStoreFacade to ejb.SequenceStoreFacadeHome
    [org.jboss.system.ServiceController] starting service jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.ejb.plugins.StatelessSessionInstancePool] Starting jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.ejb.plugins.StatelessSessionInstancePool] Started jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome dependent components: []
    [org.jboss.resource.connectionmanager.CachedConnectionInterceptor] start called in CachedConnectionInterceptor
    [org.jboss.ejb.StatelessSessionContainer] Started jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB dependent components: []
    BTW, I am using JCS for caching and JBoss 4.0. Any pointers will be most appreciated?
    Thanks,
    Vikrant Verma

    You'll get a lot more help with this by posting this to the JBoss forums. This forum is about the J2EE SDK which uses the Sun Java System Application Server.
    -Ian Evans

  • Clustering issues with 4.5.1

    We are using Weblogic 4.5.1 with sp7 and have heard that there are
              issues with Weblogic clustering. Specifically, the IIS plugin having
              memory leaks, and 4.5.1 with sp7 has issues when implementing clustering
              (the app servers in the cluster sometimes do not respond and sometimes
              contend for who owns the next request coming from the proxy). I've also
              seen that when a HTTP 1.1 request comes to the Web server, the proxy
              sends a HTTP 1.0 request to the App server. I've also heard that sp10,
              due out in July will fix these issues. Can anyone verify this?
              Also, I want to make sure that our proposed configuration can work in a
              clustered environment. I have two IIS Web servers, WebA and WebB, and
              also two Application servers running 4.5.1 sp7, AppA and AppB. Both Web
              servers are identical and both App servers are identical. Our Weblogic
              ListenPort is 7005
              If I set up WebA's iisproxy.ini file to contain the line
              "WebLogicCluster=AppA:7005,AppB:7005"
              I then copy WebA's iisproxy.ini file to WebB so that the two
              iisproxy.ini files are identical.
              The App servers have an identical configuration and point to 237.0.0.1
              as their multicast IP address.
              Is this configuration ok? Can two web servers point to the same two App
              servers in the cluster, or does each Web server need it's own "cluster"
              of App servers.
              Thanks in advance...
              

    What was that issue with deadlock and where is it described?
              Prasad Peddada wrote:
              > Also there was a dead lock issue with sp7 which was fixed in the later service
              > packs.
              >
              > Vinod Mehra wrote:
              >
              > > >> Specifically, the IIS plugin having memory leaks,
              > > These have already been fixed with SP7.
              > >
              > > >>and 4.5.1 with sp7 has issues when implementing clustering
              > > >>(the app servers in the cluster sometimes do not respond and sometimes
              > > >>contend for who owns the next request coming from the proxy).
              > >
              > > WebLogic server not responding can be because of many reasons. Most of the
              > > time it is because of bad configurations and sometimes because of
              > > Application
              > > problems itself. Now about recovering from such a hung server SP8 onwards
              > > the plugin-ins have a configurable parameter "HungServerRecoverySecs",
              > > using which the plug-ins mark that server as bad (temporarily) and
              > > the requets failover to the SECONDARY.
              > >
              > > >> I've also seen that when a HTTP 1.1 request comes to the Web server, the
              > > proxy
              > > >>sends a HTTP 1.0 request to the App server.
              > >
              > > 4.5.1 does noes not support HTTP1.1 yet. So they will still be HTTP1.0.
              > >
              > > >> I've also heard that sp10, due out in July will fix these issues. Can
              > > anyone verify this?
              > > Yes. Except the last one.
              > >
              > > >> Is this configuration ok?
              > > Yes the configuration you have described is a valid one.
              > >
              > > --Vinod.
              > >
              > > lynch wrote:
              > >
              > > > We are using Weblogic 4.5.1 with sp7 and have heard that there are
              > > > issues with Weblogic clustering. Specifically, the IIS plugin having
              > > > memory leaks, and 4.5.1 with sp7 has issues when implementing clustering
              > > > (the app servers in the cluster sometimes do not respond and sometimes
              > > > contend for who owns the next request coming from the proxy). I've also
              > > > seen that when a HTTP 1.1 request comes to the Web server, the proxy
              > > > sends a HTTP 1.0 request to the App server. I've also heard that sp10,
              > > > due out in July will fix these issues. Can anyone verify this?
              > > >
              > > > Also, I want to make sure that our proposed configuration can work in a
              > > > clustered environment. I have two IIS Web servers, WebA and WebB, and
              > > > also two Application servers running 4.5.1 sp7, AppA and AppB. Both Web
              > > > servers are identical and both App servers are identical. Our Weblogic
              > > > ListenPort is 7005
              > > >
              > > > If I set up WebA's iisproxy.ini file to contain the line
              > > > "WebLogicCluster=AppA:7005,AppB:7005"
              > > >
              > > > I then copy WebA's iisproxy.ini file to WebB so that the two
              > > > iisproxy.ini files are identical.
              > > >
              > > > The App servers have an identical configuration and point to 237.0.0.1
              > > > as their multicast IP address.
              > > >
              > > > Is this configuration ok? Can two web servers point to the same two App
              > > > servers in the cluster, or does each Web server need it's own "cluster"
              > > > of App servers.
              > > >
              > > > Thanks in advance...
              

  • [Sun Studio 11] Classpath issue: com.mysql.jdbc.Driver not found

    Greetings !!
    I'm trying in an Applet to connect to a mysql database but the Applet fails everytime.
    It works perfectly in console environnement with the same javaconnector.
    I read this:
    +Classpath. Specifies the path to the classes that the IDE uses. By default the IDE uses its internal class path, which includes all mounted filesystems and various directories in the IDE's installation and user directories. The IDE ignores your CLASSPATH environment variable. Click the ellipsis button to display a property editor in which you can change the class path settings.+
    So my CLASSPATH environnement variable is passed by (as I redoubted) but I don't know why even specifying classpathes in Options/Building/Compiler Types/internal compilations/expert/class path the I got the same behaviour from the Applet... is there another way to specify that this Driver* is located in */usr/share/java/mysql-connector-java-5.1.7-bin.jar* ??
    I also added the jar files in Options/IDE configuration/System/File System settings/java librairies but same behaviour again... but when compiling the output windows indicates that it has finished jdbc... that's all, the Applet still can't open a connexion with the mysql server...
    Can somebody could explain to me how set up the IDE to use this javaconnector in order to connect to the mysql database ?
    Thank you for your time...
    Hurukan

    This forum is about the tools provided with Sun Studio, the development system for C, C++, and Fortran programming.
    Since your question is about Java, you are more likely to get a helpful answer in a Java forum. Go to forums.sun.com, and look under the Java heading.
    Or if your question is about Netbeans, try a forum at netbeans.org

  • Windows 2008 R2 Failover Clustering Issue - The operation returned because the timeout period expired.

    I am trying to get a new Windows 2008 R2 cluster to work on two VMware servers (VMware ESXi 5.0.3) and am experiencing some form of timeout issue during the creation of the cluster according to the logs.
    All validation checks pass successfully, whether trying to create a single node or dual node cluster, but the same error message is seen when creating the cluster. I have tried various suggestions found but none of them have made a difference. In an effort
    to further diagnose the issue I enabled the following diagnostic logs:
     - FailoverClustering
     - FailoverClustering-Manager
     - FailoverClustering-Client
    The only useful error I can find is in the FailoverClustering-Client log which reports an error 'Couldn't resolve tcp binding to cluster' for each physical node to be part of the cluster.
    In order to further diagnose the cause of the issue, I am looking for any options for increasing logging when attempting to create the cluster. Is there a way to increase the logging to see what the actual timeout is occurring with?
    Alex.

    Sorry, I should have been more clear ...The servers I am attempting to create a cluster with are Virtual Servers running on a VMware ESXi (5.0.3). They have access to two shared disks (connected to each VM using a separate SCSI Controller from that for the
    disk used to install the OS) with Virtual SCSI Bus Sharing set within VMware.
    Each Virtual Server has two NICs configured (with static IPs) - one for internal (domain connectivity) and the other for heartbeat connectivity. The servers can ping each other via both interfaces, as expected, but only domain connectivity works via the
    internal NIC.
    I have tried creating a single node or dual node cluster and get the same error each time. When the cluster is attempting to be created I can see the new computer object is created in Active Directory (which is then deleted when the cluster creation fails)
    and I have also tried pre-creating the computer object and specifically setting permissions on it.
    When creating the cluster I have tried via the GUI and via PowerShell (both with and without the option to attach the shared storage) but always get the same type of timeout error message. I am hoping there are further debugging options that can be used
    to provide a better output as to what the timeout is occurring with.

  • Clustering issue with WLCS 3.2 weblogic 5.1 and service pack 8

    I'm having a problem with Portlets on a page with commerce server 3.2 on
              Cluster A below. One Portal page has multiple portlets on it. When the
              Portal Page executes the portlets are being scheduled across both SCCWLS00
              and SCCWLS01 and they are not able to share the session. Thus they will
              throw exceptions trying to read properties from the WLCS profile which is
              shared.
              In Cluster B, When the portal page excutes all portlets are "pinned" to that
              server and they share the information perfectly. Both Cluster Groups have
              their CLUSTER-wide weblogic.properties file set for
              weblogic.httpd.clustering.enable=true
              weblogic.httpd.session.persistence=true
              weblogic.httpd.session.persistentStoreType=replicated
              weblogic.httpd.register.cluster=weblogic.servlet.internal.HttpClusterServlet
              Any ideas on why this is happening? And How I can correct it?
              David Marshall
              ==============================================
              Environmental Background
              CLUSTER Group A (Production)
              VLAN1
              StrongHold 3 (Apache 1.3.19 w/SSL) (Solaris 8)
              ! mod_wl-ssl.so
              ! WebLogicCluster
              sccwls00:nnnn,sccwls01:nnnn
              V
              <firewall translates IPs from 1 VLAN 1 VLAN 2>
              VLAN2 !
              V V
              SCCWLS00 (Solaris 8) SCCWLS01 (Solaris 8)
              CLUSTER Group B (Development)
              StrongHold 3 (Apache 1.3.19 w/SSL) (Solaris 7)
              ! mod_wl-ssl.so
              ! WebLogicCluster
              weblogic00:nnnn,weblogic01:nnnn
              V V
              WEBLOGIC00 (Soaris 8) WEBLOGIC01 (Solaris 8)
              

    What kind of problem do you have?
    If it's not connected with JDBC, you'd better post your question
    in webservices newsgroup.
    Regards,
    Slava Imeshev
    "leopld goess" <[email protected]> wrote in message
    news:[email protected]..
    hy out there.
    i've been working with apache soap on wl 5.1 for a while now, and
    everything seems to be working allright- as long as i don't try to
    install a servicepack, namely sp8 or sp10. if i do that, the entire
    soap service fails to deploy.
    any ideas...
    thanx
    leopold

  • Sun One webserver clustering

    Hi,
    Can any one let me know how to cluster two or more sun one webservers? Does directory server a mandatory requirement to do the same?
    Please advice.
    Thanks....

    Is the admin server running?

  • Windows server 2012 R2 clustering issue with disks

    we have a two node cluster
    we have volumes configurred on both the clusters.we are using  EVA san storage.
    Data(C:\ClusterStorage\Volume1)
    Logs(C:\ClusterStorage\Volume2)
    i am able to change/move Clustered disk drives from owner node A to Owner node B.I cannot see the clustered drives on both active/passive nodes.
    i am also not able to view the volumes on node b in the windows explorer.Can someone please tell me how to look at the volumes once we move between the drives on the cluster.
    Thank you
    lucky

    Since you are showing us that you have configured Cluster Shared Volumes, that means there are no volumes to be seen in Windows Explorer.  This is expected behavior.  When you create Cluster Shared Volumes, the cluster software creates reparse
    or mount points for the volumes.  That is what the C:\ClusterStorage\Volumex is - it is pointing to the actual volume.  When you want to use storage, you need to point to C:\ClusterStorage\Volumex and whatever subdirectory you create for the location. 
    CSVs are not meant to be used by all applications.  They were initially designed for Hyper-V.  But that is not how you would set up you cluster if you want to offer a something like a regular file share.
    .:|:.:|:. tim

  • Sun DSv6.0 Installation Issue

    Hi All,
    I am tring to install Directory Server (Enterprise Edition) V6.0 and facing below error.
    When I run DSCCSetup status I get an error message stating:
    Failed to run CACAOADM.bat status no suitable java dynamic management kit runtime libraries found. Java DMK 5.1 or higher is required.
    I have tried downloading the Java DMK 5.1 but have been unable to run this on Windows and the downloaded package does not match the instructions i.e. there is no Windows folder in the package.
    Can any one give any clue or advise please.

    Are you using the ZIP or Native installation of DSEE 6.0? Is there a reason why you're not trying 6.3 or 6.3.1?
    Please provide the output (run as root) of
    # <install root>/dsee6/cacao_2/usr/sbin/cacaoadm list-params
    Edited by: etst123 on Mar 16, 2009 2:55 PM
    (removed solaris specific commands as this is Windows)

  • How do I find the latest Critical Sun Solaris Patches on Oracle site

    Hello
    How do I find the latest critical Solaris Patches available to the users. I was searching the list on Oracle's site it's hard to determine which patch is critcal or not. When I type uname -a this is what returns Generic_142909-17.
    Any help you could provide would be appreciated.

    Sorry, I wrote "Monthly" when I meant to write "Quarterly". Apologies for the confusion. My bad.
    From - http://www.oracle.com/technetwork/topics/security/alerts-086861.html
    They are released on the Tuesday closest to the 15th day of January, April, July and October. Starting 2011, the scheduled dates for the release of Critical Patch Updates will be on the Tuesday closest to the 17th day of January, April, July and October. The next four dates are:
    * 19 April 2011
    * 19 July 2011
    * 18 October 2011
    * 17 January 2012
    The CPU for the Solaris Operating System is a rebranded snapshot of the Recommended OS Cluster. The rebranding involves only superficial changes to the patch cluster, with the actual patch content remaining unchanged. The patches contained in this patch cluster are considered the most important and highly recommended patches for Solaris 10. They provide the least amount of change required to address known security, data corruption and availability issues.
    If there's a particular CVE Alert which you're vulnerable to or interested in, then the fix will be released within the patch that corresponds to the area of code the vulnerability affects. You can then apply that patch and it's requirements separate to the clusters. Next time you apply the cluster it will either install the latest rev of the patch or skip it if you have the latest installed already.
    The Recommended Patch Cluster bundle is a much larger collection of patches and contains all the latest patches (at the time of release) which include Solaris updates, Security, and Sun Alert fixes. Note that we merged "Recommended Patch Cluster/Kernel Jumbo Patchset" and the "Sun Alert Patch Clusters" back in June 2010. See http://blogs.sun.com/patch/entry/merging_the_solaris_recommended_and for more information regarding what happened and why.
    Of course there will be a large overlap between the "Recommended OS Cluster" and the "Critical Patch Updates" patchsets will be rolled in to the "Recommended OS Cluster" whenever it's cut and released.
    There's a lot of information in the README files for each cluster so you may want to read those to understand the subtle differences.
    Regards,
    Steve

Maybe you are looking for

  • I'm trying to print multiple frames from a website onto separate pages.

    Firefox has this option on OSX (each frame on separate page), but safari seems to lack such an option. I need to print multiple frames (invoices from zencart) each on separate pages. When I try to print with Safari it will either try and print the se

  • A better way than a global temp table to reuse a distinct select?

    I get the impression from other threads that global temp tables are frowned upon so I'm wondering if there is a better way to simplify what I need to do. I have some values scattered about a table with a relatively large number of records. I need to

  • How to change the full host and domain name on OS X Leopard...

    I recently bought an iMac, and I'm trying to configure it for my network. The question I have is, how can I change the host name and domain name from Skuld.local to skuld.tolharadys.net? After mucking around with a few searches on Google, I've gotten

  • Desktop Content Viewer

    Suddenly my Desktop Content Viewer won't rotate the orientation when I click Control/Command/R.  It had been working fine, then stopped working when I added a new page with hyperlinked content (tried deleting the new pages in case they had some bad g

  • Why one episode in a series

    Please please please can somebody explain to me the following, Just checked the new tv releases to find Air Crash Investigation special report SEASON 1 so thought would have a look opened it up to find one episode in the series and its not even episo