Changing the air flow in Nexus 5596UP without interuption.

We have a Nexus 5596UP and we want to change the air flow to the opposite direction.
I think it is possible to change it without an interruption but have no lab to test it.
I think when I remove all the fans and change 1 power supply the systems keeps running.
(don’t know if the Nexus can work with 2 different power supply’s, this is the catch !!!)
After the new power supply is inserted I will remove the other one (the old one) and push in the new fans.
Hopefully all within 30 seconds to prevent a shut down or mismatch errors.
Is this possible?
Please advise
Kind regards,
Remko van Gilst

Hi Remko,
The airflow through the other Cisco Nexus 5000 Series switches is from front to back, but you can change the airflow back-to-front
Note: The Cisco Nexus 5596 has front to back airflow so you must position it with the front facing a cold isle.
Cisco Nexus 5000 Platform switch with one power supply, removing the power supply causes the switch to shut down. If you are using two power supplies and you remove one of them, the switch can continue to operate.
The fan module is designed to be removed and replaced while the system is operating without presenting an electrical hazard or damage to the system, if the replacement is performed promptly.
I hope you will need some down time since you need flipped around physically to align the airflow anyway.
Please try the below steps,
Power Supplies replacement:
Pull one power supply (System operates normally).
Insert one new power supply (60 second timer will begin).
Pull the second power supply (60 second timer stops)
Insert the second new power supply
Fan replacement:
Pull one fan (System operates normally with 3 fans – N+1)
Insert one new fan
Remove second fan.
Insert second new fan.
Remove third fan.
Insert third new fan.
Remove fourth fan.
Insert final new fan.
Regards,
http://www.cisco.com/en/US/docs/switches/datacenter/nexus5000/hw/installation/guide/install5500.html#wp1258897
Regards,
Aru
*** Please rate if the post is useful ***

Similar Messages

  • Is it possible to change the page of a linked PDF without relinking?

    Is it possible to change the page of a linked PDF without relinking and going through the import options?
    I'm trying to import seveeral pages of the same PDF. The process would be quickest if I could import it once, then duplicate the image box a number of times, then just change the page number each image box is linking to.
    At the moment I'm having to relink (or place), then go through Import Options, then choose the page - it's a long process that feels like it should be quicker.
    Any ideas?
    Thanks

    The short answer is no, that's not possible, but it IS possible to import multiple pages at one time.
    My favorite script for this is from Scott Zanelli: InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files, but there's also a sample script included with ID.

  • How do I change the name of my wireless network without screwing everything up?

    How do I change the name of my wireless network without screwing everything up?  Thanks.

    OK, thanks for the updated information. Please change your profile when you can.
    If you change the network name, keep in mind that any device that connects now will need to connect again to your "new" network.
    On your Mac.....
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click on the AirPort Extreme icon, then click Edit in the upper right corner of the smaller window that appears
    Click the Wireless tab at the top of the screen
    Edit/backspace out the current wireless network name and then type in the name that you want to use
    A few hints....avoid using blank spaces, and also avoid using any special characters like an apostrophe, asterisk, dollar sign, etc. Keep the name short....no more than 20 characters, fewer would be better and simpler to manage.
    Click Update at the lower right of the window and wait a full minute for the AirPort Extreme to restart with the new settings. You are all set now.

  • How to change the angle of a gradient layer without changing anything else?

    How to change the angle of a gradient layer without changing anything else?
    When I try it myself my whole gradient turns black.

    To add to the above, you can not just set the angle. If you want to use other existing settings you need to get them from the layer. The code in that other thread shows one way to get them.
    But if you do not need the existing values for any other reason you can get the descriptor for the layer, make a duplicate of it with all the settings and just overwrite the ones you want to change.
    This is one way to just change the angle while keeping the other existing settings.
    // helper function for working with descriptors
    function getProperty( psClass, psKey, index ){// integer:Class, integer:key
        var ref = new ActionReference();
        if( psKey != undefined ) ref.putProperty( charIDToTypeID( "Prpr" ), psKey );
        if(index != undefined ){
            ref.putIndex( psClass, index );
        }else{
            ref.putEnumerated( psClass , charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
        try{
            var desc = executeActionGet(ref);
        }catch(e){ return; }// return on error
        if(desc.count == 0) return;// return undefined if property doesn't exists
        var dataType = desc.getType(psKey);
        switch(dataType){// not all types supported - returns undefined if not supported
            case DescValueType.INTEGERTYPE:
                return desc.getInteger(psKey);
                break;
            case DescValueType.ALIASTYPE:
                return desc.getPath(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.UNITDOUBLE:
                return desc.getUnitDoubleValue(psKey);
                break;
            case DescValueType.STRINGTYPE:
                return desc.getString(psKey);
                break;
            case  DescValueType.OBJECTTYPE:
                return desc.getObjectValue(psKey);
                break;
            case  DescValueType.LISTTYPE:
                return desc.getList(psKey);
                break;
            case  DescValueType.ENUMERATEDTYPE:
                return desc.getEnumerationValue(psKey);
                break;
    function duplicateDescriptor( descriptor ) {
        var newDescriptor = new ActionDescriptor;
        newDescriptor.fromStream( descriptor.toStream() );
        return newDescriptor;
    function localizeDescriptor( desc ) {
        var stream, pointer, zStringLength, zstring, localized_string, newZStringLength, previousStream, followingStream, newDesc;
        stream = desc.toStream();
        while( true ) {
            pointer = stream.search(/TEXT....\x00\$\x00\$\x00\$/);
            if( pointer === -1 ) {
                break;
            zStringLength = getLongFromStream( stream, pointer + 4 );
            zstring = readUnicode( stream.substr( pointer + 8, ( zStringLength - 1 ) * 2) );
            localized_string = ( localize( zstring ) ) + '\u0000';
            newZStringLength = localized_string.length;
            previousStream = stream.slice( 0, pointer);
            followingStream = stream.slice( pointer + 8 + zStringLength * 2);
            stream = previousStream.concat( 'TEXT', longToString( newZStringLength ), bytesToUnicode( localized_string ), followingStream );
        newDesc = new ActionDescriptor();
        newDesc.fromStream( stream );
        return newDesc;
    function getShortFromStream( stream, pointer ) {
        var hi, low;
        hi = stream.charCodeAt( pointer ) << 8 ;
        low = stream.charCodeAt( pointer + 1 );
        return hi + low;
    function getLongFromStream( stream, pointer ) {
        var hi, low;
        hi = getShortFromStream( stream, pointer) << 16;
        low = getShortFromStream( stream, pointer + 2);
        return hi + low;
    function readUnicode( unicode ) {
        var string = "";
        for( i = pointer = 0; pointer < unicode.length; i = pointer += 2) {
            string +=String.fromCharCode( getShortFromStream( unicode, pointer ) );
        return string;
    function longToString( longInteger ) {
        var string;
        string = String.fromCharCode( longInteger >>> 24 );
        string += String.fromCharCode( longInteger << 8 >>> 24 );
        string += String.fromCharCode( longInteger << 16 >>> 24 );
        string += String.fromCharCode( longInteger << 24 >>> 24 );
        return string;
    function bytesToUnicode( bytes ) {
        var unicode = "", char_code, charIndex;
        for( charIndex  = 0; charIndex < bytes.length; charIndex ++ ) {
            char_code = bytes.charCodeAt( charIndex );
            unicode += String.fromCharCode(char_code >> 8 ) +  String.fromCharCode( char_code & 0xff );
        return unicode;
    function setGradientAdjustmentAngle( angle ) {
        var adjustmentDesc = getProperty( charIDToTypeID("Lyr "), charIDToTypeID( 'Adjs' ) ).getObjectValue(0);
        var newAdjustmentDesc = duplicateDescriptor( adjustmentDesc );
        newAdjustmentDesc.putUnitDouble( charIDToTypeID('Angl'), charIDToTypeID('#Ang'), angle );
        var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( stringIDToTypeID('contentLayer'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
        desc.putObject( charIDToTypeID('T   '), stringIDToTypeID('gradientLayer'), newAdjustmentDesc);
        executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    var newAngle = 45;
    setGradientAdjustmentAngle( newAngle );

  • Change the document flow, table CRMD_BRELVONAI

    Hi experts,
    We are using CRM and ISU. For few cases the ISUCONTRACT displayed in the CIC0 is wrong.
    I would like to know if it's possible to change the document flow ? (the datas in table CRMD_BRELVONAI).
    By transaction ?
    by FM ?
    Thanks in advance if you could help me.
    Regards,
    Nicolas.

    Nicolas,
    Though I myself have not tried deleting any existing Doc Flow, but you can try using the Function Module: CRM_DOC_FLOW_UPDATE_DU.
    If you get a better option please share.
    Regards,
    Shyamak

  • How to change the batteries on a palm m125 without having to do a hard reset

    Some palm m125's are defective meaning that when one changes the AAA batteries one is presented with a no way out question on whether yes to hard reset or no to not hard reset, yes it's true that what i mean by no way means that even a soft reset will NOT make it work again, hope you just did a backup right.. oh! and this will prob. only work if you have enough battery power to keep the unit on: ie: around 5% battery...
    Anywhoo I have found a workaround for this bug or so that may help you, please read below on how to hopefully preserve the data on your handheld's m125 hardware without this hard reset lockup...
    Note: Testing with rechargeables in (Maxxus 1100 mah) and then put in alkalines = mixed results :/, but alkalines out then new ones in should work fine..
    Okay - fairly simple - Let's start:
    A: Turn on the unit - yes u heard me turn the unit ON
    B: Flip the unit over
    C: While the unit is ON take out the top battery first and replace it as fast as you can with the newer one and make sure it is in before doing the next step...
    D: now do the bottom battery...
    E: turn the unit on by pressing the power button
    Result: If all goes well, u'll see the palm logo and then it should show the prefs screen of which you've successfully saved all ur user data. - What it did was a soft reset.
    So far with alkalines i've had nothing but success - if anyone out there owns a m125 as well and can confirm that this tip works, please post to let others know ur success or unsuccess of trying out my tip..
    My Test Results Tested on Factory State unit (Hard Reset Unit ):
    Alkalines -> Alkalines = 99% (if done correctly) = Pretty Safe*
    Alkalines -> Rechargeables = 50% (if done correctly) = Warning/Caution
    Rechargeables -> Alkalines = Not Consistant enough to measure (if done correctly) = Very Risky
    *If ur unit stills asks on Alka to Alka then Just maybe a software program is now causing it to ask for a hard reset as I'm still testing this.
    If method One does not work out, I've also tried the following with success esp. on Rechargeables -> Alkalines, but this will requre more work and a more steady hand...
    A: Turn the unit ON
    B: Press and hold DOWN button
    C: While holding the Down button, take out the TOP battery first and replace it, DO NOT let go of the down button on the handheld
    D: Now replace the BOTTOM battery
    E: Let go of the Down Button
    F: Press the on button
    If all goes well you will see the palm logo meaning that it just did a soft reset, but ur data should still be intact, With method 2 I was able to get a more success rate. , But I am still testing on when the unit is fully loaded, etc.. as these tests were done on a hard reset unit. You can also try holding the up button instead of the bottom one for a method 3. Again anyone out there with success or unsuccess stories - please tell as i'd like to hear your expierence with my findings here.
    Message Edited by nowshining on 10-14-2008 05:14 PM

    Hi
    Im using fireworks to put it all together visually and mechanically
    and then I'd like to export it to dreamweaver
    This is a bad idea, and will only create problems further down the line. For the correct way to do this see -
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html there are 3 parts to this tutorial series.
    As for the effect you wish, (no full page load) this is known as ajax and if you are new and using dreamweaver then the spry framework is probably the easiest to learn, see http://www.webmonkey.com/2010/02/build_ajax_components_with_spry/, your dreamweaver documentation also contains a description of how to use Spry, the full Spry documentation and examples are available at - http://labs.adobe.com/technologies/spry/home.html.
    PZ

  • How to change the Application flow in ISA 7.0

    Hi All,
    I am new to ISA 7.0 and working on B2B application.
    We have made changes in the branding of custom application and now we want some custom functionality to be included in the application flow of our B2B application.
    Suppose, I have p1,p2,p3,p4 pages(JSPs) in standard aplication flow, now I want to skip p2 and p3.
    In p1, once i select shopping cart icon, it should take me p4, which is a order entry page.
    I checked config.xml file and didnt understand much .... and also have a doubt, if in ISA 7.0, apart from config.xml file , is there any other file to be changed to get a custom flow.
    Someone, guide me to acheive this custom flow,please share your inputs on this.
    Thanks,
    Syed

    Change in java coding...in related JSP n action files

  • Am I able to change the registration name on my iMac without resetting the OS?

    Am I able to change the name my MacBook is registered under without resetting the OS?

    Yes, but some applications may need reinstalling, and reregistering under a different name.
    Here's how to change the shortname.

  • Can I change the html name for a page without changing the Menu?

    As I have links on resumes, and portfolios throughout the web, I'd like the  "about me page" to be called info.html. But "info" is a really stupid, general name for a Menu item. So, can I change the name of the pages HTML file to "info.html" without changing it on the menu?

    Hello Tony,
    When you right-click on the page you see within a menu the page properties. Click on that and under 'options' you can change the html pagename.
    Tjaard

  • How can I change the email address associated with iCloud without losing information?

    How can I can change the email address associated with my iCloud account without losing data on my iPad?

    If you're running iOS 6, to change your iCloud ID go to Settings>iCloud, tap Delete Account, then sign back in with the new ID.  This deletes the account and your iCloud data from your device, but not from iCloud.  Provided you are signing back into the same account, your iCloud data will reappear on your device when you sign back in.
    To avoid losing photo stream photos, save them to your camera roll (if not already there) before deleting the account.  To do this, open your my photo stream album, tap Edit, tap the photos, tap Share, then tap Save to Camera Roll.

  • How can i change the country of my Apple ID without giving out any Credit Cards?

    HI. I have the problem of having a Gift Card from the United States and an Apple ID from Colombia. I tried to change the country, but it only lets me continue if i give away a Credit Card number. I don´t want to do that, but neither, i want to lose my 25 bucks. Any advice?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    You cannot use an iTunes Gift Card from the US iTunes/Mac AppStores in Columbia. You should only change the country of your Apple ID if it is true that you have moved to that country and now have the qualifications to use your account in that country; you must have a valid bank card in that country with a vaild billing address for the bank card in that country. There is no way around this requirement.

  • How can I change the password on my sons computer without knowing it? he has forgotten the password and I can not update it or do anything without knowing it

    how can I change the password on my sons computer? he has forgotten it.

    Did you create a second administrator account on his machine? Or is there only one account on his machine?
    Alternatively.. Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         When the menubar appears select Terminal from the Utilities menu.
         Enter resetpassword at the prompt and press RETURN. Follow
         instructions in the dialog window that will appear.

  • Can i change the email of my apple id without losing my apps?

    Can i change the email of my apple id w/o losing all the apps? My original email that i use for it got deactivated so i cant access any verification process that they require.

    You have to sign in to change it or talk to Apple support here: https://getsupport.apple.com/GetproductgroupList.action

  • How can I change the security questions on my account without calling Apple support?

    Important to note that when I try to change it on the Password and Security page on My Apple ID, it keeps asking me to answer my security questions, which I can't remember the exact answer to.
    I've also tried changing my Apple ID password, but then it still asks me to answer the questions before I change them.
    Please help, I don't want to waste money by calling Apple Support on the other side of the world

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (101987)

  • Can I change the Game Center of my apps without deleting its data?

    I'll be making a new apple ID since I'm using the same with my sister. We all know that the game center helps to backup an app... So my apps is connected to the Apple ID my sister and I share and I want to connect it to the game center I will have when I finish making my own account. Is it possible to change them?

    Thx, and I agree.
    I'm selecting that "my question has been answered" here - because the answer is NO. It's apparently not possible. Which is frakkin' ridiculous, and I'd love to be proven wrong. But that's how it appears to be.
    What I ended up doing was first backing up all my data by downloading an app called DiskAid (free, Windows and OS X), and actually digging through my iPhone's folder system until I found the right Applications folder, and clicked through each subfolder until I found the Apps whose data I wanted to copy.
    For anyone who ever needs to do that, the location is:
    /user/Applications/[long string of numbers]/Documents
    I was able to back up my apps on my home computer. So I still am not able to sync up any part of my phone at my work computer, without risking deleting these files. Basically I've minimized the possible damage by making backups.
    Whatev. I'll live. : ) Beautiful phone. Just so irritating.

Maybe you are looking for