My Duo 12TB says RAID Status: Cannot Access Data

When I started up my computer today, My Duo 12TB (Raid 1 Mirrored) came up with a RAID error.  When I ran WD Drive Utilities program, it gives status:  RAID Status Cannot Access Data   Drive 1 Status  OnlineDrive 2 Status  Online I have tried unplugging both the power and the USB connections.  Restarted computer. What needs to be done to fix this without lossing any Data on the HDs.Thanks,

 
Hi, 
Welcome to the WD Community.
As a recommendation, please contact WD Support for direct assistance on this case.
WD contact info: 
http://support.wdc.com/country/index.asp?lang=en%22
 

Similar Messages

  • Disk utility says "RAID STATUS: Disk missing"?

    When I boot up OS 10.3.9 there is error message "detected volume OS X cannot read - initialize, ignore or eject" - then it dissappears and the system drive behaves normally. But in disk utitlity it says "RAID STATUS: Disk missing".
    The disk is not partitioned and it will not let me repair permissions. Any ideas?

    Disk Utility monitors the status of the disks in a RAID set. If you see a message indicating that a disk is missing or has failed, try these troubleshooting steps:
    If you are using a striped RAID set, delete the damaged RAID set. Your data may be lost. Be sure to back up your RAID sets and other data regularly.
    If you are using a mirrored RAID set, there may have been an error writing data to the disk. Click Rebuild in the RAID pane of Disk Utility.
    If a problem persists, replace the damaged disk and click Rebuild to rebuild the RAID set.
    Use the First Aid pane to repair the RAID disk, then check the RAID set to see if it still reports an error. If the problem is still present, quit and reopen Disk Utility, select the RAID disk, and click RAID. Check the RAID set to see if it still reports an error. You may need to restart your computer.
    iBook G4   Mac OS X (10.3.9)  

  • I purchased an HD movie on Apple TV but it says that I cannot access the server at this time.  I try daily but this problem doesn't seem to go away.  Any suggestions?

    I purchased a movie via Apple TV/iTunes but it says that I cannot access the server at this time.  In summary, I can't download the movie.  This problem has persisted for 4-5 days now.  Any suggestions?  BTW, I upgraded to Yosemite on my iMac last weekend.  Thanks!

    You need more RAM.
    http://www.thexlab.com/faqs/lackofram.html
    Mostly iTunes, mail, finder, google chrome, and one or two other programs.
    What are the "two other programs?" The ones you named shouldn't be consuming all your RAM, even if open concurrently. But I've heard (I don't use it) 10.7 is a memory hog.
    Closing open apps may not solve the problem, since that memory is still being held in reserve for them.
    This problem is usually caused by a combination of low RAM and low disk space.I am very puzzled when you say you have 895GB left on the drive. That should be an enormous amount of room for the memory to page out (write) to.
    Message was edited by: WZZZ

  • We are using apple tv to try to access our itunes account on the computer.  We see our library of music but when we click on the song it searches for a long time and then says that it cannot access the itunes store.  Any ideas on what we are doing wrong?

    We are using apple tv to try to access our itunes account on the computer.  We see our library of music but when we click on the song it searches for a long time and then says that it cannot access the itunes store.  Any ideas on what we are doing wrong?

    Welcome to the Apple Community.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router.
    Reset the Apple TV (Settings > General > Reset > Reset all settings)
    Restore the Apple TV (Settings > General > Reset > Restore)

  • Since my iPad updated inSeptember, my iCloud will not work. It tells me that I must accept the new Terms and Conditions, then says that iPad cannot access Terms and Conditions.....

    Since updating my iPad in September, I have not been able to access iCloud. It wants me to review Terms and Conditions, then says that it cannot connect to the server...

    Welcome to the Apple Community.
    Please try the following...
    Go to Settings > iCloud > Delete Account (This removes your data from your device, but not from your account, it will be added back later).
    Restart the device.
    Sign in again (Settings > iCloud, don't use the 'Create New Apple ID' button).

  • I cant figure out what is wrong i keep getting this an OIEception that says "{"The process cannot access the file because it is being used by another process."}

    I am trying to move a file from a folder to another folder.
    here is my code:
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Test Pictures");
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Test Test";
    File.Move(folderContentNames[1], destinationFile);
    updateListBoxFileName();
    updateImageBox();
    each time I hit the bolded underlined part I get that error message.
    if you need anything else just ask.
    Thanks in advance,
    Thor Orb

    Hi Thor,
    If you want to move a file from a folder to another folder, I think you could get the sourcePath and TargetPath. The code below shows a simple demo:
    string[] folders = Directory.GetFiles(@"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test");
    string desFile =Path.Combine( @"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test - Copy\"+Path.GetFileName(folders[1]));
    File.Move(folders[1], desFile);
    In addition, the link below might be useful to you:
    # How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)
    >> The process cannot access the file because it is being used by another process
    The message seemed that the file was opened in other process. Did you operate the file with other code?
    I think you could check if the files and the folders were opened, and review your codes if they were used in other places.
    If you have any further questions, please feel free to post in this forum.
    Best Regards,
    Edward
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.
    Ya, Thanks I figured about the path and destation. yes I am using the file in another area, the file is an image jpg and I am displaying it in a picture box. Now I have been doing a little research I see a command called Dispose() and this is suppose to
    release the handle on the image, but I can seem to figure out have to use it correctly.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Collections;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    namespace Scanned_Picture_Ogranizer
    public partial class Form1 : Form
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Scan Project Testing\Test Pictures", "*.jpg");
    //List<string> folderContentList = folderContentNames.ToList();
    private List<string> folderContentList = new List<string>();
    Bitmap currentImage;
    Bitmap placeHolder;
    public Form1()
    InitializeComponent();
    convertingArrayToList();
    startUpData();
    string sourceFile = @"C:\Users\Jonah\OneDrive\My Programming Projects\Scanned Picture Organizer Project\Test Pictures";
    string destinationFile = "";
    private void moveButton_Click(object sender, EventArgs e)
    private void startUpData()
    //placeHolder = new Bitmap(folderContentList[0]);
    //currentImage = (Bitmap)placeHolder.Clone();
    // Image loadImage = new Bitmap(pictureClones[0]);
    // currentFilePictureBox.Image = loadImage;
    int numberOfFilesLeft = folderContentNames.Length;
    foreach (string name in folderContentNames)
    fileNamesListBox.Items.Add(name);
    fileNameTextBox.Text = folderContentNames[0];
    numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    ///loadImage.Dispose();
    //FileStream currentImage = new FileStream(folderContentList[0], FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    private void convertingArrayToList()
    foreach (string listName in folderContentNames)
    folderContentList.Add(listName);
    private void selectingImageFromListBox()
    private void updateImageBox()
    Bitmap currentImage = new Bitmap(folderContentList[0]);
    currentFilePictureBox.Image = currentImage;
    currentImage.Dispose();
    private void updateListBoxFileName()
    fileNamesListBox.Items.RemoveAt(0);
    fileNameTextBox.Text = folderContentList[0];
    // numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Scan Project Testing\Test Test\";
    File.Move(folderContentList[0], destinationFile + System.IO.Path.GetFileName(folderContentList[0]));
    folderContentList.RemoveAt(0);
    updateImageBox();
    updateListBoxFileName();
    when I first start the program the first picture displays, but when I trigger historyPictureBox_Click(), it does that error again. Another things is that I already looked at that link and it didn't help.
    I just super confused, I would like your help on this.
    Thanks,
    Thor Orb

  • When I open Firefox it says that Windows cannot access the specified device, path or file. And that I may not have the permissions to access this item.

    There is only one user profile on the computer which is obviously administrator and the file that it says can't be accessed doesn't actually have a pathway in the section.
    I have un-installed all java programs completely off the computer as well as Mozilla then restarted and installed everything again with the same problem coming up
    The missing file is in a location that doesn't exist in the JRE folder.
    \java\jre6\lib\deploy\..\..\..\..\bin\jqsnotify.exe

    I would expect wording related to connection, but see
    http://kb.mozillazine.org/Firewalls

  • I am trying to access my purchased TV shows on the Apple TV.  It is saying that it cannot access itunes at this time.  What can I do to correct?

    I am trying to access my purchased tv shows on my Apple TV.  It is stating that it cannot access and try again at a later time.

    Hello, Msk5speed. 
    Thank you for visiting Apple Support Communities. 
    Sometimes a simple power cycle of your Apple TV and router can resolve this issue.  If those steps do not resolve the issue, take a look at the attached two sections below. 
    Check the connections and inputs
    Make sure the cables between your Apple TV and TV are connected properly.
    Securely connect the power cords for your Apple TV and TV to a working power source.
    Turn on your TV and switch it to the correct input.
    Restart your Apple TV.
    If the issue persists, see the steps related to your issue below.
    Troubleshoot network issues
    Troubleshoot Wi-Fi networks and connections.
    Switch between wired and wireless networks.
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/HT6106
    Cheers,
    Jason H. 

  • Cannot Access Data

    I have read posts on this forum and on Adobe and still have not rectified my situation.
    When I try to utilize a Web Service Connection on a dashboard, I get an error condition "Cannot Access External Data".
    The Adobe site gives some suggestion regarding policy files and updates to Adobe Control Manger.  I have tried all the suggestions with no resolution.
    I am sure others have had this issue with the release of Flash Player 10 and its impact on Excelsius.
    I would appreciate some guidance on how to set up my system so my Dashboards can connect to web services I have created.
    Thanks,

    Hi,
    maybe can be the definition of web services.
    Take a look to the url structure( ip or server name)
    webservices: http://ip:8080/dswsbobje/qaawsservices/biws?WSDL=1&cuid=id
    verify the url to access to infoview portal:
    http://ip:8080/InfoViewApp
    must be the same structure.
    Regards!

  • I changed my password and it updated on all of my devices except my ipad... Now I get this error message from icloud saying icloud backup cannot access my account... There are two options: ignore or settings

    Error message: icloud unable to access my account... I changed my password, this is the message on my ipad. gives me two options: ignore/settings... ipad not responding to either... ?

    Try a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I cannot get most videos to play or pictures to display.  For example, when I try to access youtube in safari, it says that "safari cannot access the server"

    help.

    If you can access the internet but can't necessarily access all content then it's probably a proxy server issue.
    If your ISP has given you proxy server information you need to enter it into Network preferences; however in the absence of such information then the following settings will work for 99% of home users:
    System Preferences > Network
    Select the AirPort from the left hand side (unless you normally connect with an ethernet cable)
    Select "Automatic" in the list of Locations
    Click on Advanced
    Select the AirPort tab and ensure that your home network is the only one listed.
    Select TCP/IP tab. 
    Configure IPv4 Using DHCP
    Now click on Renew DHCP Lease.  After a few seconds you should get an IP address (probably 192.168.x.x)
    Click on Proxies tab.
    Select Auto Proxy Discovery and Use Passive FTP.
    DEselect all other proxy settings.
    Click on OK and Apply, etc.
    Good luck
    Bob

  • I am trying to authorize my new laptop and my network is fine but it keeps saying tht it cannot access it because of my network?

    I need help

    Go through the below forum with similar issue and follow the process mentioned by "Macjack" in the beginning.
    https://discussions.apple.com/thread/4499820

  • Cannot access data from a Time Machine backup

    Hey all. This might get slightly confusing so bear with me.
    I have a back up on an external drive from Snow Leopard. I sold my computer and bought a different mac with LEOPARD. It said I couldn't restore because I don't have the version of MAC OS that the backup was created on. So I wanted to simply go into the backup drive and pick and choose what I restore. Problem is that it says I don't have the proper access right to do what I want with it.
    So, I wanted to change the access rights to it. I did the whole "Get info" and change all the privileges on it. Still a no go. I even went into the console to change the privs there....no dice. So I even tried a program that is supposed to wipe privileges. No go. The Disk Utility doesn't even have it to where I can even do a permission repair. The option is grayed out.
    I'm running out of options here before I take it to the so called geniuses at the "genius bar" for help. Any suggestions?

    I did go out this weekend and purchased Snow Leopard. Problem is don't have enough space on my current drive to to a full on restore. So I picked a couple files to do a restore through the time machine and still the same privilege problem.
    I'm thinkin' that I should just get on the horn tomorrow with the apple care and see what they can offer. I've had some bad run ins with those techs though, because I am also technical support/sys admin. Those people HAVE to treat everyone like they are dumb. One time I got annoyed because I told him that I understood what he said and that I did A B and C. He has to talk to people that way I guess because alot of people just can't figure out an Apple system if it didn't work like they expected. lol.
    So I strayed from the topic. Funny thing about my music and movie files is I can play them through VLC, but I can't play them through iTunes. How messed up is that? SO, I can play through a non Apple program, but I can't alter it or import it to itunes. And as far as Ubuntu goes, the folders don't even show up as folders. They show up as pieces of papers. They are gone, just heavily secured.

  • Error:Out-of-bou​nds pointer argument CVI12.0 Cannot access data member of a nested structure

    Hi,
    I'm getting an error "FATAL RUN-TIME ERROR:   Out-of-bounds pointer argument (before start of memory block)" while trying to access a data element from a nested structure (structure with in a structure) in a dll file in debug as well as release mode.
    I'm using CVI 12.0, and i came across some messages in the forum stating that similar erros was there for CVI 8.0, 8.5 & 9.0 but not 8.1. posted message
    A previous  Message posted some time back  clearly explains the issue for CVI 9.0, but i don't know whether the isuue still persists for CVI12.0 too.
    Will be helpful  if somebody can throw some light regarding the above mentioned issue;
    Thanks.

    Dosth wrote:
    i don't know whether the isuue still persists for CVI12.0 too.
    As you can see here this issue has been fixed in CVI 9.0.1

  • Cannot access data in numbers

    Numbers has reduced my multi sheet spreadsheet to 4 visible columns A B C and D
    The data is there somewhere as the links and calculations are working
    Has anybody else had this problem and is it possible to track calculatin to trace the date

    You may be using the Filter tool. There's a checkbox to turn it off.
    Click the Sort and Filter icon, and then the Filter Tab. Uncheck the box opposite Filters.
    Jerry

Maybe you are looking for

  • Multiple Fiscal Calendar in a single context

    Hi, I know that for each context we can only have one PAS database, as a result, only a single Fiscal Calendar definition for a each context. My question is: there is any way of creating a workaround for this? I need to have in a single context KPI's

  • Help Center in SAP CRM 7.0

    Hello Gurus In SAP CRM 7.0 WUI if we click on Help center we are not able to open that we have performed the below task :under SAP Netweaver >knowledge Mangment>Help center--->activated the Help center enabled --> activated application help shown in

  • GroupLayout from 1.6 under 1.5

    I've written a bunch of GUI stuff in Netbeans, source code level 1.5 but it's used the 1.6 GroupLayout. The 1.5 GroupLayout code from the swing-layout jar is in a different classpath location so I can't just use the jar. I've been given a requirement

  • Ip or host name of monthly activation servers for Office 365

    Hello , i need to know a method to activate office 365 for 4 of my company computers that are banned from internet connection .  One of the option that i may accept is tho manual specify the ip addresses or the servers name where Office is going to a

  • MX432 is printing skewed to the right & double. I have tried cleaning & aligning to no avail HELP

    I have a pixma 432 that is printing skewed to the left and double. I have tried cleaning the nossels and alighining but it did no good. Any idea what to do nest. I talked to the techs and they sent me a link but it didn't work. Said page would not lo