UCS 2.0(1t) - Local Storage Bug

Hi,
I performed an upgrade to 2.0(1t) and ever since the local disks give an inoperable error in UCSM. Downgrading the host firmware to a previous version 2.0(1q) or 1.4(3s) resolves the issue.
I've collected tech support bundles with and without the error if anyone from Cisco would like to look into this further.
Many thanks,
Jason.
Sent from Cisco Technical Support iPad App

Hi guys,
Thanks for taking the time to respond. I was in a bit of hurry last week and I didn't put as much detail as I usually would do. I am not on that site at the current time but I do have the TS bundles with me, so if you could possibly point me to the right file or location I can get the exact error message out.
The blades are B200 M2, half width. All blades were affected and they have the ~75Gb SAS disks in them running on the LSI controller.
I had created a Host Firmware package for the service profile and it was only when I applied this (using version 2.0(1t)) that I first saw the errors appear. When they were running the 2.0(1q) release this was not an issue and there was a copy of Windows installed on one of the blades.
I then created HFW packages going back to 2.0(1q) and 1.4(3s), after applying these the error was resolved (I wanted to try both for completeness). The issue does appear to be with the board/bios firmware as I didn't need to completely revert all of the UCS environment to clear the errors.
Like I said I can get the error exactly from the TS bundle if I get a little guidance as to where to find it, however, until then from memory the error was something along the lines of "Blade X disk x/y inoperable", this was showing as a major fault in UCSM and also produced an amber light on the physical disks. Changing RAID layout or swapping disks across blades made no improvement, also decomissioning and scrub of the disks made no improvement.
Kind Regards,
Jason.

Similar Messages

  • Adobe flash player 11 local storage bug

    I have adobe flash player 11.0.1.152 installed on Windows 7 x64 ENT
    The bug:
    Flash player allow / deny button is unclickable thus video cannot be played.
    this happens when i check ask me before allowing new sites to save information on this computer in storage tab in Global Settings. 

    by the way this happens in other sites except youtube and other applications such as steam
    browser
    Firefox 7.0.1
    IE 9
    this is unaccebtable coz i visit many gaming sites and i have to watch trailers, gameplay, etc
    i have no way watching the video but to change the global settings to allow all sites to save blah blah

  • Local Storage on IPad and Iphone is missing IOS7

    Hi,
    I have a Jquery Mobile app working fine in IOS6, upgrading to IO7 on the Ipad and Iphone the app is crashing when returning lists of data that previously worked. Our app works exclusivley with the local storage code in all modern browers allowing offline usage. Seems like the IOS7 upgrade is disrupting this somehow. I
    cannot see the Local Storage icon in the web developerm, I am expecting this.
    I can load around 40 list items into JqueryMobile, after that Safari crashes and the Wed Developer disappears. Any thoughts welcome.
    Harvey

    This appears to be a known bug , which is REALLY annoying me. Whoevers idea it was to disable cookies by default should be shot! I'm still fumbling around trying to get this going, but its not prooving easy...
    http://stackoverflow.com/questions/20160499/enable-cookies-for-ios-7-in-phonegap -build

  • IPhone would not let me delete individual song from library, tried deleting album to remove music from local storage, now certain songs from album do not show in iTunes match on iPhone only on computer

    Upon completion of matching and uploading my very large library of music (+15,000), I wanted to see how iTunes Match worked on my iPhone. I started it and selected the first album in the list to listen to. I let it play the entire album and then decided that I wanted to remove certain songs off of the iPhone's local storage. Tried to delete the individual songs and it would not let me. So I figured that I would go back and just delete the album. After selecting delete I went back to listen to one of the songs on the album and realized that it deleted several of the songs from the iTunes Match completely. When pulling iTunes up on my computer the songs are still there but does not give me the option to upload to iTunes Match.
    I have tried turning off Match on iPhone and back on (doesn't seem to do anything cause when turned off the iPhone still displays the music.)
    Then tried power cycling. (Still shows the music)
    Then I tried power cycling again and resyncing the phone and the iPhone still shows the music as it was on the phone.
    How do I get the music to be accessable on the iPhone again.. I have been messing with this for the course of 3 hours now.. and any help would be appreciated!!
    iPhone 3GS 8GB

    Actually Michael I know exactly how to delete.. The iPhone would not let me swipe to the left to delete the individual song, so I went to the album view and did it there.. The issue I am having is a bug because it removed 3/4 of the albums availablity off my iPhone.. You post proved no help because it is basic troubleshooting which, if you read my post, I have already done.. I did however figure out how to fix my issue on my own.. Basically I had to remove the album from my iTunes on my computer and upload it again to iTunes Match..

  • Retrieve variable value from local Storage and display on canvas

    Hi
    I'm working on a project that has multiple html files (the projects are split into 12 so 12 different edge projects and im linking them via window.open()). I have a variable that keeps track of correct answers stored in LocalStorage html object. I have managed to get the localStorage variable to increment up by one each time the object is correct however my last step is to get the variable and them display the result on the canvas. I have tried
    var outPut localStorage.getItem(' ') method to retrieve the variable then used the set and get method to display the result however it doesn't work. Im not sure if I need a for loop to go though the localStorage and get the elements
    Code:
    // insert code to be run when the composition is fully loaded here
    yepnope({nope:['jquery-ui-1.10.0.custom.min.js','jquery.ui.touch-punch.min.js'],complete: init}); // load the jquery files
    sym.setVariable("myScore", 0);
    var c = localStorage["myCount"] || 0; //loading from localStorage
    function init(){
    sym.getSymbol("barLimit").$('scrubber').draggable({start: function(e){
    },drag: function(e,ui){ // start: ...  // Find original position of dragged image
    var leftLimitScrubber  = sym.getSymbol('barLimit').$('scrubber').position().left; // position of the scrubber
    var rightLimitScrubber  = sym.getSymbol('barLimit').$('leftLimit').position().left;
    var LimitTwoLeft  = sym.getSymbol('barLimit').$('rightLimit').position().left;
    if(leftLimitScrubber == rightLimitScrubber){
      sym.getSymbol('correctBar1').play('in'); //
      sym.getSymbol('nextButton').play('in');
      sym.getSymbol('incorrectBar1').play('out'); //
      sym.getSymbol('thumbsDown1').play('out'); //
      sym.getSymbol('thumbsUp1').play('in'); //
      sym.getSymbol('congrats').play('in'); //
    localStorage["myCount"] = parseInt(c)+1; //Converting string to number, and then saving it
    console.log("numberOfCorrectAnswers", localStorage["myCount"]);
    var finalScore = sym.getVariable("myScore");
    finalScore = c;
    sym.setVariable("myScore", finalScore);
    sym.$("Score").html(finalScore);
    } else if(leftLimitScrubber == LimitTwoLeft){
    sym.getSymbol('incorrectBar1').play('in');
    sym.getSymbol('correctBar1').play('out');
    sym.getSymbol('thumbsUp1').play('out');
    sym.getSymbol('thumbsDown1').play('in');
    axis: "x",
    containment: "parent"
           //for (var i = 0; i < localStorage.length; i++){ // iterate throught the local storage
             //var getItem = localStorage.getItem(localStorage.key(i));
              //if(getItem == 'numberOfCorrectAnswers' ){
    The above is the code for the 12th project in  this projects it needs to display the variable inside the object localStorage and display on the canvas.
    Any help will mean a lot. Thank You in advance
    P.S edge animate has a lot of bugs hard to code in

    what you need to do is to create a text box and set a default value of zero. Once that is don't you need a code on the stage which grabs the value form the localStorage object. I used the .text() jquery method to display the value on the canvas. So the zero will be replaced with whatever the value of the localStorage is.
    You also need a if statement to check if the localStorage is undefined, if its not then grab the value and display on the canvas.
    e.g
    var number = localStorage['finalValue']; // for the sake of completeness I had to put this line of code
    if( number ! = undefined){ // if not undefined so the object exits then ...
         sym.$(' (text identifier) '). text(number); // note text identifier is the name of the text box you create in edge
    } // Done

  • Increasing Local Storage options

    Hello,
    We have several B440 blades that have 2x72gb drives in a raid-10/mirror array for local storage.  We would like to increase them to 146gb drives.  I have been unable to locate any documentation / support that shows what would be the best path to do this.  ie - in our HP servers, you can swap 1 drive, let the array rebuild, swap the other drive, let the array rebuild and then the array config utilites allow you to utilize the additional space.
    We have the new drives and I have a spare blade to play on, so I'm happy to take ideas if no one is quite sure how to perform this.
    Thank you!

    Though that procedure might work, you likely wont find any documentation from HP, Cisco or LSI on it - as it's not a supported method to increase array capacity.
    If this is a lab system you're welcome to test this, but you do so at your own risk.  I wouldn't recommend this on a production system.
    The Cisco version of the LSI MegaRAID User guide can be found here:
    http://www.cisco.com/en/US/docs/unified_computing/ucs/3rd-party/lsi/mrsas/userguide/LSI_MR_SAS_SW_UG.pdf
    This will at least explain how to increase a logical volume's capacity  (to take advanrage of the extra space) once the smaller disks have been  swapped for larger ones and re-sync'd.
    Regards,
    Robert

  • Local Storage cannot be enabled

    Just yesterday, I started having problems with Adobe Flash Player 10 on my Vista computer.  I use both IE and Firefox, and no matter which browser I use, I get the message that local storage has been disabled and I need to enable it.  When I go to the Global Settings page to enable it, I am not allowed to check the box to enable the storage.  I am told that Adobe is aware of this bug.  It is named FP-1914.  What can I do about this?  I have tried downloading an older version of Flash Player, but I cannot figure out which file(s) I need to open to install it.
    Sue

    Hi, if you sent a screenshot it didn't come through because I think that feature has been disabled for a time.
    I use all of the Settings and have not had any problem with any and have been able to set them. I use Windows and Windows Music Player.
    Others that i have worked with and am currently working with have mentioned they can't access one of the Settings
    Panel or even the site itself. However, it was due to not having the correct Flash Player installed, along with the correct
    ActiveX Control whether IE or other browsers. Once their Flash Player was installed correctly then they had no problem
    with any Settings.
    I am not familiar with Pandora, but would only make this comment. Flash Player is a browser plug-in and sometimes
    in users add ons there are some that will conflict with the browser itself, add ons conflicting with each other and conflict with the Flash ActiveX Control.
    Perhaps an add on is conflicting with Pandora since it is Flash enabled as you say. Just mentioning a possibility.
    Also you may want to make sure your Flash Player is installed correctly since sometimes with an Uninstall/Install one old file doesn't get removed.
    Thanks,
    eidnolb

  • What is "local storage" in Safari 5.1.7

    Why is it in Safari 5.1.7 that it always takes a couple of reset Safari's to actually clear out local storage? Everything else always clears out, just local storage will pop back in ...

    Might be the security fixes >  Safari 5.1.10 for Snow Leopard

  • I'm try to buy a movie from iTunes with my I pad 3 and it tells me there is not enough local storage and when I go to my local storage there is a lot on free storage I also restarted my ipad but still the same prob what do I do?

    I'm try to buy a movie from iTunes with my I pad 3 and it tells me there is not enough local storage and when I go to my local storage there is a lot on free storage I also restarted my ipad but still the same prob what do I do?

    5GB is typically not enough space to download a movie.  Often, movies take from 3 - 5 GB to begin with.  The only option you have is to delete more things from your iPad.  You can remove unused Apps, pictures, music, text message (messages with pictures can take up a lot of space), email messages, books, magazines etc.

  • How do I download a movie to my phone?  when I click 'rent' through itunes, I get a message that there is not enough available local storage, but I can manage my local device storage usage in 'Settings'.  I have activated icloud, but this has not helped.

    How do I download a movie to my iphone 3G?  When I click 'rent' in itunes, I get a message that there is not enough available local storage, but I can manage storage on my device in 'Settings'.  I have activated icloud, but don't know how to change my storage so that I can rent and watch the movie on my phone.  thanks for any help you can give.

    I always do my Rentals with the itunes program on the computer.
    Make rental from itunes store. It will show in movies under library, DO NOT click to play it. Plug in the device to the computer. Click the name of the device on left. Click on movies. There is an  option to copy to the device. Sync. obviously you still need space on ipad to put rental but you can have it take computers hard drive space until you need it.

  • How can i get more local storage space on my iphone 4

    I want to put more song on my iphone 4 but it keeps saying i dont have enough local staorage space. How can i get more local storage space on my iphone 4?

    You don't. Delete 'stuff' you don't need or buy a phone with more storage. you can not increase or upgrade the internal storage in the iPhone.

  • HT4191 iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.

    iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.  I've seen reference to the  "My iPhone" local storage put no mention on how you create this folder or access this folder within the Notes app.  I realize storing information in a local storage like this provides no syncing between other iDevices but that is exactly what I'm looking for.  I'm running iOS7.0.4 on a iPhone 5S, and a iPad Air.  Any help would be greatly appreciated.

    If you go to Settings > Notes > Default Account you will see "On My iPhone" as the default account and the only choice if you have not enabled syncing Notes in Settings >iCloud or Settings > Mail, Contacts, Calendars. If you have enabled syncing you can still select "On My iPhone" as the default account. When you are in the Notes app you won't see any accounts listed if you have not enabled syncing because they are all in the On My iPhone account and that is the only place possible. It is not a folder that you create.

  • Can I use iCloud as my library instead of using local storage?  Would I be able to synchronize the music on my phone? and make CDs out of the my music in the icloud using itunes?

    Can I use iCloud as my library instead of using local storage?  Would I be able to synchronize the music on my phone? and make CDs out of the my music in the icloud using itunes?

    Many thanks JEM24 for your help.  Ive just spent the best part of six hundred pounds on a new Sony Rx100m2 compact camera, so I have no interest in the Ipods camera at all really. I doubt Ill be watching many videos on it as Im very lucky in that I have a good Android tablet. Its more as a stock music player that Ill be buying the Ipod for, if indeed I do end up buying one. I dont like the idea of paying the exorbitant amount added for more memory space that Apple along with most other companies charge. In fact I read an article on this very subject just yesterday in the tech section of Flipboard. It stated in the article that in the case of the Iphone  the actual cost of each additional  gigabyte of storage  to Apple et al is something in the order of 60p.. This is certainly not reflected in the price us the customer has to pay at the till.. Its for this reason primarily that Apple in particular, because their products do not allow adding expandable memory of your own in the form of cheap to buy cards, that nobody in their right mind buys the 64gig etc Iphones..I am aware that we are discussing my potential purchase of an Ipod Touch here but you see my point. Many thanks again though for helping me.

  • Safari 5.1.7 local storage not always clearing upon reset

    There are several threads through out this forum regarding cookies being accepted regardless of settings, but much of those seem to be fixed by one of the recent security updates (seperate from an actual Safari update), including fixed for me. But, have noticed that "local storage" items do not always clear out upon a reset of safari (all boxes checked). In fact, sometimes, it takes two or three resets to completely clear them out.  I have verified this behavior on several mac's running SL each yeilding the same.  I just wondered if anyone else has seen this, or has found a solution (or if this is expected behavoiur). Does this indicate a security threat within the browser?  I have used the feedback to Apple to report this.
    I did find this explanation, however:
    https://developer.apple.com/library/safari/#documentation/iphone/conceptual/safa rijsdatabaseguide/Name-ValueStorage/Name-ValueStorage.html

    BDAqua,
    Nope. It's very erratic. For example, just now I cycled several times between the inbox and the smart mailbox and even closed and re-opened. The inbox showed messages. Then I quit mail and re-opened, the inbox was empty. It took a couple more cycles of quit and re-open to get an inbox display. But as soon as I got it back on, and then closed or changed mailboxes, it disappeared when I went back to the inbox.
    Hellofa way to run a railroad.
    And just for reference, when I first had this issue last week under 10.6.8, I read several posts on this forum wherein other users had problems with the inbox display. Other than the smart mailbox "fix", I never did find a definitive solution or explanation as to why it is occuring.
    John

  • How does one clear the Local Storage in Safari 6.0?

    I used to be able to delete the cookies in the Local Stiorage folder.  But the old path ~/Library/Safari/LocalStorage doesn't exist anymore since the system got updated to OSX 10.7.4 and Safari 6.0.  And as ever emptying the cache via the develop drop-down menue doesn't clear the cookies stored in Local Storage.
    I am totally at loss, where these cookies are hiding in my system but really want to get rid of them.  Firefox is an alternative but it is tiresome to use this browser as it keeps on blocking things I want to do or asking me a little bit too frequently for permission etc.  Can anyone explain the Local Storage issue to me please?

    hpr3, thanks for your response but you didn't read my post correctly.  I am not referring to 'normal' cookies.  The ones which are stored under the section Local Storage are special and survive the general 'clear all website data' action via Safari's preferences.  I know several people have pointed this out before me.  I was able to clear these cookies in the Local Storage folder before but it was always quite a lot of 'clicking through' to be done and one had to go through the Finder via user/library/safari/local storage etc.  I recall there was a folder involved named Macromedia as well.   But with the upgrade of the operating system and Safari this path doesn't exist anymore.
    If you clear the cookies via preferences, then click out of Privacy and back in, you might notice that even though you haven't used your web browser at all, there are still cookies which magically re-appear. And they are tagged as Local Storage.
    Now, can anyone else come up with a helpful answer?

Maybe you are looking for

  • NAV 2013 R2; How to run a customized report (206 sales invoice) in the classic client

    Hello, in preparing a newly installed NAV 2013 R2, I'm questioning the following: In the Development Environment I have customized report 206 Sales - Invoice in the Design menu View Layout with the space of the logo (by Microsoft SQL Server Report Bu

  • IPod isn't recognized by computer/OTHER iPod is frozen...

    Okay, so I have two iPod touches. One of them (thanks to my little sister) got ran over by a car, and is badly cracked. But it still worked perfectly fine, except the ear bud jack needs to be messed with to work. Either way, my sister got one of the

  • Time machine simply doesn't work...

    What's my system? Hardware Overview:   Model Name:          iMac   Model Identifier:          iMac11,1   Processor Name:          Intel Core i5   Processor Speed:          2.66 GHz   Number Of Processors:          1   Total Number Of Cores:          

  • Qosmio G30(Japanese model) and TV in Australia,

    Hi, I bought a g30 Qosmio in Japan about 6 years ago. I have now returned to Australia and want to watch TV on the qosmio. The cables provided in Japan don't fit the antenna connection in the wall in Australia. I guess I am not the only one who has a

  • Is adobe flash player compatible with ios7?

    I have heard that adobe is not compatible with ios7 and therefore one cannot open ecards on an ipad or iphone. Is this true and if so how does one get around this problem?