OVM 3.2.1 + Sun ZFS - want to create second repository

Hi All,
I am very new to this VM architecture. Our VM environment's repository exists in the Sun ZFS. I have created a similar LUN in the Sun ZFS Storage. But, I am not sure how to expose this to the VM Manager or the OVS so that I can create virtual disks for my VMs.
I generally expose the LUNs to the normal bare-metal servers as NFS mount point, but here I need to format it with OCFS2 so that it can exposed to all the OVS (Hypervisors).
Regards,
Soumyajit

If all the above is good and you can mount them via NFS from another server and you can see the NFS mounts in the OVS manager then you should be good.
As the other poster above me alluded, "You may have to run a refresh on the storage."
And after that you should then be able to present the storage to the OVSs. I don't remember the exact steps as each time I just pull out the help and walk through the tutorial and it works.
Try going through the tutorial on setting up the disk and the Server Pool step by step.
You should be able to get to in the upper right hand corner by clicking "help > getting started".
I would start with the following URL on your OVM Manager server and read all the steps & pages regarding NFS storage. It has been awhile since I setup a new repository & I remember it being a little counter-intuitive (especially the first time). On 3.2.1, if you search on the word "NFS" you should get many hits (some are not helpful)... I would focus first on the ones regarding setting up new storage:
https://localhost:7002/ovm/help/faces/helppages/main.jspx?_afrLoop=1263525952060023&config=help&vtTopicFile=ovmhelp%2Fvmusg-repo-manage.html&_afrWindowMode=0&locale=en&_adf.ctrl-state=aq7ybph84_29
Note: The above may or may not work for you on your local OVS Manager server... Bottom line you should be able to get all this info via the upper right hand corner when logged into the OVS Manager via the browser by clicking "help > getting started" and searching for NFS & new storage repos.

Similar Messages

  • Creating storage repository in OVM 3.0.x

    Hi,
    I am new to OVM. I have installed OVM 3.0.1 version Manager and Server.
    And I am trying to create a Virtual machine (domU) and want to install one of OEL template as guest OS.
    Now I am in the process of creating a storage repository where in which all VM's data is stored like
    VM templates, VM config files...
    It is mentioned in the OVM 3.0 User Guide that I can use local storage to create a storage repository.
    Does that mean I have to use a separate disk and attach it to the OVM server.
    I have installed OVM server on /dev/sda2 and I have a lot of space on same physical disk.
    Is it possible to create a repository on the same physical disk on which OVM server is installed?
    I mean same /dev/sda but in another partition.
    Thanks

    887506 wrote:
    Does that mean I have to use a separate disk and attach it to the OVM server.Yes.
    Is it possible to create a repository on the same physical disk on which OVM server is installed? No.

  • Sun ZFS Virtual Box Appliance - Performance question

    Hope this is the right place to ask this question - apologies if it is not.
    We are testing out the Sun ZFS storage using the handy Virtual Box Virtual Appliance.
    Now I know this is a VM appliance and as such, we're not going to see anything like real life performance on this thing - but I was wondering if there were any tips someone might share with regards to getting the best performance possible?
    We are using the VB appliance to test a lab based OVM setup - and up to now, performance is too dire to even install a simple VM Guest or upload an ISO to a repository.
    The host specification is 24GB RAM and 8 cores - all of which we have presented to the ZFS appliance - however doesn't seem to make any difference .
    Is performance of the VB appliance throttled?
    We have got OK performance out of the HP P4000 VSA (again not great - but OK for lab testing).
    Cheers,
    Jeff

    Jeff,
    You are correct - the simulator is for testing a subset of functionality only. I am unaware if the VM will use more than one processor, but the RAM will help. One item I can also comment on based on experience is that iSCSI offers the best performance for demos. I use iSCSI as opposed to cifs / nfs / ftp etc. Looking at DTrace, I get much better performance - but I am running a system with only 2 disks, so even that might top out on your server. Perhaps a remote demo with the Oracle Solution Center?

  • How can I get authentication and authorization through OS X open directory with the Sun ZFS STOR ZS3-2

    how can I get authentication and authorization through OS X open directory with the Sun ZFS STOR ZS3-2
    I have configure NFS, I need help configuring the share that I created in the Sun ZFS STOR ZS3-2 to connect with the OS X Open Directory

    Hi,
        You may  try checking the help page for ldap configuration :
    https://<Appliance_IP>:215/wiki/index.php/Configuration:Services:LDAP
    ZFS Storage supports LDAP, NIS, AD as directory service.
    Hope Open Directory is also based on LDAP and may work in similar fashion.
    Thanks
    Nitin

  • Does anyone have SUN ZFS storage 7000 user guide or step instructions ?

    Hello:
    I download SUN ZFS storage 7000 simulator, but I do not know how to use it. Does any one have some ducuments ? or where I can find them?

    Hi.
    See http://download.oracle.com/docs/cd/E22471_01/index.html
    All array 7000 use same software. Different only hardware configuration and some hardware specific features:
    Possible or not add: Readzilla, writezilla, configure cluster.
    Regards.

  • I want to create a border...

    but it is not working!!!!!!! I want to create a border around a box. What I have done is create 2 separate transform groups one with the filled boxes and another with lines. The border works fine if it is just around one box in any position but when it is placed around a group of boxes it doesn't work! Consider the board a boardgame board... there have to be borders around the boxes so that the users can know where a square ends and begins spent all day on this today... didn't think that something so simple would be so difficult!! Thank you in advance for helping! Below is the code
    //This is the code for creating the squares
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.image.TextureLoader;
    public class Square
         public static final float LENGTH = (float)0.05;
         public static final float DEPTH = (float)0.0125;
         public int column;
         public int row;
         public float x;
         public float y;
         public float z;
         private TransformGroup trans;
         private TransformGroup blackLines;
         private Box square;
         private Box lineSquare;
         private Group subGroup;
         private Group lineGroup;
         public Square(Texture boardpic, int column, int row)
              this.column = column;
              this.row = row;
              subGroup = new BranchGroup();
              lineGroup = new BranchGroup();
              Color3f grey = new Color3f(0.5f,0.5f,0.5f);
              Color3f black = new Color3f(1.0f,1.0f,1.0f);
         Transform3D t = new Transform3D( );
              float distanceToEdge = ( LENGTH * (float)4.0 ) - ( LENGTH / (float)2.0 );
              //System.out.println(distanceToEdge);
              trans= new TransformGroup();
              blackLines = new TransformGroup();
              x = -distanceToEdge + ( column * LENGTH ) ;
         y = distanceToEdge - ( row * LENGTH ) ;
              z = -DEPTH;
    Vector3f v = new Vector3f(x, y, z);
              t.setTranslation(v);
              trans.setTransform(t);
              trans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              trans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              blackLines.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              blackLines.setTransform(t);
              //sets a black line around a square                    
              Appearance blackLineApp = new Appearance();
              blackLineApp.setColoringAttributes(new ColoringAttributes(black,ColoringAttributes.NICEST));
              PolygonAttributes blPolyAt=new PolygonAttributes(PolygonAttributes.POLYGON_LINE,
                                            PolygonAttributes.CULL_FRONT,0f);
              //blPolyAt.setPolygonOffset(100.0f);
              //blPolyAt.setPolygonOffsetFactor(100.0f);
              blackLineApp.setPolygonAttributes(blPolyAt);
              lineSquare = new Box((LENGTH / 2.0f), (LENGTH / 2.0f), DEPTH, blackLineApp);
              subGroup.addChild(lineSquare);
              //Attributes for creating the filled box
              Appearance appearance = new Appearance();
              PolygonAttributes polyAt=new PolygonAttributes(PolygonAttributes.POLYGON_FILL,
                                            PolygonAttributes.CULL_NONE,0f);
              polyAt.setPolygonOffset(0.1f);
              polyAt.setPolygonOffsetFactor(0.1f);
              appearance.setPolygonAttributes(polyAt);
              appearance.setColoringAttributes(new ColoringAttributes(grey,ColoringAttributes.NICEST));
              appearance.setTexture(boardpic);
              TextureAttributes texAttr = new TextureAttributes();
              texAttr.setTextureMode(TextureAttributes.MODULATE);
              appearance.setTextureAttributes(texAttr);     
              Box square = new com.sun.j3d.utils.geometry.Box((LENGTH / 2.0f), (LENGTH / 2.0f), DEPTH, appearance);
              trans.addChild(square);
              subGroup.addChild(trans);
              subGroup.addChild(blackLines);
         public Group getGroup()
              return subGroup;
         public Group getLines()
              return lineGroup;
    //this the code for creating the board
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.GraphicsConfiguration;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.image.TextureLoader;
    public class Board extends JFrame
         public Square[][] fullBoard = new Square[23][23];
         public Board()
              GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
              Canvas3D c = new Canvas3D(config);
              BranchGroup bg = new BranchGroup();
              TextureLoader picload = new TextureLoader("brown001.gif", this);
              Texture texture = picload.getTexture();
              texture.setMagFilter(Texture.BASE_LEVEL_LINEAR | Texture.NICEST);
              texture.setMinFilter(Texture.BASE_LEVEL_LINEAR | Texture.NICEST);
              for(int col = 1; col < 23; col++)
                   for (int row = 1; row < 23; row++)
                        fullBoard[col][row]=new Square(texture, (col-11), (row-11));
                        bg.addChild(fullBoard[col][row].getGroup());
                        //bg.addChild(fullBoard[col][row].getLines());
              TransformGroup tg = new TransformGroup();
              tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              Transform3D rotation = new Transform3D();
              rotation.rotX(java.lang.Math.toRadians( -45 ));
              tg.setTransform(rotation);
              tg.addChild(bg);
              BranchGroup scene = new BranchGroup();
              scene.addChild(tg);
              scene.compile();
              SimpleUniverse u = new SimpleUniverse();
              u.getViewingPlatform().setNominalViewingTransform();
              u.addBranchGraph(scene);
              System.out.println("I am here now");
         public static void main (String [] args)
              Board b = new Board();
    Thanks again...
    -JET-

    Sorry the line:
    subGroup.addChild(lineSquare);
    should read:
    blackLines.addChild(lineSquare);

  • I want to create a an Array with Hex pointers!!

    Hi all,
    I want to create an array that uses Hex as addresses, so that if I want to call on the 16th array element I wouldn't use array[15] but would use array[F] instead, and if I want the 18th element it would be array[11]. Is there any good way of doing that?

    They're just numbers. You increment them by adding one to them...
        int x = 0x43AF;
        int y = 232 + x;
        int z = 0x9A + 0x10B + 4 + 5 - 0x88FEF;
        int a = x + y;
        z ++;
        a += y;
        x += (0x9F9F - 55 * y);They could be bytes, too, or they could be longs, shorts, or chars. It's just a different way to type constants. The way you create your array isn't any different than normal, nor is the way you treat the numbers. The primitive data types that can support those numbers doesn't change either... they're just integers, but with a different notation.
    As far as converting an integer to a hexadecimal String, you can use the appropriate wrapper object's toHexString method:
        int x = 0xBEEF; // doesn't matter if you type 0xBEEF or 48879 or 0137357
        System.out.println("x = " + x + " decimal");
        System.out.println("x = " + Integer.toHexString(x) + " hex");
        System.out.println("x = " + Integer.toBinaryString(x) + " binary");
        System.out.println("x = " + Integer.toOctalString(x) + " octal");If you want to parse a hexadecimal string that the user enters, use the parseXXX method in the appropriate wrapper class. Keep in mind that, for hexadecimal numbers, these methods will get confused by a "0x" at the beginning. So, if you are converting a String to an integer using base 16, you'll have to make sure you strip off the "0x" at the beginning if there is one.
        int x = Integer.parseInt("BEEF", 16);
        int y = Integer.parseInt("48879", 10); // '10' is optional here
        int z = Integer.parseInt("137357", 8);
        int a = Integer.parseInt("1011111011101111", 2);x, y, z, and a should all end up with the same value if I did the conversions right.
    Go to http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#48298 and read section 3.10.
    Jason

  • Sun Studio 11: Cannot create a new file

    When I want to create a new *.h or *.cc file in my CVS mounted directory tree, studio raises it's famous "Unexpected Exception" dialog with a java stack trace. I have them prepared if you want, I just wanted to check before if there is some already known bug or advice. This worked flawlessly on Sun Studio 10.
    As for source browser (another topic in this forum), yeah, I would also very much like some kind of source browser, e.g. to be able to find all definitions/calls to my virtual method, have a class hierarchy...
    And one final note on the constant problems in communication between NetBeans and XEmacs, especially if there are two or more XEmacs windows open. Initially all works ok, but with time it starts...source error hyper links from make/build window and search dialog fail to open and position in the source file, then it can't open a file from Filesystems window, and when I restart the SunStudio, everything works again for some time.
    This was most annoying in release 9, then somewhat better in 10 but still present, and I see now nothing is better in release 11.
    Details:
    OS = SunOS 5.8 Generic_117350-26
    HW = sun4u sparc SUNW,Sun-Blade-1500
    SunStudio 11, netbeans 3.5V11, jdk1.5.0_06
    (all mounted from a Solaris 9 driven server)
    Thanks for reading and answers.
    Best regards.

    Thank you for your report! There is no bug filed for
    this issue,
    so, please, provide us with the java stack trace . OK, so there is a stack trace when opening a new header file:
    java.lang.NullPointerException
    at org.netbeans.modules.cpp.editor.CCFSrcFileIterator.addChangeListener(CCFSrcFileIterator.java:110)
    at org.openide.loaders.TemplateWizardIterImpl.setIterator(TemplateWizardIterImpl.java:73)
    at org.openide.loaders.TemplateWizard.setTemplateImpl(TemplateWizard.java:168)
    at org.openide.loaders.TemplateWizard1.implStoreSettings(TemplateWizard1.java:499)
    at org.openide.loaders.TemplateWizardPanel1.storeSettings(TemplateWizardPanel1.java:112)
    at org.openide.WizardDescriptor.updateState(WizardDescriptor.java:471)
    at org.openide.loaders.TemplateWizard.updateState(TemplateWizard.java:619)
    at org.openide.WizardDescriptor.goToNextStep(WizardDescriptor.java:612)
    at org.openide.WizardDescriptor.access$300(WizardDescriptor.java:55)
    at org.openide.WizardDescriptor$Listener.actionPerformed(WizardDescriptor.java:1110)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
    at java.awt.Component.processMouseEvent(Component.java:5488)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    [catch] at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
    at java.awt.Dialog$1.run(Dialog.java:515)
    at java.awt.Dialog.show(Dialog.java:536)
    at org.netbeans.core.NbPresenter.superShow(NbPresenter.java:690)
    at org.netbeans.core.NbPresenter.doShow(NbPresenter.java:733)
    at org.netbeans.core.NbPresenter.run(NbPresenter.java:721)
    at org.openide.util.Mutex$1.run(Mutex.java:952)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Then there is one for cpp file:
    java.util.NoSuchElementException
    at org.openide.loaders.TemplateWizard$DefaultIterator.nextPanel(TemplateWizard.java:812)
    at org.openide.loaders.TemplateWizardIterImpl.nextPanel(TemplateWizardIterImpl.java:136)
    at org.openide.WizardDescriptor$Listener.actionPerformed(WizardDescriptor.java:1106)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
    at java.awt.Component.processMouseEvent(Component.java:5488)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    [catch] at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
    at java.awt.Dialog$1.run(Dialog.java:515)
    at java.awt.Dialog.show(Dialog.java:536)
    at org.netbeans.core.NbPresenter.superShow(NbPresenter.java:690)
    at org.netbeans.core.NbPresenter.doShow(NbPresenter.java:733)
    at org.netbeans.core.NbPresenter.run(NbPresenter.java:721)
    at org.openide.util.Mutex$1.run(Mutex.java:952)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    About XEmacs: yes, the communication between IDE and
    XEmacs is not stable. It was a little bit improved in
    Sun Studio
    10, but not enough. We plan to improve it in next
    release. I'll
    try to create a test case according to your
    description. BTW,
    why there are two or more XEmacs windows? Usually
    there
    should be only one window with many buffers. I don't
    think
    Sun Studio IDE can manage several XEmacs windows.Why? Because it is a great help to be able to watch two different buffers/modules at the same time when writing source code. If there is only one window with many buffers, I have to either split window in two (Ctrl X 2) or continuously switch between two buffers, which is annoying.
    Thanks for the feedback.

  • Want To create Zip file  using java,And Unzip without Java Program

    I want to create a zip text file using java, I know Using ZipOutputStream , we can create a zip file, , But i want to open that zip file without java program. suppose i use ZipOutputStream , then zip file is created But for unZip also difftrent program require. We cant open that zip file without writing diff java program.
    Actually i have one text file of big size want to create zip file using java , and unzip simply without java program.Its Possible??
    Here is one answer But I want to open that file normal way(
    For Exp. using winzip we can create a zip file and also open simply)
    http://forum.java.sun.com/thread.jspa?threadID=5182691&tstart=0

    Thanks for your Reply,
    I m creating a zip file using this program, Zip file Created successfully But when im trying to open .zip file i m getting error like "Canot open a zip file, it does not appear to be valid Archive"
    import java.io.*;
    import java.util.zip.*;
    public class ZipFileCreation
         public static void main (String argv[])
         try {
         FileOutputStream fos = new FileOutputStream ( "c:/a.zip" );
         ZipOutputStream zip = new ZipOutputStream ( fos );
         zip.setLevel( 9 );
         zip.setMethod( ZipOutputStream.DEFLATED );
    //     get the element file we are going to add, using slashes in name.
         String elementName = "c:/kalpesh/GetSigRoleInfo092702828.txt";
         File elementFile = new File ( elementName );
    //     create the entry
         ZipEntry entry = new ZipEntry( elementName );
         entry.setTime( elementFile.lastModified() );
    //     read contents of file we are going to put in the zip
         int fileLength = (int)elementFile.length();
         System.out.println("fileLength = " +fileLength);
         FileInputStream fis = new FileInputStream ( elementFile );
         byte[] wholeFile = new byte [fileLength];
         int bytesRead = fis.read( wholeFile , 0 /* offset */ , fileLength );
    //     checking bytesRead not shown.
         fis.close();
    //     no need to setCRC, or setSize as they are computed automatically.
         zip.putNextEntry( entry );
    //     write the contents into the zip element
         zip.write( wholeFile , 0, fileLength );
         zip.closeEntry(); System.out.println("Completed");
    //     close the entire zip
         catch(Exception e) {
    e.printStackTrace();
    }

  • When one or more family members who have been sharing one iTunes account wants to create their own iTunes account can they each upload the music/apps from the shared iTunes on their devices to the new iTunes account?

    When one or more family members who have been sharing one iTunes account wants to create their own iTunes account can they each upload the music/apps from the shared iTunes on their devices to the new iTunes account? 

    Yes. I would clarify your statement about the "shared" iTunes Library though. If you want each iOS device to have its own music library, you should create separate user accounts for them. Read:
    iTunes: How to share music between different accounts on a single computer
    How to use multiple iPods, iPads, or iPhones with one computer

  • My friend wanted to create a new iCloud account that was different to  her iTunes and app one when she deleted her iCloud account that was the same as her iTunes it won't let her log into her iTunes one now

    My friend wanted to create a new iCloud account that was different to  her iTunes and app one when she deleted her iCloud account that was the same as her iTunes it won't let her log into her iTunes one now what can I do to fix it she has paid or apps and songs and of she makes another account everything will be lost.
    Need help please :) thanks

    Ah thanks Razmee however there is NO option to delete the iCloud account in settings!

  • How do I create a new account for an iPod that is on an existing account?  My brother and I have shared an account for five years, and now that I'm moving out, I want to create my own account but still want to be able to play the music I've purchased.

    My brother and I have shared an account for five years, and now that I'm moving out, I want to create my own separate account but still want to be able to play the music I've purchased over five years. 

    In order to continue to play and sync the music you purchased with your old account, you'll need to authorize your new computer/iTunes library to do so.  You can do this by choosing Store -> Authorize This Computer and then entering in your old account credentials.
    That's all you should need to.  Then just create your own account and start purchasing and using it the same you have with the old one.
    B-rock

  • Hopefully someone can help.... I have an Iphone 5 and want to create a music video playlist on my phone so then i can play through my apple tv... but when i make a playlist in itunes and try to add it over to my iphone it wont let me sync the playlist...?

    Hopefully someone can help.... I have an Iphone 5 and want to create a music video playlist on my phone so then i can play through my apple tv... but when i make a playlist in itunes and try to add it over to my iphone it wont let me sync the playlist...? I have already added the music videos to my iphone so that is not the problem.... i cant seem to figure out how to make a playlist for them... IE: to make the videos play consecutively in the order i want without stopping after each video and gong back to the list.... this is what i have had to resort to make it work....what i want to do....is be able to make a playlist of videos on my iphone 5....take my apple tv to friends houses and with wifi....set up apple tv and play videos at the party and not have to stand by with the remote and find a new video to play stopping the music between the songs/videos....very annoying....and have spent over 4 hours one day and an hour and a half today on the phone today with a sr. advisor with apple and they have no clue.... this seems sooooo simple.... please somebody that really knows how to do this....i will be indebted forever...............
    Mike

    Thank you for replying.    Yes I deleted the old email address..   

  • I cannot sign in.  "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc."

    I applied and received an upgrade code to Redeem Mountain Lion for my new MBP. 
    I get this message when I try to Sign in to the App Store after entering the redemption content code, and also if I just try to "Sign In".   The first part of the error is true - I haven't used the AppleID with the iTunes store.  
    I received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    I also tried to re-create this appleID...(it was one suggestion I saw for this issue) It doesn't let me since the ID already exists...
    The error is:
    "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc." 
    It's clearly not a cookie issue..   Stuck...

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • When i want to create a face time it tells me to vertify my email address. When i go to do this i have to type in my apple ID and password on the Apple website, however when ever i do this i get a message saying Invalid account for this Email Address..

    when i want to create a face time it tells me to vertify my email address. When i go to do this i have to type in my apple ID and password on the Apple website, however when ever i do this i get a message saying Invalid account for this Email Address..

    Same problem here.  Whats the deal?!  Apple??

Maybe you are looking for