E220R with D1000 is this possible?

Hi i have an E220R running SunRay 2.0 but also require it to use samba to backup ghost images to a D1000. Problem is that ive never setup a D1000 array, and have no idea how to do it...are there any walkthru's or step by step instructions on how to do this?
Im running Solaris 9 on the box and think that I am using the correct scsi cables to connect the box to the D1000.
How do i find out if the system has recognised the array disks?
How do i then configure the box to use the array? preferably as a mirrored set of 4 vs 4 disks?
All help would be appreciated

I have an Enterprise 220R with Solaris 9 O/S, and a SunStorEdge D1000. I understand that the onboard SCSI SE is incompatible with the SCSI on the D1000, however I have a PCI dual SCSI card which is Differential installed on the 220R. Using a sun 530-2453 cable I have connected the 220R to the 1st Interface on the D1000, and then linked the other SCSI interfaces using a HPDB68M to HPDB68M cable, finally teminating it at the last interface with a terminator. It all seems to be connected correctly but the 220R refuses to recognise the D1000. I have used the devfsadm -c disks command to see if the system recognises it but with no joy. Ive looked over the docoumentation again and again but seem to be getting no where.
Basically my configuration is:
Enterprise220R ->- StorEdge 1st SCSI interface ->- HPDB68M cable(2nd SCSI interface) ->- HPDb68M(3rd SCSI interface) ->- SCSI Terminator.
I also went to the OK prompt and typed in probe-scsi-all and received a BUS FAULT over and over.

Similar Messages

  • Registering MBeans with rmiregistry - is this possible?

    I created an application which offers an MBean to allow instrumentation - so far so good. I can control it with JConsole and the standard jdk6 system settings.
    Problem is, if I have two instances of the same application or different applications which attempt to use the same com.sun.management.jmxremote.port, there will be a port conflict and the second instance won't start.
    I thought of running the standalone rmiregistry utility and registering each application with it, using the single instance of rmiregistry so that each instance won't need its own port - is this at all possible?

    Hi,
    as far as I understand it, a high number of "Total loaded" should not necessarily be a problem, as long as classes are unloaded again, i.e. the number of "currently loaded" classes remains somewhat constant.
    Taking this into account, using -Xnoclassgc should be a bad idea, because it should leave you with a growing number of classes currently loaded - which in the end will blow the permanent generation of your JVM (at least this is what was the case at one previous project).
    If the number of classes is becoming too big and the permanent generation fills up, you should be seeing OutOfMemoryErrors pointing to the permanent generation.
    I suggest you should be checking other possible causes. Have you been logging garbage collection output to check whether it is really garbage collection that causes your application to freeze at some point? Maybe it is possible to provide a little more information on the problem?
    Bye.

  • I have a new ipod that I would like to share my itunes library with. Is this possible?

    Can someone help me and give me an idea as to whether or not is possible to have multiple Ipods and a shuffle share the same Itunes library on the same computer.  I attempted to drag the music on my itunes to another IPOD and it will not allow it.  Please help.  Thank you.

    Just plug the iPod in and open iTunes. It will the iPod will show in the devices section of the iTunes sidebar. Click on the iPod go to the summary tab and set you syncing options. You can do this for as many iPods/iPhones/iPads as you like.

  • Replace substr, instr with Reg_exp, is this possible,

    Hi Team,
    I have Small requirement below, i have writen Query For this but was thinking Is there Any better way Of
    doing it, esp With Use To reg_exp,
    i have Some code As shown below
    '23456_TR_ABC_CODE12_JPM-(1)100-(1)150'
    From this code i Only want portion which Is Between 'TR_' And '_CODE12' i.e. ABC,
    given Is my Query And its output
    Select
    substr( substr('23456_TR_ABC_CODE12_JPM-(1)100-(1)150',instr('23456_TR_ABC_CODE12_JPM-(1)100-(1)150','TR_',1,1)+3),
            1,
            instr(
                  substr('23456_TR_ABC_CODE12_JPM-(1)100-(1)150',instr('23456_TR_ABC_CODE12_JPM-(1)100-(1)150','TR_',1,1)+3),
                  '_',1,1
                  -1) "word"
    From dual;
            word
    1     ABC
    kindly let me know If there Is Any better way Of doing it,,,

    Jeneesh, in case there are several TR_ or _CODE12 in the line I'd advice to use non-greedy operators.
    SQL> with t as
      2     (select '23456_TR_ABC_CODE12_JPM_(1)_100_CODE12_ASJ' word from dual)
      3     select regexp_replace(word, '.*TR_<font color="red">(.*)</font>_CODE12.*', '\1') word
      4       from t;
    WORD
    <font color="red">ABC_CODE12_JPM_(1)_100</font>
    SQL>
    It is working with (+) sign.
    SQL> with t as
      2     (select '23456_TR_ABC_CODE12_JPM_(1)_100_CODE12_ASJ' word from dual)
      3     select regexp_replace(word, '.*TR_<font color="blue">(.+?)</font>_CODE12.*', '\1') word
      4       from t;
    WORD
    <font color="blue">ABC</font>
    SQL>
    But I don't understand why it is not working with (*) sign :((
    SQL> with t as
      2     (select '23456_TR_ABC_CODE12_JPM_(1)_100_CODE12_ASJ' word from dual)
      3     select regexp_replace(word, '.*TR_<font color="green">(.*?)</font>_CODE12.*', '\1') word
      4       from t;
    WORD
    <font color="green">ABC_CODE12_JPM_(1)_100</font>Maybe someone can explain?
    Several more examples:
    the first and the last of them are really strange, at least for me:
    SQL> with t as
      2     (select '23456_TR_ABC_CODE12_JPM_(1)_100_CODE12_ASJ' word from dual)
      3     select regexp_replace(word, '^<font color="red">.*</font>TR_<font color="red">(.*?)</font>_CODE12.*$', '\1') word
      4       from t;
    WORD
    <font color="red">ABC_CODE12_JPM_(1)_100</font>
    SQL>
    SQL> with t as
      2     (select '23456_TR_ABC_CODE12_JPM_(1)_100_CODE12_ASJ' word from dual)
      3     select regexp_replace(word, '^<font color="blue">.*?</font>TR_<font color="blue">(.*?)</font>_CODE12.*$', '\1') word
      4       from t;
    WORD
    <font color="blue">ABC</font>
    SQL>
    SQL> with t as
      2     (select '23456_TR_ABC_CODE12_JPM_(1)_100_CODE12_ASJ' word from dual)
      3     select regexp_replace(word, '^<font color="red">.*?</font>TR_<font color="red">(.*)</font>_CODE12.*$', '\1') word
      4       from t;
    WORD
    <font color="red">ABC</font>
    SQL>

  • Dynamic query structures with restrictions - is this possible

    Hi experts,
    We have a client that has hard coded query structures, much to our chagrin.  These structures change quarterly and because the structures are used across several queries and workbooks, I need to find a new solution that will makes the dynamic and can be updated in production.  We have investigated the use of hierarchies for this, and unfortunately this will not work.
    Also, their queries are locked down in production, so all changes must transport from Dev to QA to Production.  This setting is mandated from the parent company, so changing this is not possible.
    Question:  Is it possible to write a WebDynpro or ABAP program that will allow users to change these hard coded structures?  What tables would be used for this?   I'm hoping we can create custom tables that dynamically populate the structures of the query, but I have doubts this can be done. 
    I suspect this is a stretch, but I'm hoping somebody might have attempted this. 
    Any ideas would be appreciated.  We're proficient in BI so any suggestions would be great.
    Example structure:
    P&L Structure
    Revenue ......................(restricted on Revenue GL accounts)
    Out of Pocket Revenue.....(restricted on Out of Pocket GL accounts)
    Total Revenue...................(total of the Revenue and Out of Pocket Revenue from above)
    Best,
    Larry

    ...to put a maintainable table in front of the users can be as easy as creating a  'parameters' cube and putting an input ready query on it. Lots of other options, such as a simple custom table and a gui based form to maintain, but I've used exit variables looking up values from custom parameter cubes a great deal in planning applications.
    Another alternative may be to add a new attribute to your gl accounts to indicate the nominal reporting group, and base your variable exits or row structures on that, leaving your users simply to mainain their GL Account Mastre data as required.
    Edited by: Andrew Trousdell on Jun 18, 2010 4:07 AM

  • Just starting out with extensions, is this possible?

    I have started researching the Adobe Creative Suite Extension Builder and I find that there is an overwhelming amount of information on this tool. I have an idea for extension that I want to build but I want to start by asking the community a question.
    Assuming this extension is for Flash Pro, Photoshop, or Illustrator, is it possible to obtain data from a layer that includes the positions (x,y) and dimensions (width,height) for each object in a layer?
    Gladly appreciate any help or advice you can give, thanks!

    Hey MSSDedalus,
    I looked through some of the class documentation and it seems that what I'm looking for is somewhat possible (at least using the Illustrator APIs, look at the PageItem class if interested). Would you happen to know where the documentation is for the Flash Pro CS6 API? I'm only able to find the JavaScript API for Flash Pro.
    Thanks!

  • HT5866 my screen on my 5C have crack n I need to replace the lcd screen with digitizer is this possible?

    I need to replace my crack 5C screen, any help

    If you are in the US, some Apple stores have the ability to replace a screen, some do not. If they can, the cost is only $149. If they cannot, then without Apple Care + you would need to purchase an out of warranty replacement at a cost of $269. If you do have Apple Care +. you can make 2 total exchanges over the 2 year life of Apple Care + with a $69 deductible.

  • I work with a child who is not able to move his neck.  to see the ipad, it has to be placed high above the table (eye level).  he needs access with a mouse - is this possible?

    I work with a child who has physical disability and cannot move his neck.  The ipad needs to be eyelevel in order for him to see it, but he also is not able to raise his hand and would need mouse access...  is this possible?

    I'm sorry but the iPad does not work with a mouse, there is no cursor on the iPad and the iPad was designed as a touch screen device so a mouse will not work.
    I really don't know what to suggest other than this new device, and it might be worth a look. I assume that the child can use his hands for a keyboard.
    http://www.thinkgeek.com/product/e722/

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

  • I have a Macbook Pro with OS 10.6.8 with no updates. Bundled is iPhoto 11, version 9.2.6. I would like to update my OS to 10.9.5 or later. Is this possible and which version is recommended?

    I have a MacBookPro with OS 10.6.8. It has no updates. This version contains Iphoto 11, version 9.2.3. I would like to upgrade my operating system to 10.9.5 or later. Is this possible and how best to proceed? How will this affect iPhoto?
    Thanks, Jeff

    If you have a mid/late 2007 MBP you can install the latest OSX that is available, on your MBP.  Mavericks (10.9) has been replaced by Yosemite (10.10) and is no longer available in the App store. 
    You choices are Lion (10.7), Mt.Lion (01.8) (both $20) or Yosemite (free).  The first two are available from the Apple online web site.  Yosemite can be downloaded from the App store.
    Ciao.

  • There is no space to store video on my computer.  I am am looking at getting 1 terabyte on the cloud in hope i can edit video off of the cloud the same way I can with a hard drive.  Is this possible?

    There is no space to store video on my computer.  I am am looking at getting 1 terabyte on the cloud in hope i can edit video off of the cloud the same way I can with a hard drive.  Is this possible?

    Buy another hard drive.  They're cheap these days.
    In fact, buy a couple of 'em.  I recommend a minimum of five internal hard drives.
    C: Windows and Programs
    D: Project, graphic and audio files
    E: Cache and Scratch
    F: Media
    G: Export

  • I have created two related books in Lightroom 5 (Volumes 1 and 2) but my balance of page numbers is off. So I'd like to take some pages out of one book (complete with images) and paste them into the other. Is this possible?

    I have created two related Blurb books in Lightroom 5 (Volumes 1 and 2) but my balance of page numbers is off. So I'd like to take some pages out of one book (complete with images) and paste them into the other. Is this possible?

    Can you zip up a few of your GoPro images, upload them to dropbox.com and post a share link, here, so others can experiment with them, or do you mean this issue is global to all camera models?

  • Can I backup two devices (with different documents) to one iCloud account?  For example: iPad and iPhone, not everything is synced between the two, but I would like to backup each (seperately in the cloud), is this possible?

    Hello Apple Community,
    Can I backup two devices (with different documents) to one iCloud account? 
    For example: iPad Air and iPhone 5, not everything is synced between the two, but I would like to backup each (seperately in the cloud).  Is this possible?
    This way when I change from an old ipad to a new, I can restore with the ipad backup, and when I change from an old iphone to a new, I can restore from the
    iphone backup.
    Thank you in advance!

    Terminology check here. Do you really mean a "CD"?  There's a difference in Cloud behavior between content from a physical CD you ripped (which only has Cloud content if you have iTunes Match) and an "album" you bought from the iTunes Store.
    Read references for Home Sharing.
    iTunes: How to share music and video - http://support.apple.com/kb/HT2688 - about Music Sharing and Home Sharing
    Home Sharing Support page - http://www.apple.com/support/homesharing/
    iOS: Setting up Home Sharing on your device - http://support.apple.com/kb/ht4557 - "With Home Sharing in iOS 4.3 or later, you can stream your entire iTunes library over your home Wi-Fi network from your Mac or PC right to your iPhone, iPad, or iPod touch."
    The above can get pretty complicated.  You are probably best off by syncing both devices to a single library and/or updating the libraries on both computers to have the same content.

  • Is this possible with Boxes?

    Hi,
    I am currently using a Horizontal Box to group a JLabel, 3 JTextFields and a JButton in a row. (it is a date entry field, with a pop-up calendar that is activated by the button.)
    It looks exactly how I want it, EXCEPT that I need to make an exact replica of those objects, so the top fields will be used as a date search function FROM X date and the bottom fields will be the TO X date.
    However, I cannot find a way to move the "search TO date" fields one line down or below the "search FROM date" fields.
    Is this possible? Because right now my GUI looks rather silly with 10 objects horizontally spanning my screen.
    Thanks in advance.

    You will need to use multiple components.
    You probably want something like:
    Search from:
    Search to:
    [          ] [          ] [           ]It may be a good idea to use combo boxes with fixed
    values instead of textfields. If you use textfields,
    then you'll have to verify the input.I'm quite happy using textfields as I have already written two classes that verify the type of input and limit the amount of characters entered.
    So you'll have 4 components (1 for each horizontal
    row).
    Then you can create another box, but this time
    vertical:
    Box box = new Box(BoxLayout.Y_AXIS)
    and then add the 4 components to the box.I dont really understand this part.
    So, you are saying I should make 2 horizontal boxes and then put them in a vertical box?
    And what is that syntax? As far as I know, you create a box using:
    Box box  = Box.createVerticalBox();Thanks for the prompt reply.

  • How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?

    How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?
    That is about the best way I can phrase my question.
    I put year/month/date at the beginning of a show, hoping for them to sort by date and I get mixed results.
    Would creating a Folder within the Artists' existing folder  that said "Pearl Jam Live", inside the "Pearl Jam" folder in iTunes Media help this "Date Sorting Issue"?
    Thank you.

    Or is there a way to go through aperture to make a new reference library that I can move the masters into later?
    you do not move the masters into a references library - you turn your current library into a referenced library.  As Terence Devlin said:
    File -> Relocate Masters
    What you should set up:
    Select a folder, where you want to store your referenced files - probably on an external drive.
    Decide on a hierarchical folder structure inside this folder - that is completely up to you.
    Select a project from your library and use the command "File -> Relocate Masters/Originals" to move the original image files to the folder where you want to go them to. Only take care not to send two projects to the same folder.
    Alternatively, if you do not care about the folder structure Aperture will use, select all images at once from the "Photos" view and let Aperture decide how to assing the folders - in the "Relocate Originals" dialoge you can specify a subfolder format.
    Regards
    Léonie

Maybe you are looking for

  • Operation could not be completed because an error occured when creating frame 56 (error-1)

    Hi I'm trying to export a movie in motion but I keep getting the error "Export Failed. The operation could not be completed because an error occured when creating frame xx (error-1)".  I've tried some of the other suggestions such as preventing app n

  • Regrading STO with Excise duties

    hi during the GR with respect to STO, while capturing the excise invoice. i am entering the all excise related information Manually. is it correct process thanking you from praveer

  • Bad quicktime playback

    I recently imported a video to my hard drive using MacTheRipper. I wanted it to be in .mov format so I ran it through MPEG StreamClip 1.3.1 (With the box checked to "fix streams with data breaks"). This took about 20 hr to do and my end result is foo

  • TS3682 i can't backup mi iPhone  in my mac

    i connect my iphone 4s and it says a error

  • PDF cropping question

    I posted this question in the Illustrator Forum too, but thought it might be worthwile to see if anyone here had any ideas. I have a few hundred PDF files that I created in Illustrator. The Illustrator document size on all of these is 8.5 x 11, but o