SUN Cluster 2.2 behaviour when removing SCSI from A1000

We're running a SUN Cluster 2.2 , 2 node cluster on a SUN E5500 running Solaris 5.8 and Veritas VM.
A1000 Boxes cross connected over SCSI to each node and D1000 dual attached per node.
What would one as cluster behaviour expect if one Node crashes, powering the crashed node off and removing the SCSI cable from the A1000 to the surviving node. Would the surviving node continue to run properly ?
Thanks

There is potential that the surviving node could panic when termination is lost when the cable is disconnected.

Similar Messages

  • SUN Cluster 2.2 behaviour when remoing SCSI

    We're running a SUN Cluster 2.2 , 2 node cluster on a SUN E5500 running Solaris 5.8 and Veritas VM.
    A1000 Boxes cross connected over SCSI to each node and D1000 dual attached per node.
    What would one as cluster behaviour expect if one Node crashes, powering the crashed node off and removing the SCSI cable from the A1000 to the surviving node. Would the surviving node continue to run properly ?
    Thanks

    There is potential that the surviving node could panic when termination is lost when the cable is disconnected.

  • JList run time errors when removing items from list

    Hi there
    I am having trouble removing items from a JList. For a While it was working fine and now it outputs runtime errors everytime samething gets removed from the lsit
    Here is the code
    //declare
    public class Consumertab1gui extends JPanel implements ActionListener
         public static JList conList = null;
         private static DefaultListModel model = null;
    // Create a list with some items
    model = new DefaultListModel();
    conList = new JList(model);
    //set the size of cells in the list with the length of the string
    conList.setPrototypeCellValue("Lenght 1234567890");
    conList.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
    conList.addListSelectionListener(new ValueReporter());
    //set a scroll onto the list
    JScrollPane conScroll = new JScrollPane(conList);
    add(conScroll,c);
    //when the button gets pressed to drop the selected item the following code is called
    private void dropConsumer()
    int selItem=0;
    componentsV.comVRemove(conList.getSelectedValue().toString());
    selItem=conList.getSelectedIndex();
    System.out.println("No:"+(model.getSize()-1));
    System.out.println("S:"+selItem);
    remConList(selItem);
    dropCon.setEnabled(false);
    //which in turns calls this
    public void remConList(int pos)
         model.remove(pos);
    when the model.remove(pos) code is executed the following runtime errors are given:
    java.lang.NullPointerException
    at Consumertab1gui$ValueReporter.valueChanged(Consumertab1gui.java:197)
    at javax.swing.JList.fireSelectionValueChanged(JList.java:1321)
    at javax.swing.JList$ListSelectionHandler.valueChanged(JList.java:1335)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:187)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:167)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:214)
    at javax.swing.DefaultListSelectionModel.removeIndexInterval(DefaultListSelectionModel.java:546)
    at javax.swing.plaf.basic.BasicListUI$ListDataHandler.intervalRemoved(BasicListUI.java:1561)
    at javax.swing.AbstractListModel.fireIntervalRemoved(AbstractListModel.java:160)
    at javax.swing.DefaultListModel.remove(DefaultListModel.java:478)
    at Consumertab1gui.remConList(Consumertab1gui.java:38)
    at Consumertab1gui.dropConsumer(Consumertab1gui.java:58)
    at Consumertab1gui.actionPerformed(Consumertab1gui.java:46)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
    at java.awt.Component.processMouseEvent(Component.java:5100)
    at java.awt.Component.processEvent(Component.java:4897)
    at java.awt.Container.processEvent(Container.java:1569)
    at java.awt.Component.dispatchEventImpl(Component.java:3615)
    at java.awt.Container.dispatchEventImpl(Container.java:1627)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
    at java.awt.Container.dispatchEventImpl(Container.java:1613)
    at java.awt.Window.dispatchEventImpl(Window.java:1606)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    can anyone spot any mistakes in the code or suggest possible resons as to why these run time errors occur?
    Thanks
    alexis

    java.lang.NullPointerException
    at Consumertab1gui$ValueReporter.valueChanged(Consumertab1gui.java:197)The NullPointerException occurs at line 197, in the valueChanged method of your ValueReporter inner class. I have looked through your post several times but I don't see where you posted that method. Anyway, that is where you should look.
    PC²

  • Problem when removing elements from table after apply sort

    Hi,
    I have big problem with <af:table> and sorting.
    When I removed objects from a table without sorting, there is no problem but when I removed
    items from the table after sorting, the remain items are not correct.
    For example, i have in my table these items :
    Item AA
    Item CC
    Item ZZ
    Item BB
    Item AA
    Item BB
    Item CC
    Item ZZ
    I sort the table and i select the following Items : Item BB a Item CC
    The remains item is only Item AA, Item ZZ disappear.
    If i resort the table, the missing Item zz appear again in the table.
    Here is my jspx :
    <af:table var="row" rowBandingInterval="1" width="1050" rows="5"
    rowSelection="multiple"
    value="#{pageFlowScope.editNotificationBackingBean.ingredients}"
    binding="#{pageFlowScope.editNotificationBackingBean.ingredientsTable}"
    autoHeightRows="10" id="t2">
    <af:clientListener method="goEditRow" type="dblClick"/>
    <af:serverListener type="doubleClickOnRow" method="#{pageFlowScope.editNotificationBackingBean.handleRequestIngredientsSelectBtn_action}"/>
    <af:column headerText="#{bundle.col_fr_name}" width="240"
    sortable="true" sortProperty="name.FR_Description" id="c1">
    <af:outputText value="#{row.name.texts['fr'].value}" id="ot1"/>
    </af:column>
    In my backing bean i call this method to remove selected elements :
    public void unselectBtn_action(ActionEvent actionEvent) {
    RowKeySet rowKeySet = selectIngredientsTable.getSelectedRowKeys();
    int i = 0;
    Iterator it = rowKeySet.iterator();
    while (it.hasNext()) {
         Integer index = (Integer)it.next() - i;
    selectIngredientsTable.setRowKey(index);
    CompositionIngredient compositionIngredient =
    (CompositionIngredient)selectIngredientsTable.getRowData();
    notification.getProductDetail().getCompositionIngredients().remove(compositionIngredient);
    i++;
    selectIngredientsTable.getSelectedRowKeys().clear();
    AdfFacesContext.getCurrentInstance().addPartialTarget(selectIngredientsTable);
    Thanks in advance.

    I have made a mistake, i don't paste the right <af:table> from my jspx.
    Here is the correct one :
    <af:table var="row" rowBandingInterval="1" width="1050"
    rowSelection="multiple" id="tableSelectedIngredients"
    value="#{pageFlowScope.editNotificationBackingBean.notification.productDetail.compositionIngredients}"
    binding="#{pageFlowScope.editNotificationBackingBean.selectIngredientsTable}"
    partialTriggers="::tab_ingredients_list_expressed_per">
    <af:column sortable="true" headerText="#{bundle.col_name}" id="c5" width="180"
    sortProperty="ingredient.name.FR_Description">
    <af:outputText value="#{row.ingredient.name.texts['fr'].value}"
    id="ot18"/>
    </af:column>
    ...

  • Jdev aborts when removing attribute from entity object

    Hi,
    after synchronizing my data model with my database scheme, jdeveloper 10g gave me the correct message, that there had been 1 attribute left in an entity object, that does no longer exist in the database.
    When removing the attribute from the entity object, jdev 10g aborts (first click: nothing happens, second click: abort).
    regards
    Klaus

    Thanks for bug report. This bug has been logged (3151203) and has been fixed in more recent builds.
    Ray

  • Strange message when removing subtypes from IT1002 for OM

    Hi,
    We need to remove some of the subtypes for IT1002 that show up in OM. Or rather - we need to differentiate subtype by object type (as is done by SAP).
    The only way I have found how, is to remove the subtypes from T777Z under the time constraint view for IT1002.
    However, when I try to delete a row, I get the message: "Documentation was deleted. Continue?".
    This message worries me a little. So my questions are:
    1. Is this the correct method for removing subtypes from different object types in OM?
    2. What does the popup message mean, and do I need to worry about it?
    Any suggestion appreciated
    Best regards
    Kirsten

    Hi,
    The correct way is through transaction OOSU or IMG path: SPRO>Personnel Management>Organizational Management>Basic Settings>Data Model Enhancement>Infotype Maintenance>Maintain Subtypes
    If you try deleting from here, you will not get that confirmation box. Iu2019m not sure what it means but looks like itu2019s trying to delete the object itself. Youu2019ll see u201Cdelete an objectu201D in the title bar of that box.
    Hope this helps.
    Donnie

  • Firefox 4 hangs when removing attachments from Outlook Express email

    When I open an email in Outlook Express 6 (Windows XP Pro) and try to drag & drop an attachment to the desktop with Firefox 4 open in the background, my computer hangs. This only happens when FF4 is open - I have no problem removing attachments with IE8, Chrome 10, or no browser open. It is repeatable (even after reboot) and it happened with every attachment I tried so far (PDF, JPG, & RTF)
    I don't have to release the attachment - it's locked up as soon as I start dragging it. The cursor stays a slashed circle even when hovering over the desktop (as opposed to it turning into a box with a "+" when FF4 is not open).
    When frozen, my CPU is pegged at 100%, which is split between 2 processes - firefox.exe and msimn.exe. I can kill the Firefox application in Task Manager, but it takes awhile (including dumprep.exe after firefox.exe is terminated).
    The only Add-ons I added was Acrobat X, Flash, and AdBlock Plus. I tried disabling AdBlock, but that had no effect - it still hangs.
    Any ideas? Can anyone else repeat this on another Windows XP / Outlook Express computer?

    Here's the bug on Bugzilla: https://bugzilla.mozilla.org/show_bug.cgi?id=674644
    You can speed up correction by voting for this bug!

  • GroupWise8 crashes when removing sender from "TO" field

    Hi guys,
    A user is having GroupWise crash when they go to remove a contact from the "To:" field while composing an email.
    The Event viewer ID:1000 states: Faulting application name: grpwise.exe, version: 8.0.3.21995, time stamp: 0x4fda7d4c
    Faulting module name: gwabu1.dll, version: 8.0.3.21995, time stamp: 0x4fda7938
    Exception code: 0xc0000005
    Fault offset: 0x0005eecb
    Faulting process id: 0xa14
    Faulting application start time: 0x01ce4fec1ff44bec
    Faulting application path: C:\Program Files (x86)\Novell\GroupWise\grpwise.exe
    Faulting module path: C:\Program Files (x86)\Novell\GroupWise\gwabu1.dll
    Report Id: 01b72261-bbed-11e2-a47b-180373dcb5bf
    Thanks!

    Hi
    DEP and GroupWise do not play nicely together. I would recommend that you turn it off.
    Cheers,

  • Loosing internet connecti when removing router from airport extreme network

    Hello. I have an older airport extreme: the alien one. For years I have had the following setup:
    Modem --> Belkin Router --> Airport Extreme --> wireless signal to macbook and hardwire line to mac pro. There is also an airport express downstairs acting as a relay to boost my wireless signal. At the time i did it I had other computers so i needed the router to distribute the internet signal. I no longer need the extra capacity as I now only have a wireless macbook and a wired mac pro. Unfortunately when I disconnect the Router and connect the modem directly to the airport I no longer get internet service at either computer. I can't figure it out. The Airport Extreme is already sending all the signals to the two computers...the router is just sitting in the middle doing ostensibly nothing at all. Why, when I take it out of the loop does everything stop working? Thank you!!

    Welcome to the discussion area!
    Your AirPort Extreme was configured in "Bridge Mode" when it was used with the Belkin router.
    Since the Extreme is now the main router, you must configure the Connection Sharing setting for "Share a public IP address".
    If you are still using Tiger 10.4.x as your profile indicates, you may still have the application that came with this operating system...AirPort Admin Utility. I cannot remember back 4-5 years to tell you much about this.
    If you have upgraded to Leopard or Snow Leopard, you'll use AirPort Utility.
    I can help you if you have AirPort Utility. Post back if you need help.

  • Sun Cluster 3.1: Not same physical device (scdidadm -L)

    Hi all,
    I going to install Sun Cluster 3.1.
    When verifying with the scdidadm -L, i got:
    4 clustnode1:/dev/rdsk/c2t0d0 /dev/did/rdsk/d4
    4 clustnode2:/dev/rdsk/c3t0d0 /dev/did/rdsk/d4
    Seem that it not connected to the same physical device.
    What do I have to check ?
    Thanks,
    Regards,
    Aiggno

    Some more information:
    Node 1
    0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01070a271,0
    1. c1t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e0106dd891,0
    2. c2t0d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@2/scsi@4/sd@0,0
    3. c2t1d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@2/scsi@4/sd@1,0
    4. c2t2d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@2/scsi@4/sd@2,0
    5. c3t0d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@3/scsi@4/sd@0,0
    6. c3t1d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@3/scsi@4/sd@1,0
    7. c3t2d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@3/scsi@4/sd@2,0
    Node 2
    0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01070aad1,0
    1. c1t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01070aac1,0
    2. c3t0d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@2/scsi@4/sd@0,0
    3. c3t1d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@2/scsi@4/sd@1,0
    4. c3t2d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@2/scsi@4/sd@2,0
    5. c5t0d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@3/scsi@4/sd@0,0
    6. c5t1d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@3/scsi@4/sd@1,0
    7. c5t2d0 <SUN36G cyl 24620 alt 2 hd 27 sec 107>
    /pci@8,700000/pci@3/scsi@4/sd@2,0
    Node 1 have c2, c3 and node 2 have c3, c5 ???

  • Odd gmail behaviour when using mail.app

    Hello there,
    Ever since upgrading to Mavericks, I've been experiencing odd behaviour when sending messages from my gmail account in mail.app. I send a message and up to ten copies of the message appear in mail.app's trash.
    Does anyone know what might be the cause of this?
    many thanks,
    Chidi

    this is a setting in gmail that interfer with mail.app
    the setting is that mail.app is that when you type a mail it will auto save it while you are typing. and gmail will delete the saved onece and the mail.app will create a new all the time
    duno how to turn this off, try by rebuilding the mailbox in mail.app

  • CSSImport Utility - Remove Users from Groups

    We have a security group that has a few hundred users assigned to the group. When there is a need to remove a user from the group it is difficult to find the user as I have comb through the list to find the user i am trying to remove. Two questions: is there a way to sort the users in the group in Share Services? The second question is can users be removed using the CSSImport utility by specifying the "delete" option in the importexport.properties? Does the "delete" option remove the user from the secuity group and or does it delete it completely from ShareServices? (we are using Hyperion v9.3.0.1.0 Build 5)

    Hi,
    I am not so sure about the sorting but removing users from groups can be done with the CSSImportExport utility, I see you are on 9.3.0, try and get hold of the 9.3.1 version as it is backward compatible to the 9.3.0 version and more stable.
    When removing users from groups, just set your import operation to update
    import.operation=update
    and in your import csv just put the group children elements and the users you want in the group.
    #group_children
    id,group_id,group_provider,user_id,user_provider
    TestGroup,,,UserToKeepInGroup,Native Directory
    This way it will keep the users in the import file and remove the users from the group that are not in the file, also it does not remove the user from shared services only from the group.
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Sun cluster failed when switching, mount /global/ I/O error .

    Hi all,
    I am having a problem during switching two Sun Cluster nodes.
    Environment:
    Two nodes with Solaris 8 (Generic_117350-27), 2 Sun D2 arrays & Vxvm 3.2 and Sun Cluster 3.0.
    Porblem description:
    scswitch failed , then scshutdown and boot up the both nodes. One node failed because of vxvm boot failure.
    The other node is booting up normally but cannot mount /global directories. Manually mount is working fine.
    # mount /global/stripe01
    mount: I/O error
    mount: cannot mount /dev/vx/dsk/globdg/stripe-vol01
    # vxdg import globdg
    # vxvol -g globdg startall
    # mount /dev/vx/dsk/globdg/mirror-vol03 /mnt
    # echo $?
    0
    port:root:/global/.devices/node@1/dev/vx/dsk 169# mount /global/stripe01
    mount: I/O error
    mount: cannot mount /dev/vx/dsk/globdg/stripe-vol01
    Need help urgently
    Jeff

    I would check your patch levels. I seem to remember there was a linker patch that cause an issue with mounting /global/.devices/node@X
    Tim
    ---

  • Bizzare Disk reservation probelm with sun cluster 3.2 - solaris 10 X 4600

    We have a 4 node X4600 sun cluster with shared AMS500 storage. There over 30 LUN's presented to the cluster.
    When any of the two higher nodes ( ie node id 2 and node is 3 ) are booted, their keys are not added to 4 out of 30 LUNS. These 4 LUNs show up as drive type unknown in format. I've noticed that the only thing common with these LUN's is that their size is bigger than 1TB
    To resolve this I simply scrub the keys, run sgdevs than they showup as normal in format and all nodes keys are present on the LUNS.
    Has anybody come across this behaviour.
    Commands used to resolve problem
    1. check keys #/usr/cluster/lib/sc/scsi -c inkeys -d devicename
    2. scrub keys #/usr/cluster/lib/sc/scsi -c scrub -d devicename
    3. #sgdevs
    4. check keys #/usr/cluster/lib/sc/scsi -c inkeys -d devicename
    all node's keys are now present on the lun

    Hi,
    according to http://www.sun.com/software/cluster/osp/emc_clarion_interop.xml you can use both.
    So at the end it all boils down to
    - cost: Solaris multipathing is free, as it is bundled
    - support: Sun can offer better support for the Sun software
    You can try to browse this forum to see what others have experienced with Powerpath. From a pure "use as much integrated software as possible" I would go with the Solaris drivers.
    Hartmut

  • Sun cluster 3.1 io error

    Hi,
    I have 2 cluster nodes with solaris 9/05 with sun cluster 3.1,After a migration from Hitachi AMS1000 storage to SUN storagetek 9985v when i shutdown one node in the cluster the mounted volumes on the second node giving io error.I already installed the new patches for os,cluster and san but the problem still persists.Please help me
    Regards,
    Arun

    Arun,
    You say you migrated to the 9985v - did you do that with backup and restore or with a replication technology? If it was the latter, you might have inadvertantly copied over some SCSI reservation keys. Otherwise, I can't see any reason for the problem.
    SCSI keys can be removed (with extreme care) using the scsi and pgre commands in the /usr/cluster/lib/sc directory.
    Tim
    ---

Maybe you are looking for

  • Microsoft Outlook is Wrong Email Client for Form

    Forms I have developed using the Forms button in Acrobat 9 Pro that have an email button properly launch the default mail client in Windows,even if Microsoft Outlook is installed but is not the default mail client. Forms I have developed in LiveCycle

  • Attaching a doc to an email

    I want to attach a doc word file to a email and when u click on attach its only taking me to the pictures option and not showing me the doc i saved the phone...and how do i see the doc i saved on the phone...i have lumia 720 with windows 8

  • EAS only sync's calendar on creation of new EAS account.

    We run our mail server remotely. It is a Zimbra system which is supposed to be Activesync compatible (5.0.18_GA_3009 NE w/mobile sync option). And, I have seen from several posts that there are people successfully syncing with Zimbra. I am able to co

  • How can we give a placeholder to the complex table like "Please Select" in WPF

    How can we give a placeholder to the complex table like "Please Select" in WPF. Actually i have to give a default value like "please select" to the complex table in WPF. I tried with placeholder but its not working. Tags edited by: Michael Appleby

  • Pdf cannot be exported

    i keep getting this error when in safari when it does not appear that the pdf is protected in any way. it happens when i run a save as. for instance this page http://workgroups.clemson.edu/AAH0503_ANIMATED_ARCH/linked%20docs/Bio-logic%20of %20Archite