ProLiant DL360 G6 + MSA60 and 411 Array

Hello! I have strange issue with my old ProLiant DL360 G6 and HPStorage MSA60 I have two DL360 G6 servers (one in production and one in my office) and two MSA60 Storage, witch connect to DL. In my production enviroment Battery on Array 411 is failed. I take battery and cache module from my office DL360 and plug it into production server. Everything fine and working like charm. Now i have DL360 G6 with no battery and no cache for 411. I unplug cache and battery from P410i array and plug it to 411 (MSA60 is connect to this array) Server start, but i doesn see my MSA60 and get this message: Controller: Smart Array P411 in Slot 1 is connected to a SAS expander which is not supported due to a missing cache module, out of date firmware, or unsupported configuration. Access to the storage may be disabled. If access to the storage is available, making any configuration change will lead to potential data loss on those logical drives. So, my question is: Does battery and cache from P410i can be using with 411 array controller or not? Or i did something wrong?...

Hi:
You may also want to post your question on the HP Business Support Forum -- DL Servers section.
http://h30499.www3.hp.com/t5/ProLiant-Servers-ML-DL-SL/bd-p/itrc-264

Similar Messages

  • Problem virtualising Campaq Proliant DL360 G2 & G3

    Hi Guys
    I have 2 Compaq Proliant DL360 G2 and 1 G3 that need to be virtualised. When I boot from the OVM Server 2.2.2 cd and run linux p2v I get a kernel panic and end of story. I assume there is some hardware it does not like, anyone have the same experience and any work round.
    Thanks
    Richard

    Found the problem < 1GB RAM in the servers. Now where do I get memory for these old beasts from? The G2s have 4 x 128 MB so no free slots. Haven't opened the G3. Was hoping to grab some memory out of the 1 G2 and put it in the other. So now need to find 2 x 512 MB for the G2s, put them in 1 virtualise it then put it in the other. Looks like a trawl of ebay is in order, asked our normal supplier and he cannot get such old memory, or is there a way to virtualise without using the Oracle VM p2v utility and so get around the meory issues
    Fun times ahead
    Edited by: user7799027 on 16-May-2012 08:29

  • 9IAS install on Compaq Proliant DL360

    I have been trying to install 9IAS Release 2 (9.0.2.0.1) - on Compaq Proliant DL360 (Win200).After install EM website stops intermittently and unable to run Forms - is there a
    problem with 9IAS and Proliant DL360 and is there any way round it?

    Alec,
    Some ideas:
    1) Do you have .Net running simultaneously?
    See: http://download-west.oracle.com/docs/cd/B10573_02/relnotes.902/addendum/oem.htm#1007067
    2) Do you have a fixed IP address or DHCP?
    See: http://download-west.oracle.com/docs/cd/B10573_02/relnotes.902/addendum/ipchange.htm#1004903
    3) Did you install the infra & the middle tier in separate ORACLE_HOMEs?
    Thanks,
    Ashesh Parekh
    Oracle9iAS Product Manager

  • Trying to learn Structure and/or Array

    OK here goes my best attempt at an explanation... I been
    through some tutorial on Structures and Arrays and have an ok idea
    of what to do with them. But all the tutorials I went through had
    the variable amounts hard coded in, but I want it to come from a
    database query(s).
    I want to get a mileage total per month per riderId
    tablename: mileageLog
    table fields: ridierId, rideDate, rideDistance
    First I want to query a DB and get all the riderId numbers
    (grouped so I only have one for each). This is no problem.
    <cfquery name="riderIds" datasource="DevKevin">
    SELECT riderId
    FROM mileageLog
    GROUP BY riderId
    </cfquery>
    Now using each riderId, I want to put the results into a
    structure and/or array so that I can then turn around and sort as
    desired.
    I think I need to use a loop - one for each riderId.
    Inside each loop, I would need a second loop running 12 times
    (once for each month)
    The inner loop would run a query like...
    <cfquery name="mileageByMonth" datasource="DevKevin">
    SELECT sum(rideDistance) AS monthTotal
    FROM mileageLog
    WHERE riderId=
    ???? from above somehow
    AND year(rideDate)=#nowYear#
    AND month(rideDate)=#
    ???? loop through 12 months#
    </cfquery>
    I'm so lost

    quote:
    Originally posted by:
    2onboard
    This does indeed return the correct amounts - THANKS
    But how do I utilize them? by that I want to take my results
    and put it into a table that is 14 columns wide.
    Column 1 = the riderID
    Columns 2-13 = the monthly totals
    column 14 = a yearly total
    I also want to be able to sort by any column
    Now it becomes complicated. I'm going to assume that you want
    the current year, not the last 12 months. That means you don't
    necessarily want 14 columns. I also assume that Access's month()
    function returns a number like 4, and not a string like April. I
    don't use Access so I don't actually know.
    Step 1 - Use query of queries and valuelist to get a list of
    distinct month numbers. I'll call this variable abc.
    Step 2 - Build another list of the month names for each of
    those numbers. The function is MonthAsString. I'll call this
    variable months. Then build a third list, the same length, with the
    word integer as each element. I'll call this variable xyz.
    Step 3 - Create a new query. This will have your data in a
    cross tab format for later.
    xTab = QueryNew("Rider,#months#,total",
    "varchar,#xyz#,integer");
    Step 4 - Loop through your original query and use if/else
    logic to populate the xTab query.
    Final Step - Use a flash grid to display your xTab query.
    That will enable you to sort on any column.

  • How can i combine an array of string and an array of integers ?

    i have an array of string data [to be used as header], and an array of multiple column integer vakues;i need them together in one file. 
    Am not able to combine them so that i can write them into a single file.
    Solved!
    Go to Solution.
    Attachments:
    string file input.txt ‏1 KB
    Test build_1.vi ‏13 KB

    There are a few ways you can do this.  What I recommend is:
    Open the file
    Use the Array to Spreadsheet String to turn your headers into a single string
    Write this to the file.
    Use the Array to Spreadsheet String to turn your numeric data into a single string
    Write this to the file.
    Close the file
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How do I wrap and int array?

    Hello,
    this is my first time using the Java forum so I hope it can be helpful :)
    Im having a problem with my computer assignment at school. Here is the code im having trouble with
    private void writeObject (ObjectOutputStream out) throws IOException
         out.defaultWriteObject (); // do the default stuff
         out.writeObject (strokeColor);
         out.writeObject(xList);
         out.writeObject(yList);
         private void readObject (ObjectInputStream in) throws IOException,    ClassNotFoundException
         in.defaultReadObject (); // do the default stuff
         strokeColor = (Color) in.readObject ();
         xList = (Integer[]) in.readObject();
         yList =  (Integer[]) in.readObject();
         }In the readObject method, Im trying to restore the values of the arrays xList and yList by wrapping the data back to and integer array, but I keep getting an incompatible types error. Any suggestions?

    never mind, I just used some ArrayList objects instead and that solved the problem

  • Diffrence mailbox GUID and CAS array

    What's the diffrence between Mailbox GUID and CAS Array & What's the benefit for GUID.

    Hi,
    Mailbox GUID is the property of Exchange mailbox and we can think of the mailbox GUID as the primary key for the mailbox. It is a unique value that distinguishes an individual mailbox from all others. Regardless of which Active Directory user account owns
    the mailbox, the mailbox GUID always remains the same as long as the mailbox exists.
    CAS array is an object. It includes all CAS servers in one site and is used for high availability.
    As you know, different from previous Exchange server, all Outlook clients in Exchange 2013 uses Autodiscover to create a new connection point comprised of mailbox GUID, @ symbol, and the domain portion of the user’s primary SMTP address. This is because
    that the simple change results in a near elimination of the unwelcome message of “Your administrator has made a change to your mailbox. Please restart.”
    Thanks,
    Angela Shi
    TechNet Community Support

  • Anyone tryed SR-IOV on hp proliant dl360/dl380p gen9?

    hello everyone
    im using hp proliant dl360p Gen 8 with hp 366FLR (i350-T4 oem) and works fine (Hyper-V)
    but, in case of dl360/dl380p Gen9 platform 366FLR's SR-IOV does not working.
    (dl360 gen9 has hp 331i, known as intergrated nic/broadcom and i added hp 366flr-4port with FlexLOM)
    the issue is...
    all VM HOST/VSWITCH/GUEST settings are fine (yes. i did checked it with GEN8 and GEN9)
    but GEN9's vm guest could not connect with SR-IOV.
    if, i have SR-IOV disable on GEN'9's VM Config. network is working fine (but, can not use sr-iov)i have tested 3 more dl360p gen9 servers (updated firmware, bios (1.40), nic firmware, device driver, applyed spp) and same issues
    and windows server 2012 r2 and windows server 2012 (r1) also...
    in my opinion, this is not about configrations. hardware related problems i think.
    i have contact to hp and intel, hp does not...
    This topic first appeared in the Spiceworks Community

    Hi Daniel,
    " This appears to only happen to the Hyper-V guest OS. "
    Do you mean that any other hosts can access the network resource normally  except these VMs ?
    If yes , my suggestion is to disable the VMQ on the physical NIC  for the VMs , then try test again .
    Best Regards
    Elton Ji
    If it is not the answer please unmark it to continue
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How can i use the AND opperator to AND to arrays

    hi, i have two large arrays of booleans and i need to copy all the true values from array 1 to array2 without losing the trues that are already in array 2. From my knowledge of asm, i know that using the AND opperator is perfect for this, seeing as each boolean only takes one bit.
    Searching and is kinda useless, so my search failed, could someone give me a quick code example, say x = 1 AND 2 or something. Thats all i need, thanks.
    PS: x should = 3
    Message was edited by:
    dead

    thanks guys, and btw, if your trying to join two arrays like i am, its OR, not AND, lol woops, not enough coffee.
    EDIT: now ive just been playing around and it appears you cant OR arrays, im guessing theres no way around this than to just increment through each one. This code needs to be as fast as possible as its in a loop, so if anyone who has a lot of experience with computers has a better way please let me know. I was originally going to make my code in assembler, and just read the array as an qword and OR it, then read it as an array again, but to be truthful im not entirely sure if its faster to to OR a qword once or a bit 64 times, lol.

  • How can I create a RAWpic-file with header(cluster of 8elements) and 2D Array?

    I have created a cluster with 8 "I32"elements (Header). I also got picture information into a 2D array (i converted information from a ROI into a 2Darray("Image pixels(I16)")
    Now I want to create a RAW picture file (first the header information followed by the picture information.)
    I think I have to convert the Header-cluster into an array with "cluster to array". But even this is not possible(Info:"you cannot combine 2 different clusters"). Then I have to combine the 2 arrays with "insert into array"??? But the header array would be a 1Darray if the "cluster to array conversation" works and the picture information is 2D.
    Can anyone help me please?

    I think this is actually pretty straightforward, barring any byte-order issues. Attached is an image that demonstrates what I think jotthape wants to do.
    The key is to let multiple Write File nodes do the work for you. There's no need to combine all the data into a single structure for the write, and avoiding that makes things easier in this case, because you don't have to worry about some of the data being I32 and the rest being I16.
    Give this a shot,
    John
    P.S. It does seem likely that you will run into byte-order problems if you want to read your custom RAW file in using some other piece of Windows software. You can check the forum and the NI site for info on byte order, then ask a new question if you're still having a problem.
    Attachments:
    writeRaw.png ‏8 KB

  • Accessing Array and Iterating Array list - Need Oracle Pro Assistance

    Hi,
    This is the third time i am posting the question, :( .
    I want some advice on how to iterate through a Array list which has an array of tasks/processes and make calls to the corresponding subprocess for each element in the list.
    We are looking for a BPMN approach.
    Any example or ideas would be of great help.
    My requirement states that i will get a list of tasks from a Rules Engine and i have to use BPM to iterate through the tasks and make calls to each tasks(which is a subprocess call).
    In Oracle BPM 11g I would like to use a multi-instance subprocess to send a task to a user for each item in an array. There are an unknown number of rows in the array. Does anyone have a good example of how to do this?
    I am using BPM Oracle 11g but any help 10 will also help us.
    I am reposting again this question , hoping that someone will help us
    Thanks
    Edited by: user9083699 on Aug 28, 2010 4:03 AM

    I am not the expert on 11g, however, in 10g, if I understand correctly... it sounds like you should be able to use PAPI to notify instances/sub processes, etc....
    With a list of Instances, you can search for that instance and notify it...
    If you have a list of processes, that need to be started, you can create an instance within that process....
    user9083699 wrote:
    My requirement states that i will get a list of tasks from a Rules Engine and i have to use BPM to iterate through the tasks and make calls to each tasks(which is a subprocess call).If you are just trying to initiate a sub-process, (btw, why would they have to be subprocesses?), It sounds like you should be able to create a global in the process, and just call it with PAPI...
    I'm still a little fuzzy, on how this business requirement turned up... however, maybe this helps a little?
    -Kevin

  • Accessing Array and Iterating Array list

    Hi,
    I want some advice on how to iterate through a Array list which has an array of tasks/processes and make calls to the corresponding subprocess for each element in the list using BPM 11g
    We are looking for a BPMN approach.
    Any example or ideas would be of great help.
    My requirement states that i will get a list of tasks from a Rules Engine and i have to use BPM to iterate through the tasks and make calls to each tasks(which is a subprocess call).
    In Oracle BPM 11g I would like to use a multi-instance subprocess to send a task to a user for each item in an array. There are an unknown number of rows in the array. Does anyone have a good example of how to do this?
    I am using BPM Oracle 11g but any help 10 will also help us.
    I am reposting again this question , hoping that someone will help us
    Thanks

    Others probably are getting it, but I'm not really sure what it is that you're tyring to do with the list of instances.
    I'm getting lost in two areas. First, you mentioned you have a rules engine returning a list of instances. Mostly out of curiosity - why do you have an array of instances being created by a rules engine? What is the use case? Asking because I'm sure to learn something new from you on this - I'm used to seeing a lot of things coming back from an invoked rule, but never an array of instances before.
    Second (sure you know this), in both 10g and 11g there is a Split-N activity that you can use to parse (as the name implies) "N" number of instances. This "N" is discoverable at runtime. If you have 14 instances in your array at runtime, it would go into a Split-N activity and 14 instances would automatically be spawned. The 14 instances would flow from the Split-N to its corresponding Join activity in the process.
    Dan

  • Copy and paste array between instances?

    I have A.vi and B.vi. The last time I used these was in 8.6. I now have to use them on a machine with 8.2, but A.vi does not work in 8.2 without a bunch of tweaking, so I made it A.exe.
    A.exe builds and recalls files that contain arrays of DaqMx channels. I create long lists of channels once, and then since they are stored to a file, do not have to create them again. In the past, instead of adding code to B.vi to call the file, I would just open the file I wanted with A.vi, then copy the data from the array of channels, and paste it into the front panel of B.vi before pressing run.
    I cannot do this now. Is it because A is an EXE so the two are in different Application instances? I have not tried making B an EXE (nor do I want to), but I think it wouldn't matter because they would still be in different instances?

    You recreated numeric and string controls in an EXE. I agree that you can swipe these, CTRL C, and then CTRL V in to a VI. If I replace the CTRL C action with a Right Click> copy data, I get a picture in the VI.
    I can go to a numeric or text control or indicator within my EXE, right click, copy data, then paste that into another control within my EXE. If I then immediately go to a control in the VI, the Right Click>paste data option is greyed out and doing CTRL V drops a picture of the controlon the front panel. I did not select the control when I copied, I only highlighted the data inside the control.
    CTRL C or CTRL V is never an option when operating on array controls. I do not want to copy and paste individual lines of the array, I want the whole array data. This is done by right clicking on the numeric within the array index display and choosing copy data. In an EXE, this is your first option. In a VI while running, this is the third option. In a VI while not running, this is under data operations.
    I tried every combination of running and not running, and took screenshots, but it is hard to see exaclty what action I am performing.
    Attachments:
    Copy Array Data Running.jpg ‏37 KB
    Can't Paste Running.jpg ‏22 KB
    CTRL V of Right Click Copied Text.jpg ‏24 KB

  • JNI and huge Array

    Hi,
    I need to transfer nearly 120k buffer to Native C++ code and the same data back to JAVA.
    I like to know how this array is transfered from Java to C++ and C++ to Java?
    Can I pass the reference from Java to C++?
    Thanks in advance
    Raja

    Do you need to use the data in java? Then you have to do the regular jni array stuff.
    If you don't use it, then just have java keep a pointer - put the pointer into a java long and re-extract when you need it again.

  • Java Beans and JSP Arrays

    Hi..
    I am trying to pass a 2D String array to a Java Bean and i am getting
    "java.lang.NoSuchMethodError"
    Any Ideas?
    Thanks
    Joe
    Jsp Call
    Sorts s = new Sorts();
    s.getTotal(items);
    "items[][]" is a 2 dimentional arrays and size can vary..
    Java Bean
    public class Sorts implements Serializable {
    public double getTotal(String sItems[][]){
    double aSum=0;
    for(int i=0;i<sItems[0].length;i++){
    aSum=aSum+(Double.parseDouble(sItems[1])*Double.parseDouble(sItems[2][i]));
    return aSum;

    Can someone show me how to pass a 2 Dimentional Array to a Java Bean method? obviously i am doing something wrong.
    Joe
    Hi..
    I am trying to pass a 2D String array to a Java Bean
    and i am getting
    "java.lang.NoSuchMethodError"
    Any Ideas?
    Thanks
    Joe
    Jsp Call
    Sorts s = new Sorts();
    s.getTotal(items);
    "items[][]" is a 2 dimentional arrays and size can
    vary..
    Java Bean
    public class Sorts implements Serializable {
    public double getTotal(String sItems[][]){
    double aSum=0;
    for(int i=0;i<sItems[0].length;i++){
    aSum=aSum+(Double.parseDouble(sItems[1])*Double.pars
    Double(sItems[2][i]));
    return aSum;

Maybe you are looking for

  • How can I pass value from sql query to unix script

    I am new to oracle/unix. I want to write a simple script to find max date from a table and then pass date into a variable in a korn shell script. sql is select max(date) from table; how can I pass that value in unix shell as a variable. Thanks

  • Import contacts to macbook pro retina

    i have a macbook pro retina. how do I import my contacts from my iphone without using icloud? i dont know how to import to icloud. thanks!

  • Voltage/Powersupply for AirPort Express and Apple tv

    Hi, Just bought the items airport express and Apple tv in the US to take home and to Norway.  The voltage there is 220v and the pins are different. Should I return the items, or can this be easilly fixed?

  • Updting Actual Lot Quantity

    Hi Everybody, A material has inspection type 01 active but the Post to insp stock is not checked in the QM view of material master. User did three GRs of quantity 10 each for a batch BAT1. So now the actual lot quantity becomes 30. When the user did

  • Install-Software CD 1 of 2

    during installation it tells me to insert software cd 1 of 2. when i insert the cd and press return, it just spits it back out and says it is "unable to read cd for solaris 8 software cd 1 of 2." any help would be greatly appreciated.