How do we move windows cluster to unix?

Hi,
I have WLI 10.3 domain with one cluster and 2 managed servers running on windows xp. I am planning to move this cluster to Linux. Any help what is the best way to migrate?
Thanks
Ksr

Hi,
Moving existing ManagedServers to Unix Boxes are not possible simply...for that your need to follow the below steps...
Step1). Install Same version of WebLogic on your Unix Boxes.
Step2). Now Create "Machines" of type "unix" through AdminConsole. Assign the IPAddress of this Machine to your Unix Server Boxes.
Step3). Remove your existing ManagedServers from the "Machine (Windows)" list......Now Add these Managed Servers to the newly created Unix Machines Server List.
Step4). Now run the nmEnroll() function from the UnixBox to enroll your NodeManager to the AdminServer. you can follow the step(8) mentioned in the below link for that: http://jaysensharma.wordpress.com/2010/01/08/struts-2-0-in-weblogic/#comment-136
Step5). Now Start your NodeManager in Unix Box ...then Login to AdminConsole and check in the " Machine--->Monitoring(Tab) " whether the NodeManager is Reachable or not.
Step6). If the NodeManager is reachable then ....you can start your Managed Servers.
Thanks
Jay SenSharma
http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

Similar Messages

  • How to ftp to windows server from unix server

    Hi Gurus,
    Can anybody please guide me how to ftp the files to windows server from unix server. I can do the file transfer via unix by using the shell scripts, where as for windows how can we do that.
    Please advice.
    Regards
    Nagendra

    Hi.
    It's possible many solution.
    1. Setup Ftp server on Windows and use general scripts.
    http://support.microsoft.com/kb/323384
    2. Create general share folder on windows and use smbclient from samba.
    3. Create general share folder on windows and mount this folder to Linux.
    Reagrds.

  • How do I move  Windows XP from an older Mac to a newer Mac

    I have Windows XP installed on a Bootcamp partition on an older MacBook. I just purchased a new Alum-MacBook and want to move the Windows XP I own to the new computer. How do I do this?
    Do you deactivate on the older computer before you install on the new computer? If so, how do you do this?

    Just install the way you installed it the first time, pretty strait forward.
    You don't deactivate the old one, if you want to you can simply delete it, but I run a OEM xp on the compaq it was loaded on and my new macbook. If it gives you problems, phone microsoft and they give you one of those activation bypass keys.
    If you want your old files, either run the files and settings transfer program in windows, or connect them via network before you delete your old windows partition to transfer any files you want to keep.

  • How to execute a Window program from Unix box using Java

    I am trying to execut a program running on a Window box from Shell Script on a Unix box. Does anybody knows how to do that using Java. Thanks. Any feedback appreciated.
    kevin

    You need to use
    String fileNane = "setup.exe";
    Runtime.getRuntime().exec(fileName);that is if you are writing code
    if you are just calling if from a terminal just write
    java then the file name ( well I think that is right :)
    I do know that the code above work as I have it working on a windoze box
    Craig
    Hope this is right if not please let me know

  • How can I move windows in SAPscripts?

    Hi!
    I need help moving those little windows that appear behind the letters when you do a print preview in a sapscript. I don't know how to make it, if anyone can help me, I'll really appreciate it.
    Thanks for your time.

    Hi Guillermo,
       You need to change the co-ordinates of the windows using SE71.
    Cheers,
    Sanjeev

  • Automator - How do I: Mouse Click, Move Windows, and more

    Hello,
    I am attempting to create my own Automator programs and for a while I had some that worked nicely. I have recently been tweaking my iMac so that it can "think" on its own (by automator of course) and do things for me. However, I've run across a block with Mavericks (I believe it's due to Mavericks).
    1. How can I get Automator to register a mouse click? "Watch me do" does not seem to want to work for me at all. I also would prefer if it would just be a registered mouse click, but not actually use the mouse (I know this is possible) so that if I'm doing something and it runs, it won't disturb my mouse and I can keep working.
    2. How can I register a keyboard stroke? Same as above
    3. How can I have automator move windows? I have two monitors and there are times when I may want it to move a window from one mintor to another
    The following is a list of all the things I'm attempting to accomplish at the moment (with other things when I think of them) with automator (either through applications, folder actions, or ical actions):
    1. Register a mouse click at a given area or on a given element in a safari page
    2. Register a keyboard stroke in a given program (be able to focus on a program and then do the keystroke)
    3. Move windows from one location to another
    4. Full-screen and Un-full-screen iTunes at certain times of day
    5. Download all purchased items on iTunes that aren't on the computer (sometimes iTunes doesn't download stuff if it was downloaded on my MacBook Pro first)
    6. Automatically voice read reminders (that I've set in Reminders) each day at a given time (I can use loop to repeat it to make sure I hear it all)
    I'll think of more of course, but the mouse click, keyboard stroke, and moving windows is the big thing I'm trying to figure out how to do. Can anyone help?
    Also, I am not a computer tech. I am tinkering with this because it's fun and helpful, but an answer of "just use applescript" or "just use java" will likely just give me a headache. I know that it's going to be one of those codes, but I'm hoping someone has a "base" code that can be copied and pasted that's just a standard click that I can adjust for where I need to click and what process I need to click on.
    If there is an Action Pack that includes a "Register Mouse Click" and/or "Register Keyboard Stroke", then that would work great, but the only action packs for automator I've seen that work with Mavericks is for photoshop.

    You're asking for a lot in one post.  It would be better to break your requests down a bit. 
    For example, to deal with mouse clicks, you can use the Automator Action Run Shell Script with this python script:
    import sys
    import time
    from Quartz.CoreGraphics import *
    def mouseEvent(type, posx, posy):
            theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
            CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
            mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclick(posx,posy):
            mouseEvent(kCGEventLeftMouseDown, posx,posy);
            mouseEvent(kCGEventLeftMouseUp, posx,posy);
    ourEvent = CGEventCreate(None);
    # Save current mouse position
    currentpos=CGEventGetLocation(ourEvent);
    # Click the "Apple"
    mouseclick(25, 5);  
    # 1 second delay       
    time.sleep(1);        
    # Restore mouse position
    mousemove(int(currentpos.x),int(currentpos.y))
    It will look like this in Automator:
    To drag something (i.e. a window, a file icon) from position 40,60 to 60,300:
    import time
    from Quartz.CoreGraphics import *
    def mouseEvent(type, posx, posy):
               theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
               CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
               mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclickdn(posx,posy):
               mouseEvent(kCGEventLeftMouseDown, posx,posy);
    def mouseclickup(posx,posy):
               mouseEvent(kCGEventLeftMouseUp, posx,posy);
    def mousedrag(posx,posy):
               mouseEvent(kCGEventLeftMouseDragged, posx,posy);
    ourEvent = CGEventCreate(None);
    # Save current mouse position
    currentpos=CGEventGetLocation(ourEvent);
    # move mouse to upper left of screen
    mouseclickdn(40, 60);
    # drag icon to new location
    mousedrag(60, 300);
    # release mouse
    mouseclickup(60, 300);
    # necessary delay
    time.sleep(1);
    # return mouse to start positon
    mouseclickdn(int(currentpos.x),int(currentpos.y));
    For keystokes in AppleScript (which can be added to Automator with the Run Applescript Action) see: http://dougscripts.com/itunes/itinfo/keycodes.php

  • How do i move ipod nano content to a new Windows computer?  My old computer died and when i try to sync to itunes on my new Windows computer, it says it will erase what's on the ipod.  I can't seem to de-authorize the old computer (it's been recycled).

    Hi, I'm an ipod newbie, and unsure of what product i have-i believe it's an ipod nano, but can't seem to find any info on itunes that will identify my product.
    how do i move ipod nano music to a new Windows 7 computer?  My old computer died and when i try to sync to itunes on my new Windows computer, it says it will erase what's on the ipod.  I can't seem to de-authorize the old computer (it's been recycled).  Does this mean I have to start all over and read in my CD's into itunes?  seems very inflexible/inelegant...
    thanks for your help, sorry if this question has already been answered before!

    Is there no ANSWER TO THIS PROBLEM?

  • How do I move my library from Windows Vista hard drive that is now in an external box to a Windows 8 PC?

    My old PC operating with Windows Vista failed to reboot, ironically but only coincidentally right after I installed the latest Itunes update a few weeks ago.  It would not get past the DOS screen but getting that far I was at least able to conduct a diagnostics.  The result was Hard Drive failure "BIOS-HD."  I have a new PC with Windows 8 and have installed Itunes there as well.  I removed the Hard Drive from the old computer and placed it in an external drive box.  Fortunately, I can access everything on that drive including Itunes.  How do I move my Itunes Library from my old hard drive in the external box and connected to my new PC, to the hard drive in the new PC?  I see all sorts of instructions on line but none for the specific circumstance of the old hard drive in an external box and moving to a new PC with newer operating system (Windows 8).  Thanks

    Aside from checking here, I also Googled for an answer.  Then I faced the problem on the Internet where stuff stays there forever and so I see solutions for previous and maybe obsolete versions of Itunes.  I have no way of knowing if the seemingly sound advice was solved in later versions of Itunes.  In one case there is a great YouTube video with a guy from Circuit City (now out of business).  I found an extensive explanation that made my head explode with all the detail but I did understand enough to see that the solution they precribed has you go onto your new computer and make sure you rename your new hard drive to match the name of the hard drive from your old computer.  That way Itunes on the new computer will be able to find it okay.  These instructions also tell you to downlaod Itunes software on the new computer first and then move two different folders (I think one has the extension of .itl); one folder with the library and the other has the metadata--to the new computer.  Then to confuse things I have seen instructions that also say to just move the files and they don't address the issue with the file names like turringtest said.  Most discouraging is that all of the instructions I have talked about, explain what to do without ever addressing my specific situation where the old hard rive used to reside in an old computer and has an Vistas Operating System that apparently failed and caused me to get a new computer in the first place (I guess I could have loaded a new operating system but not sure if that would have wiped out my extensive files...also irrelevant to the discussion }:) Sorry).  Thanks for your attempt to help.  I appreciate it much.

  • How can I move my PC (Windows 7) iTunes library (with my cps ripped) to my Mac iTunes library?

    Just for my curiosity and knowledge,
    I have a PC (Windows 7) and a Mac (OS X 10.10).
    Both of them with the latest version of iTunes.
    Both of them with the exact music library (genre, artist, album, etc).
    All my music is coming from iTunes Store, so very easy to re download at any time I want with my Apple ID
    My PC (Windows 7) computer has a CD/DVD drive. I would like to RIP some music from my CDs and add them to my PC (Windows 7) iTunes library. 
    Once I finished, how can I move my PC (Windows 7) iTunes library (with my cps ripped) to my Mac iTunes library?
    Thank you so much

    If you've downloaded the media idependently to each library so far then thet won't be exactly the same as there are different naming rules for the files and folders in OS X and Windows. See Make a split library portable for some general advice. You can move a portable library between Mac and Windows, but there is a delay opening the library after each change of OS.
    tt2

  • I have recently upgraded my laptop from Vista to Windows 7. All my music is on a windows file, how do I move it to i tunes library

    I have recently upgraded my laptop operating system from Vista to Windows 7. i tunes is asking me to sync my i pod, because it is recognising the Vista laptop and not the Windows 7. All my music has gone from i tunes library but it is all stored in Windows music folder(s). How can I move it all to my i tunes library?

    So your iTunes library is now empty after the upgrade?
    Simply drag the one folder (containing all of your music) into your new empty iTunes library or choose File -> Add to Library in iTunes.
    Otherwise, if they aren't all in one folder, you'll have to drag each seperate one into iTunes.
    B-rock

  • How do I move several songs with the SAME NAME?? to a windows folder??

    Now for my next question ( i'll also post this as a new question)
    I have 15 versions of the surf song "Apache" but when I try to move the songs via drag and drop in itunes to a windows folder, after the first version, it asks " you already have a file names "apache" would you like to overwrite it?"
    which I don't.
    Even when I rename the file to "apache two" it still says I already have "apache" in that folder. They are all different versions by different groups.
    How can I move them all to the same windows folder??.
    thanks
    Alan

    Most iTunes users don't look directly at the songs in the windows folders, but if you intend to, you better give the files unique names: "Shadows - Apache," "Ventures - Apache," and so on. When you first change the name, you will have to reasssociate the file in iTunes, but then you will get no conflict when you drag them into a folder.

  • How do I move an entire app to a dual monitor? Not just a window?

    How do I move an entire app to a dual monitor? Not just a window? I can drag single windows, but if I move a window to the second monitor and hit a button, like 'New', that opens a new window, then it opens the window in the first monitor. I want it to open in the second monitor instead.

    Right. Mail remembers as well. I have the menubar set on my larger display, and the main Mail window on the MBP display. When I create a new message, it displays the composition window on whichever display I used the last time for composition. So after the first time I moved the composition window to the larger display, it always opens on that display. I can't remember if it remembers that behavior after taking the MBP on the road, where I use only its display, and then reconnect the second display back at home.
    Mark

  • HT4527 How can I move my playlists/music from my Ipod Touch to Windows Laptop?

    Playlists from Ipod did not move to new laptop when transferred on hard drive. How can I move music from my Ipod Touch to my new Windows 8 laptop successfully?  

    The following user tip is worth checking through. (Some of the third-party utilities might also grab playlists.)
    Recovering your iTunes library from your iPod or iOS device

  • How do I move large files from a Windows computer to my MacBook Pro? There are a lot of photos (tiffs

    How do I move large files from a Windows computer to my MacBook Pro? There are a lot of photos (tiffs, jpgs, some photoshopped files), iTunes library, word docs. Is there a particular type of external hard drive that can be used or am I limited to copying stuff onto z-drive and moving that way?

    If both computers are on the same network, you can share the files from the Windows host using SMB and mount the share on the Mac. Otherwise, the Mac should be able to read (not necessarily write) any storage device formatted in Windows.

  • How do i move book marks from Winxp to Windows 7 Firefox V5.0 ?

    I'm trying to move my bookmarks from my old Windows XP system with Firefox 5.0 to my new Windows 7 system with Firefox 5.0. How do I move my book marks ? I have quite a few of them.
    Thanks,
    Joe

    You need to export the Camino bookmarks to an HTML file, and then import that file into Firefox.
    # In Camino, on the '''File '''menu select '''Export Bookmarks'''
    # In the '''Format''' dropdown menu select '''HTML''' then click on the '''Export''' button
    # Import the HTML file into Firefox using the procedure in the [[importing Bookmarks from an HTML File]] article

Maybe you are looking for