Migrating Linux users to OS X Server

Hi,
I'm rebuilding my whole infrastructure onto an OS X Server-based system and I want to transfer all my users and passwords over. The old system is a Linux (FreeBSD) based system. Can this be done? If so, what do I need to do?
Thanks,
StuG

Perhaps what might work for you is to enable "BSD Flat file" support for authentication, see
http://www.apple.com/server/documentation/
specifically the "Open Directory Administration" guide (pdf)
To be honest, you are going to have a much easier time exporting your users & groups to flat files, importing those into OS X Server's Workgroup Manager, setting a default password for all users & allowing them to change it & requiring a password change at login - very easy to do with WM but requires connecting from a Mac OS X client machine (re: changing password ability for a user).
As far as security re: fileshare access, that gets tricky. Require all users to login (and change their pass) before you assign any users/groups for sharepoint(s) access.
Doing this in stages will really help make it go smoother.
For migrating files, connect to your Linux server via samba or nfs and pull the files from your Linux server to your Mac OS X Server.
I'd also suggest (unless you -really, really- understand how the alternatives behave in Mac OS X) going with the Apple-native HFS+ Journalled file-formatting for disks on your Mac OS X Server.
Perhaps not geared to someone of your experience, but if you're new to Mac OS X Server, you might like to read:
John DeTroye's Tips & Tricks.
namely,
http://homepage.mac.com/johnd/.cv/johnd/Sites/.Public/Latest_Tips/Tiger-tips/tan dtv12.1b-tiger.pdf-zip.zip
One hugely important tip: Mac OS X Server is especially sensitive about good DNS lookup. Make doubly, triply sure that you have working forward and reverse DNS entries for your Mac OS X Server's fqdn.
Possibly also check in with the Apple OS X Server list, just put your hard-hat on before you do
http://lists.apple.com/mailman/listinfo/macos-x-server
Here's a thread now quite old, with an answer from the late but greatly respect Michael Bartosh:
http://lists.apple.com/archives/macos-x-server/2004/Oct/thrd16.html#01534
search that page for "Linux => OS X User Migration" and read through the short thread.
Best of luck !

Similar Messages

  • Migrating existing portable homes to new server

    aside from moving the homedir data from the old server to the new, there seem to be at least a few issues with migrating existing portable home accounts to a new server:
    1. some of users' account details, like GeneratedUID, authentication authority, kerberos principals, OriginalNFSHomeDirectory, are different, while others (name, shortname, UID, GID, etc.) remain the same.
    2. home directory (OriginalNFSHomeDirectory, etc.) point to the old server.
    3. there's data on local machines that we don't sync back to the server, so we can't just blow away the existing local accounts and start fresh.
    the quickest way to migrate these users to the new server (with all the same shortnames and UIDs, etc.) seems to be to remove the local cached accounts (leaving the home folders) and have them recreate new PHDs on login, syncing things back down to the original home folder. i'm guess this won't involve much syncing, it's all the same data, essentially.
    the other way i can see resolving this is to replace the account attributes for each client to match what they should be when pointed to the new server. this would involve scripting the process for reliability and not moving any data or deleting accounts, but it will take more testing on my part.
    what do you think? can you think of better ways to accomplish this task?
    summary: what's the best way to move existing portable home accounts bound to "Server A" to "Server B," while maintaining data and portable homes pointed to the new server and storage?
    thanks.

    that createmobileaccount syntax was wrong. i guess you don't need the -t option and can instead specify the whole path to the user's home. it seems to work well enough, creating a portable home with no default sync settings -- basically manual. for my needs that's fine. the sync settings are managed via mcx anyway.
    here's an updated version of the standalone script. i realized just now the script assumes the diradmin usernames and passwords are the same between servers. if that's not the case, you can hard code it or add a couple of variables. since they're just taken in order on stdin, add them in order. i should also add a function to interactively ask for the passwords with stty -echo to avoid having the passes logged in command history or allowing the script to curl the pass from another file on a web server or something. for now, this seems to work for my purposes. edit as you see fit.
    #!/bin/bash
    # nate@tsp, 3/4/10: initial version
    # 3/5/10: added prettier heredoc usage statement, variables, further tested
    # todo: add function to add user to local admin group, as needed. this shouldn't be required in most environments.
    # todo: convert some of these one-liners to functions for better modular use; make it "smarter"
    # todo: convert the whole thing to ruby for practice
    # automates the process of unbinding from the old OD server, binding to the new, removing the existing local user, adding it back, and other bits
    # there are no "smarts" in this script, so use carefully
    # variables
    diradminpass=$1
    account=$2
    password=$3
    oldserver=$4
    newserver=$5
    mkdadmin=$6 # not used in this version
    # if no parameters are passed, display usage, exit
    if [ ! -n "$5" ] ; then
    cat<<endofnote
    usage: you must include at least 5 arguments (6th isn't used right now)
    run with `basename $0`
    1. [directory admin password]
    2. [shortname of account to change]
    3. [account password, which should be the default 'xxxxxxxx' on the new server]
    4. [name of old server]
    5. [name of new server]
    6. [yes or no to make this account a local admin - optional and not used now]
    ex: `basename $0` diradminpass jbrown password oldserver newserver yes
    endofnote
    exit 1
    fi
    # if you're running this as root or with sudo, proceed; otherwise, quit it!
    if [ $(whoami) = "root" ]; then
    echo "you're root. let's proceed..."
    # delete the user in question from the local directory store
    echo "deleting local account: $account"
    dscl . -delete /users/$account
    # remove the old od config
    echo "removing the old OD bind..."
    dsconfigldap -v -r $oldserver -c $HOSTNAME -u diradmin -p $diradminpass
    # remove the old server from the search and contacts paths
    echo "removing the old search paths..."
    dscl /Search -delete / CSPSearchPath /LDAPv3/$oldserver
    dscl /Search/Contacts -delete / CSPSearchPath /LDAPv3/$oldserver
    # add the new one
    echo "adding the new OD bind..."
    dsconfigldap -v -f -a $newserver -n $newserver -c $HOSTNAME -u diradmin -p $diradminpass
    # create and add the new ldap node to the search policy
    echo "adding the new search paths..."
    dscl -q localhost -create /Search SearchPolicy dsAttrTypeStandard:CSPSearchPath
    dscl -q localhost -merge /Search CSPSearchPath /LDAPv3/$newserver
    # create and add the new ldap node for contacts lookups
    dscl -q localhost -create /Contact SearchPolicy dsAttrTypeStandard:CSPSearchPath
    dscl -q localhost -merge /Contact CSPSearchPath /LDAPv3/$newserver
    # give directoryservice a kick to point it to the new server
    echo "killing directoryservice and waiting for 20 seconds..."
    killall DirectoryService
    # rest a bit to ensure everything settled down
    sleep 20
    # optional: lookup the $account you deleted as the first step to ensure it exists in the new directory
    echo "this id lookup should return details because it exists in the new OD:"
    id odtestor
    echo "this id lookup should fail because it doesn't exist in the old OD:"
    id odtestor
    # check the search path to ensure it looks like you need
    echo "verify the new OD server is in the search path:"
    dscl /Search -read / CSPSearchPath
    # optional: create a mobile account on the local machine with various options set.
    echo "creating a portable home for the user..."
    /System/Library/CoreServices/ManagedClient.app/Contents/Resources/createmobileaccount -n $account -v -p $password -h /Users/$account -S -u afp://$newserver/homes/$account
    killall DirectoryService
    cat<<endofnote
    you should be ready to login with this account now.
    if you have trouble, revert the process by re-running with the old and new server names
    (and diradmin passwords, if they're different) reversed.
    endofnote
    else
    echo "you're not root or an admin. please re-run the script as an admin or via sudo."
    exit
    fi
    exit 0

  • Migrate my Suse Linux users account  to mac os x moutain lion?

    Can someone tell me how to migrate my Suse Linux user accounts, including mail, to mac os x moutain lion?

    You need write a script to map your /etc/passwd database to the values in MacOS. Use the dscl command like here: http://www.deadmarshes.com/Blog/20111105010130.html or here: http://hintsforums.macworld.com/showthread.php?t=141798
    You can't take the /etc/shadow, because MacOS encrypts the passwords other than Linux.
    Your users need to change their password:
    - via Webinterface from Mountain Lion
    - or via Server.app
    - or on a linux client using the OpenDirectory (LDAP) from ML
    Each mail user needs to belong to the group com.apple.access_mail. You can configure with ML-tools any forwards. Tools: Server.app (Appstore), WorkGroupManager (http://support.apple.com/kb/dl1567)
    I'm migrated/migrating my users from Solaris LDAP. I'm using this technology.
    Migrating the Mail system is an other task.

  • Swap hardware for 10.2 database Linux (datafiles reside on SAN server).

    Hello Gurus,
    I am planning to upgrade hardware for two production database servers (currently Oracle 10.1.0.3.0 on Linux AS3 32bit) to New Dell Poweredge 6850 64 bit Linux AS4 upgrqade 7, Oracle 10.2.0.4.0 with replication enabled on certain tables.
    The database tablespaces and datafiles exist on a SAN storage server. I was wondering what is the fastest way to hook up the new servers and migrate or integrate the currrent two databases into the new hardware. I was looking at the old "export/import" but that would have some serious downtime. Transportable Tablespaces looks like an option- but I have no experience in it.
    My new servers have Oracle 10.2.0.4.0 installed and the servers are named the same as the old servers. Is there a way to have the new servers point to the SAN storage and just "pick up" the existing tablespaces and datafiles for the existing two databases? I have retained the block_size on the new configuration of 8K.
    What is the fastest way to get the new hardware up and running connecting to a SAN storage device "seeing" the old database.
    I would love any advice, I have a metalink account- but I thought this type of question would be better suited for the masses of experts out there who may have gine through this exercise before.
    Cheers,
    blakey

    Seems You want to migrate from 32bit architecture to 64bit?
    Then for upgrade to 10gR2 see metalink note 316889.1
    And as oracle will change from 32bit to 64bit as well (not only linux will 64 bit, but oracle software as well), then additional step for changing wordsize to 64bit is needed. And that is described in metalink note 62290.1
    Migration: as Your db is on san storage (everything including controlfiles, parameter files and so on) - then create equal mountpoints on new server (stop databases on old server, mount db related disks from storage to the new server) and that's it - next part is upgrade and migration to 64bit wordsize.
    Probably oracle software is installed on local disks and that means You will have to manualy copy $ORACLE_HOME/dbs - spfile, password file to the new server. And of course listener.ora, tnsnames.ora files as well.
    You can reffer to this metalink note 363609.1 for more details
    Of course, before go through all configuration (/etc/sysctl.conf and so, create equal /etc/oratab and adjust oracle user profile for new server).
    And before starting anything - take a full backup of oracle database (hot or cold, whatever You preffer).

  • Migrating Linux shadow-file MD5 passwords to Sun DSEE for Solaris/SunMail

    Hello all,
    We are about to undertake migration of an outdated mail server based on RedHat 7.2 and Sendmail/ipop3d to Sun Messaging Server (JCS6u2). While the filesystem/mail are not a problem, we're stuck at the question of how to best migrate old users' identities.
    The old Linux system used user names and password hashes stored in /etc/passwd and /etc/shadow files. Hashes are mostly MD5 and a few seem like crypt.
    Question is: are there known incompatibilities between password hashes (algorithms, expected format) in Linux and Sun products - Solaris/DSEE/SunMail?
    That is, if we just take strings like these:
    usemd5:$1$Wu7IqFT5$TeUht3OMdeSSBB3Vab4dB.:11262:0:::::134540116
    usecrypt:DD2kEwCD8nies:10220::::::
    Can we simply place the second column as the userPassword attribute in Sun DSEE and expect that users would be able to log in to LDAP-enabled Solaris and Sun Mail with their old passwords knownst only to them?
    If not, is there some simple modification/translation of such hashes to a format accepted by Sun products?
    Or are these formats/algorithms known to be incompatible somehow in a fatal manner, so our only option would be generation of new passwords for Sun DSEE and its clients?
    Thanks,
    //Jim

    Just to reclarify or throw more information:
    a password - cleartext value - testuser1 has 32-digit HEX value as - 41da76f0fc3ec62a6939e634bfb6a342
    Same password when converted to Base64 pattern becomes - Qdp28Pw+xippOeY0v7ajQg==
    But when I use pwdhash utility in DSE after configuring CRYPT to use MD5 hashes it becomes -
    {crypt}$md5$$LiB/H70zXr3xfQPoXVuUQ1
    I used below command :
    pwdhash -D /opt/SUNWdsee/dsee6/ds6/slapd-oha-dev -s CRYPT testuser1
    Actual hash value of pwdhash is -LiB/H70zXr3xfQPoXVuUQ1 with rest of the prefix is to meet RFC standard and salt and algo name separator.
    I am wondering if Sun MD5 default uses any salt even when I haven't used or DS does it. Or if any other MD5 option is there which can be used.
    Thanks,
    Gaurav

  • Migrating from SBS 2011 to Windows Server 2012R2 Standard with 365

    Im looking to move SBS 2011 to Server 2012R2 standard and with a 365 migration as well.
    Im thinking
    BPA for AD (health check)
    Add the Server2012R2 as a DC
    Ensure replication
    Move DHCP
    Change DNS
    Now this is where I get lost, now Im lost to use either dirsync or add essentials service, I have gone for standard and 30 cals with the option  as I have 28 users and the essentials service would make everything quite nice for remote access and backups
    etc....  however I don't know whether to just use dirsync with password replication instead ?
    Currently Im aiming towards getting the dc up and running then enabling essentials on the dc but I dont know how it will effect SBS and having essentials on the same network and sync'ing people to the cloud ? So Should I use DirSync on a different server
    instead to sync up to azure ?
    Finally with 365 I have only ever done a migration involving an export of pst's from an exchange box and then on a new domain with new pc's and reimport the pst's on the user accounts in outlook.
    However I have read when migrating to 365 was using exchange 2010 there was a application
    to move everything across however you needed an ssl cert iirc ? so I dont know how it works now since the nice new dashboard upgrade (assuming the tool has been updated like dirsync)
    along with the above how does AD now know where exahcnge if you use the migration app with an ssl cert and is it a case of still running the 365 config tool to configure each user to look at their mail in the
    cloud ? Also is it a good idea to enable essentials from the start of the 2012r2 dc for replication top 365 or to use dirsync ?
    then finally when replications is all good start transferring the FSMO roles over to the new DC and demote and remove the SBS server
    I have seen (below) but i dont think it covers this scenario and I cant be the only person in this situation =\ ?
    http://blogs.technet.com/b/infratalks/archive/2012/09/07/transition-from-small-business-server-to-standard-windows-server.aspx
    http://social.technet.microsoft.com/Forums/en-US/f552ef12-07a9-4f7a-bf5e-24500c3e1dc3/migrate-sbs-2011-to-server-2012-standard?forum=smallbusinessserver
    http://social.technet.microsoft.com/Forums/en-US/e1d4b09f-8857-4ef6-9a80-6a906e76b688/how-to-migrate-sbs-2011-to-standard-2012-server?forum=smallbusinessserver

    Hi,
    Would you please let us know current situation of this issue? If any update, please feel free to let us know.
    à
    Currently Im aiming towards getting the dc up and running then enabling essentials on the dc but I dont know how it will effect SBS and having essentials on the same network
    and sync'ing people to the cloud?
    I’m a little confused with the description. Did you mean that set up DC (Windows Server 2012 Standard) and
    then install the Windows Server Essentials Experience role? If so, when you migrate, please refer to the article:
    Migrate from Previous Versions to Windows Server 2012 R2 Essentials or Windows Server Essentials Experience
    Regarding to migrate Exchange to Office 365, please refer to following articles.
    Migrate
    All Mailboxes to the Cloud with a Cutover Exchange Migration
    Step-By-Step:
    Migrating from Exchange 2007 to Office 365
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    Meanwhile, there is an additional article that you can refer to:
    Manage Office 365 in Windows Server Essentials. It may help us to understand Office 365 in Server Essentials clearly.
    If anything I misunderstand, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • How can I move the user home folder from server to the mac

    I have a mac mini which i use for OpenDirectory, DNS and email. It is not a big installation it is for my wife and I.
    My wife logs in using an network account, and the user folder is saved on the mac mini. This gives me a few problems.
    a. If the server is upated and restarted, my wife has to relogin, or sometimes reboot the imac to get acces to the email etc.
    b. Having the home folder on a mac mini is causing the imac to be very slow
    c. Itunes can't synchronize to her Iphone. Connecint it gives her a message that synchronization has been turned off, and if i try to turn it on I get an error message saying somthing about shared access to the user folder.
    I do not use a network account and have none of these problems.
    So I have decided to try to put her user folder on the imac instead of on the server..
    But how do I do that?
    I still wan't her to use the network user account, but the user folder should be on her imac.
    Kind Regards
    Henrik

    I do not think you can move migration assistant for this situation.
    The mac mini is a osx snow leopard server, running openDirectory, DNS and E-mail, so its not like she is logging into the server.
    Her imac is bound to the OpenDirectory and she uses an openDirectory network user account to log in on her imac.
    But the user folder is saved on the server, which is very nice if you have a bigger server with faster disks, and more mac clients to log into.
    But in this situation she only uses her imac, and the performance of having the user folder on the server is not good enough, as well as the other problems I have with itunes sync etc.
    So I do not think it's a job for the migration assistant.

  • What are the best practices to migrate VPN users for Inter forest mgration?

    What are the best practices to migrate VPN users for Inter forest mgration?

    It depends on a various factors. There is no "generic" solution or best practice recommendation. Which migration tool are you planning to use?
    Quest (QMM) has a VPN migration solution/tool.
    ADMT - you can develop your own service based solution if required. I believe it was mentioned in my blog post.
    Santhosh Sivarajan | Houston, TX | www.sivarajan.com
    ITIL,MCITP,MCTS,MCSE (W2K3/W2K/NT4),MCSA(W2K3/W2K/MSG),Network+,CCNA
    Windows Server 2012 Book - Migrating from 2008 to Windows Server 2012
    Blogs: Blogs
    Twitter: Twitter
    LinkedIn: LinkedIn
    Facebook: Facebook
    Microsoft Virtual Academy:
    Microsoft Virtual Academy
    This posting is provided AS IS with no warranties, and confers no rights.

  • Issue with Migration of Users/groups in Essbase

    Hi,
    am trying to migrate the users specific to the application using Advanced option through Migration Wizard (EAS 716)..But i see the users with the application on old box and when i check it after migration, am not able to see the users related to that application..
    Moreover, i have copied the users specific to that application on old box into new box and after that tried of migrating the same application from old to new box...Even then am not able to see the users with application access..
    Is this the right approach which am following? or Kindly suggest me the best way of migrating users/groups...
    Thanks

    If you chose the advanced option, you should have no problem migrating users and groups along with the application. You probably may have omitted those groups or members from the list. When you migrate do not change anything except server, App and DB names.

  • Search not working in site collections migrated from MOSS 2007 to SharePoint Server 2013

    I have few site collections migrated from MOSS 2007 to SharePoint Server 2013 using database attach (first to 2010 and then to 2013).
    When I search for anything in these migrated sites, I get "Nothing here matches your search".
    Checked the crawl log for these sites and see this error for all items.
    The content processing component failed to process the security descriptor of the item. ( The input ACL is invalid (1210 / 2072).; ; SearchID =
    Some-Random-GUID )
    Search works fine in newly created sites in 2013 environment.
    Please help.

    Hello
    Did you migrate your users to claims when you migrated the databases?
    $wa = Get-SPWebApplication http://yourdom.com
    $wa.MigrateUsers($true)
    $wa.ProvisionGlobally()
    I assume the sites that work and the migrated content are in the same database?
    MCITP-EA | "Never test how deep the water is with both feet"

  • Permissions for Linux user accessing Leopard share

    We have a very simple networking setup at our video post production facility. Basically, files are shared everywhere and to everyone. No open directory or DNS serving. Just AFP and SMB.
    Our Linux based Smoke/Flame/Lustre system needs access to the files severed/shared by an Xserve with a big attached RAID. It has no problem connecting or seeing the files. However, it typically is denied write permissions. When the Smoke operator creates a folder on the share he can't access the folder until I grant the Others/Everyone group read and write perms. The Linux user logs in with the same user account that everyone else uses.
    Some time ago, the always smashing Gerrit DeWitt gave me some terminal commands to set ACLs for users/groups of this shared RAID. They work beautifully and I have had no permissions issues since applying them. Except for this Linux system.
    Would it be good practice to use this command to set the Everyone group permissions for this share?
    sudo chmod -R +ai "group:everyone allow readattr,readextattr,readsecurity,\
    list,search,read,execute,writeattr,writeextattr,delete,\
    append,write,deletechild,add_file,addsubdirectory,\
    fileinherit,directoryinherit" "/Volumes/RAIDH/Smoke_InfernoStorage"
    Also, is there some configuration change I could make to the Linux system to make it a little more Mac compatible in this area?
    Thanks

    It's worth checking into - let us know what you find. What you describe certainly sounds like a problem with permission propagation settings for SMB / Samba since the AFP side works fine.
    I've seen other posts about problems that crop up because of differences in the versions of Samba employed between systems, so that's a possibility as well. And I'd have no suggestions for you in that regard other than some searching of the web for clues as to how to work with that issue.
    -Doug

  • How to find solution for avoiding WARNING J2EE SECUR-00100 ********** user-manager (see application/server descriptors) will no longer be supported in the next release of this product

    HI All,
    We are using Oc4j version 10g 10.1.3 , and while starting conatiner  getting below warning , let me know if anyone have solution for this,.
    14/01/10 01:01:29 ********** user-manager (see application/server descriptors) will no longer be supported in the next release of this product!
    Please take the appropriate actions to migrate to an alternative strategy! **********
    2014-01-10 01:01:29.833 WARNING J2EE SECUR-00100 ********** user-manager (see application/server descriptors) will no longer be supported in the next release
    of this product!

    I just checked my BIOS and my current setting is set at IDE although it also mentions that the default should be AHCI. Currently I have a dual boot of Windows 7 (need it for Tax software) and Arch
    So I guess, when I get the new HDD, I will first set it to AHCI and then install the OSes on it. See if NCQ helps any, and if not I will turn it back and re-install (if I have to). I am planning to have Windows only in virtualbox in the new drive.
    Anyhoo, while I was in the BIOS I found two things which I had questions about :
    1) Under Onboard Devices --> Integrated NIC , my setting is currently set at "On w/PXE" and it says the default should be just "On". Would it be ok to change it back to On since its a single machine and its not booting an OS on any server. I just don't want to have to re-install anything now since I will be doing that in the new HDD.
    2) How would I know whether my BIOS would support a 64 bit OS in Virtualbox? I checked some setting under Virtualization, but they weren't very clear.
    I will edit this post and let you know exactly what settings were present under the Virtualization sub-section.

  • I am a Netflix user I am also a Linux user. I would also like to use Firefox but you do not provide any DRM support. When will this change?

    Perhaps then is when I start using Firefox again. I don't like the idea of having to have a different browser for each different thing I want a browser to do, that would be rediculous. What other details could you possibly need? I like having the choice to use or not use DRM material and your lack of providing that choice is objectionable, just as objectionable as it is for DRM providers, ie: Nook for PC, to not support my choice as a Linux user. I'm sure I'm going to miss Firefox, I've been using it for about 15 years now. I no longer buy any Nook books! I support your choice of not supporting Linux in this way if its your attitude that Linux users are only 2% or 3% of the worlds OS users anyway. Another reason to believev in Google, a great browser, as well as Earth, Maps, Search, OS, and digitizing the worlds libraries. All honorable endevors by what seems to be a more and more honorable company all the time. Why don't you (Firefox) fully support HTML 5 yet? What seems to be the hold-up? DRM support is part of that!

    Hi Timevirus,
    This is a good question!
    Firefox has traditionally lagged behind other browsers in terms of DRM support, because DRM is a thorny issue for Mozilla. Mozillians believe in an open web controlled by the users - with users having the power to remix and create new content. DRM restricts what users can do and runs counter to that.
    However, [https://blog.mozilla.org/blog/2014/05/14/drm-and-the-challenge-of-serving-users/ things are changing]. Some [https://hacks.mozilla.org/2014/05/reconciling-mozillas-mission-and-w3c-eme/ very clever folks are working] to integrate a new DRM technology (called EME) into Firefox. EME has been advocated by many of the big players in the industry (including Netflix) - so, hopefully, both Firefox and Netflix will eventually work with EME.
    EME is [https://bugzilla.mozilla.org/show_bug.cgi?id=1089858 scheduled to land in Firefox 37], due to be released in the second week of April 2015. But this is tentative - so it could well be later.
    Hope this helps answer your question.

  • Moving user files from one server to another.

    Hi everyone
    I would need your help to help me migrate the user files of around 300 persons to a new server.
    Is there a tool that could help me doing that?
    Here is the situation:
    I have an old 2003 server with all the user accounts. We are using the shares to manage rights.
    We want to migrate all these accounts to a 2008 R2 server using NTFS rights.
    So:
    is there a tool that could:
    - copy the files and put NTFS right automatically with the username (%username%) as owner for each user personal folder.
    - change the path of the personal folder in each account in AD to the new server.
    - Make them automatically members of a specific group (We use that group to exclude these users from the old login script that would've map to old server instead.)
    is there anyone who could help me with this issue?
    Thank you very much!
    Dag

    Hi Dag,
    You can use robocopy to copy user files NTFS permissions from one server to another server and use /COPY:O to copy the owner information.
    For robocopy command, I would like to suggest you refer to the below article:
    http://technet.microsoft.com/en-us/library/cc733145(v=ws.10).aspx
    Robocopy will not help copy Share permissions but only NTFS permissions. So if the drive letter will not be changed, you can backup and restore the Share permission with steps here:
    http://support.microsoft.com/kb/125996
    Then you can refer to the article below to change the path of the personal folder in each account in AD:
    Change a user's home directory
    http://technet.microsoft.com/en-us/library/cc732253.aspx
    Best Regards,
    Mandy 
    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.

  • Migrating a user to another tablespace!

    Dear All
    I need to migrate a user and all the tables associated with the user to a new tablespace and schema in other database.
    This is from Development to Production server.
    In Production Server i created a new schema and a tablespace associated with that say SCOTT.
    Now from Development server i want to export a user (PRO) and import this to the new schema SCOTT to the production server.
    Is it possible - if so would you please help me to follow up!
    Thanks in advance
    Ravi Prakash

    Hi ravi,
    if i understand correctly you want to move to new instance,
    if so you can not use the move tablespace and rebuild.
    you can use the exp/imp in case you are using oracle version less than 10g
    in case you are using 10g - you can use the data pump for the export/ import.
    in case you do not Have any long/ lob in tables import should recreate the tables in production server.
    how ever dew things should be think about, what about tables physical attributes?
    check
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/toc.htm
    for oracle export import and data pump documentation

Maybe you are looking for

  • How can I view my phone calendar for the previous year via my laptop?

    I have to extract appointments for tax purposes and as this is my first smart phone (Samsung Galazy S3), I have no clue if this is possible or where to look? I thought when my phone did its back up it backed up everything...now I'm guessing just my c

  • Approval required in process order

    Hi, When do you need "Approval required in process order". What are the steps to configure it. Thanks

  • Intercompany billing currency

    hi, the default currency of intercompany billing is defaulted from customer master. however, sometimes the currecny should be changed, how can i do it if without the change currecny in customer amster thanks

  • Can't install iPod Shuffle?

    I've had my 20GB iPod for almost a year now, and I've just bought an iPod Shuffle, but can't seem to install it. iTunes won't recognise it, and when I use the CD, I get the same problem. Can anyone help? Thanks!

  • Blackberry Z10 10.3.1 Bugs (so far...)

    After updating to 10.3.1 I have a slew of issues that I am going to list off that perhaps can be (and SHOULD be) fixed as they were clearly not tested properly before release (if at all): 1) Texting problems most likely related to the inability of th