How to migrate network users to new home directory

Want to migrate network user accounts from current directories on an internal drives on a Mac Pro  to a newly connected XRAID box.
Before the XRAID was attached, network users were able to use their home directories to log into the system, but space was limited and we had them use Network Attached Storage (NAS) devices to store their data and media files.   The XRAID now provides 7TB or protected storage and we'd like to move their accounts to the arrays in the XRAID box.
Have not been able to find details on how best to handle this.  Don't know if the current info needs to be exported, user ID's delete/recreated - or modified to point to new home directories, and then imported, etc.   I have most of the Apple 10.6 Server manuals, but have not run across info for this type of change/migration.
Thanks for any leads to this information, or how-to's.
Tom

Did some trials with some bogus users I set up on the original share device.
Did the unshare as mentioned. Created new share directory on the Xraid.  Ran CP to copy users in the old share directory to the new.  Shared the new Xraid directory and set auto-mount.
While the share directories were on two completely separate volumes and their paths were fine.  Workgroup Manager shows the shares by servername/sharename.   So I now had sharename and sharename-1 showing up in WM.  The old share directory had been Unshared, but as long as any users in WM point to the old directory - it shows up on the list.
Seeing this, I deleted the newly copied users and deleted the Xraid share directory.  Then created newsharename on the Xraid, ran the CP to this new name.  Used WM to change the Home directory for each user.  User logon failed because the path names had changed.  Deleted the new users and the new Xraid directory and retried first method with same sharename and resulting sharename-1 in WM.
Updated the user's home directories to sharename-1 in WM.  Once all were changed, the old sharename dropped out of the WM list, but I was left with the sharename-1.  User Logon was spotty - some were OK, others had issues, some earlier OK logons failed later.  Was not rock solid.
Before I move any real user accounts and all their data, need to be certain there will be no issues.  This naming issue of the share appears to be the bug in the process.  Ideas to overcome this naming issue?
What I didn't try (thought of later, after testing) was to unshare the sharename-1 and go back and select the sharename again.  Thinking is the "-1" due to the duplicate should not be an issue.  But now the Home Directory info will have the "-1" - this caused Logon issues.  Possibly WM will show these as sharename-1 as old Home location and allow me to select plain sharename and all be settled.
No where near the clean process I thought Apple Server would provide for moving user Home and Data.
Open to any and all ideas.  Thx!
Tom

Similar Messages

  • Network users w/ local home folders

    Hi,
    I have a basic question that I can't find a clear answer to. How do I create a network user account (through open directory) and specify a home folder to be created on the local machine (users are nearly all at stationary workstations)?
    The documentation all says that it is possible but not exactly how. Maybe I'm missing something obvious?
    Thanks,
    Sb

    Hi
    Clients should be bound to Open Directory and be using the OD Master for their DNS. Launch WorkGroup Manager and authenticate to the LDAP node. If you have only a few Users you can do it at that Level if hundreds do it at Group Level. Select Preferences > Mobility. It's fairly obvious thereafter.
    After the home folder has been created you can make that account a local administrator if you wish.
    This assumes the Server has been configured as Advanced. Please don't take this advice if you've used anything else.
    Tony

  • How to give network path while creating oracle directory.

    I have created
    CREATE OR REPLACE DIRECTORY TESTDIR AS '\\168.176.33.117\TESTDIR';
    but through this path i m not able to create text file.
    create or replace procedure WriteTest is
    f utl_file.file_type;
    s varchar2(200) := 'this is some info';
    begin
    f := utl_file.fopen('TEST2DIR','sample2.txt','W');
    utl_file.put_line(f,s);
    utl_file.fclose(f);
    end WriteTest;
    Help how to give network path while creating oracle directory.
    --when i give local machine path then it will create at local machine where oracle is installed. but not able to create at other machine.
    Zakir

    Well for starters your directory object is called TESTDIR and in your fopen statement you are referring to TEST2DIR.
    On top of that I'm not sure oracle is happy to refer to network locations. I think you have to map it to a regular drive mapping (shared directory) type path. Can't say I've every tried to do it though.

  • Linux users cannot open Firefox on multiple systems that are mounting the same network drive as their home directory

    I am supporting a user who is logging into multiple linux systems that all have the same /home directory mounted to a network filer.
    When the user opens firefox on one system, he is unable to open firefox on other systems.
    I'm assuming this is because firefox is storing his profile in /home.
    These are Centos 5.4 x64 systems, authenticatiing to a Windows 2003 Domain. The filer that hosts the home directories is a NetApp with both CIFS and NFS permissions enabled on the volume that /home resides. We are using the version that came with the Centos installation, 3.0.12

    So while this worked well for my computer at home, it does not work for the actual computer the disk is mounted on.  If I try to mount the disk as the "office" user, the computer rejects the connection to itself and tells me to access it locally.  Any ideas on how to handle this?  Thanks again.
    dlr

  • How to migrate Apex users with existing passwords.

    Hi Guys,
    Our apex env finally getting a upgrade from 3.1.1 to 4.1.1 (I know, it's been overdue for years)
    Some of our apps use 'Application Express' authentication, and have few hundreds users in Apex (and users belong to diff user groups).
    The issue is, the 4.1.1 env is set up on a brand new server and DB, we want to migrate these users with their existing passwords from the 3.1.1 env.
    I tried exporting the workspace, and the users are exported as below,
         begin
         wwv_flow_fnd_user_api.create_fnd_user (
         p_user_id => '10592934818556549584',
         p_user_name => 'TEST',
         p_first_name => 'a',
         p_last_name => 'b',
         p_description => '',
         p_email_address=> '[email protected]',
         p_web_password => 'E92903DEAD135E6E86BD6B64544D2BD9',
         p_web_password_format => 'HEX_ENCODED_DIGEST_V2',
         p_group_ids => '10592435401495787816:',
         p_developer_privs=> '',
         p_default_schema=> 'TEST',
         p_account_locked=> 'N',
         p_account_expiry=> to_date('201212040000','YYYYMMDDHH24MI'),
         p_failed_access_attempts=> 0,
         p_change_password_on_first_use=> 'Y',
         p_first_password_use_occurred=> 'N',
         p_allow_access_to_schemas => '');
         end;
    when I run this in 4.1.1 I had to modify it to the new format as below,
    also changed the p_group_ids to new user group but kept the password the same
         begin
         wwv_flow_fnd_user_api.create_fnd_user (
         p_user_id => '',
         p_user_name => 'TEST',
         p_first_name => 'a',
         p_last_name => 'b',
         p_description => '',
         p_email_address=> '[email protected]',
         p_web_password => 'E92903DEAD135E6E86BD6B64544D2BD9',
         p_web_password_format => 'HEX_ENCODED_DIGEST_V2',
         p_group_ids => '1399416797653068:',
         p_developer_privs=> '',
         p_default_schema=> 'TEST',
         p_account_locked=> 'N',
         p_account_expiry=> to_date('201209041006','YYYYMMDDHH24MI'),
         p_failed_access_attempts=> 0,
         p_change_password_on_first_use=> 'Y',
         p_first_password_use_occurred=> 'N',
    p_allow_app_building_yn=> 'N',
    p_allow_sql_workshop_yn=> 'N',
    p_allow_websheet_dev_yn=> 'N',
    p_allow_team_development_yn=> 'N',     
    p_allow_access_to_schemas => '');
         end;
    the result was that the user is created fine, but the password is not valid.
    Anyone knows how to export apex users with existing password to a new server?
    Thanks.
    Edited by: Danny on 3/12/2012 20:51

    Hi,
    Not sure why you say
    when I run this in 4.1.1 I had to modify it to the new format as below, If you just run the workspace export sql it should create the Workspace, Groups and Users
    The signature of the procedure is below. See the highlighted lines.
    procedure create_fnd_user (-- Description:
    -- This procedure allows for programatic and bulk creation of users.
    -- Example:
    -- From sqlplus logged in as the privileged flows user, first
    -- ensure that the security group id is set properly, then create
    -- your users.
    <b> -- begin wwv_flow_security.g_security_group_id := 20; end;</b>
    -- begin
    -- for i in 1..10 loop
    -- wwv_flow_fnd_user_api.create_fnd_user(
    -- p_user_name => 'USER_'||i,
    -- p_email_address => 'user_'||i||'@mycompany.com',
    -- p_web_password => 'user_'||i) ;
    -- end loop;
    -- commit;
    -- end;
    -- Arguments:
    -- p_user_id numeric primary key of user
    -- p_user_name the username the user uses to login
    -- p_first_name informational only
    -- p_last_name informational only
    <b> -- p_web_password the unencrypted password for the new user</b>
    -- p_group_ids A colon delimited list of group IDs from the table wwv_flow_fnd_user_groups
    -- p_developer_privs A colon delmited list of developer privs, privs include:
    -- ADMIN:BROWSE:CREATE:DATA_LOADER:DB_MONITOR:EDIT:HELP:MONITOR:SQL:USER_MANAGER
    -- p_default_schema A valid oracle schema that is the default schema for use in browsing and
    -- creating flows
    -- p_allow_access_to_schemas A colon delimited list of oracle schemas that the user is allowed to
    -- parse as. If null the user can parse as any schema available to the company.
    -- This does not provide privilege it only resticts privilege, so listing a schema
    -- does not provide the privilege to parse as a schema, it only restricts that user
    -- to that list of schemas.
    -- p_attributes_XX These attributes allow you to store arbitary information about a given user.
    -- They are for use by flow developers who want to extend user information.
    <b> -- p_web_password_format Identifies the format of the web password.
    -- The range of values is CLEAR_TEXT, HEX_ENCODED_DIGEST, DIGEST </b>
    -- p_person_type "E" marks the user as external
    -->
    Note there is no HEX_ENCODED_DIGEST, DIGEST_V2 listed. It may work, but not obvious from the signature.
    Cheers,

  • How to migrate External users

    Hi Guru's
    Hyperion version 11.1.2.2,Hyperion Planning
    we have Nativedirectory and 2 more external directories..We are planning to migrate the application from Testing to Production..
    I have a doubt that How to Migrate the External users..By using LCM  or any otherway..Please help me with this.
    Thanks In Advance,
    Krishna

    I think you dont have to worry on migration of external users as they reside in the User directory configured in shared services.
    You will have to configure those user directories in target shared services & can use LCM to import the provisioning.
    Regards,
    Santy.

  • HT201250 How to migrate backup disk to new computer using mountain lion?

    The page says it provides information about how to migrate a backup disk to a new mac, but it's not there.  Does anyone know how to do this in Mountain Lion?  When I simply chose the old disk on the new computer, it created an entirely new backup folder and was going to back up everything, not just add to the existing backups.  The computer name, login name, and login password are not changed.  It's just a new machine . Both old and new machines are mid-2011 iMacs.  Thanks!

    If it's a new machine, then Time Machine will make a new backup. This is how Time Machine works. A new computer always results in a new backup.
    But your question seems to ask about how to use Migration Assistant to transfer your Time Machine backup to the new machine. Am I misunderstanding your question?
    In any event: Please visit Pondini's Time Machine FAQ for help with all things Time Machine.

  • How can I enforce Parental Controls on a group of network users on an Open Directory client?

    I have a Mac mini running OS X Server (Mountain Lion) and have a client family iMac that is a client of the Open Directory server. I have created network users for my kids and put them into a group and created Parental Control restrictions that apply to members of the group. However, the kids can log into the iMac with the same network accounts and no Parental Control policies are enforced on the iMac.
    I'd like to restrict times and hours per day, as well as the obvious content/website restrictions. I'm not sure why the Parental Control policy isn't being enforced. While I'm not great at it, I do have a basic understanding/overview of knowledge on Windows Server administration, but OS X Server seems to be waaay different...
    I have fiddled with the certificate, and I have told the client iMac to trust the certificate coming from my Open Directory server, but it doesn't seem to make much of a difference with the enforcement of the kids group's Parental Control policies.
    Can anyone assist or offer any suggestions?

    Related logs from the OD client iMac below:
    2013-07-13 20:37:45 -0400 mdmclient[12003]: *** ERROR *** [Agent:501] Sending 'OTA-Phase2' request to server: https://server.local/devicemanagement/api/device/ota_service (<NSURLErrorDomain:-1001> The request timed out.
    UserInfo: {
        NSErrorFailingURLKey = "https://server.local/devicemanagement/api/device/ota_service";
        NSErrorFailingURLStringKey = "https://server.local/devicemanagement/api/device/ota_service";
        NSLocalizedDescription = "The request timed out.";
        NSUnderlyingError = "Error Domain=kCFErrorDomainCFNetwork Code=-1001 \"The request timed out.\" UserInfo=0x7fef6a82b2b0 {NSErrorFailingURLStringKey=https://server.local/devicemanagement/api/device/ota_service, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://server.local/devicemanagement/api/device/ota_service}";
    2013-07-13 20:37:45 -0400 mdmclient[12003]: *** ERROR *** [Agent:501] ProcessOTABootstrapProfileCore (<NSURLErrorDomain:-1001> The request timed out.
    UserInfo: {
        NSErrorFailingURLKey = "https://server.local/devicemanagement/api/device/ota_service";
        NSErrorFailingURLStringKey = "https://server.local/devicemanagement/api/device/ota_service";
        NSLocalizedDescription = "The request timed out.";
        NSUnderlyingError = "Error Domain=kCFErrorDomainCFNetwork Code=-1001 \"The request timed out.\" UserInfo=0x7fef6a82b2b0 {NSErrorFailingURLStringKey=https://server.local/devicemanagement/api/device/ota_service, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://server.local/devicemanagement/api/device/ota_service}";
    2013-07-13 20:37:45 -0400 System Preferences[11138]: *** ERROR *** [CPInstallerUI:501] Profile installation (Device Enrollment (com.apple.ota.server.local.bootstrap)) (<NSURLErrorDomain:-1001> The request timed out.
    UserInfo: {
        NSErrorFailingURLKey = "https://server.local/devicemanagement/api/device/ota_service";
        NSErrorFailingURLStringKey = "https://server.local/devicemanagement/api/device/ota_service";
        NSLocalizedDescription = "The request timed out.";

  • How to set the user's Default joboptions directory?

    Hello Experts,
    When we installed Acrobat Pro 8.x on our Win XP Pro systems our systems were NOT in a Windows Domain.  At that time the default location for user-created/customized joboptions files was:
    C:\Documents and Settings\<Username>\Application Data\Adobe\Adobe PDF\Settings
    where <Username> is the name of the LOCAL Windows user.
    A few years ago we migrated to a Windows Domain and converted our LOCAL users to domain users and disabled, but did not delete, the LOCAL user's account.  We did not remove the LOCAL user's Documents and Settings directory structure either.
    Our users now log into a DOMAIN rather than the LOCAL account.
    As a result of that process the user's Documents and Settings directory structure changed to;
      C:\Documents and Settings\<Username.DOMAINNAME>
    where DOMAINNAME is, of course, our Windows Domain Name.
    Now we are beginning to use Acrobat Distiller joboptions and I notice that when Acrobat/Distiller goes to save a user-created/customized joboptions file the default location has remained;
      C:\Documents and Settings\<Username>\Application Data\Adobe\Adobe PDF\Settings
    which is NOT the user who is logged in
    Acrobat/Distiller should use the Documents and Settings directory of the user who is actually logged in which is;
      C:\Documents and Settings\<Username.DOMAINNAME>\Application Data\Adobe\Adobe PDF\Settings
    This anomaly has created some confusion and appears to have created a dependency of the old LOCAL user's Documents and Settings directory preventing us from deleting it.
    Question:
    How can we force Acrobat/Distiller to use the Documents and Settings directory of the logged in user (eg: the Domain user)?
    In other words, how do we set the user's default joboptions directory?
    Pointers/tips/and tricks are most welcome.

    if the user is the one running the program, you can always get the home directory using System.getProperties ("user.home");
    If you are trying to get the properties of another user, you could try using setProperties to change the user name first, before getiting the home directory, but it probably won't work because of the security manager. You could read the /etc/passwd file and parse the path out, but once again, the user of the code would have to have appropriate permission.

  • AD user with no home directory does not work correctly

    Hey guys:
    I just tried to login as a standard AD user and was able to login, but the finder is having issues.  The Finder seems to reset itself and the dock would also reset, plus the top menu bar is not present, anyone else with this issue?  Also I login as my account with admin rights and have no problem, I am thinking about trashing the finder prefs and dock prefs and see what happens then, will post back if I find anything.
    John

    We're suddenly getting the same issue here.
    A MacBook Pro (OSX Lion) installed a few months ago has no issue when setting up new users.
    The MacBook Pro (OSX Mountain Lion 10.8.2) which arrived this week is a different matter altogether!
    Once it joined the domain every attempt to log in as a network user has failed. The following ticked options work on our Lion machines:-
    Create mobile account at login
    Require confirmation before creating a mobile account
    Use UNC path from Active Directory to derive network home location
    Default user shell: /bin/bash
    However, the Mountain Lion machine is having none of it. Network users get no finder bar across the top, the Finder icon will bounce every so often as though it's tried, and failed, to load.
    Terminal states "no home directory"
    The only way to get these working is to turn off the "Create mobile account" ones, then manually create an account once the user logs in (with a local administrator on hand to elevate when prompted).

  • How do i give _spotlight access to home directory?

    I have added a folder inside a homefolder and now it is not found in spotlight and i checked the folder permission and _spotlight is not listed and i cannot add it.

    There should be an inherited ACL entry for spotlight on the home directory itself in fact that provides it to everything "down" from there. Without fixing that first you'll get the same thing on the next folder you make.

  • How to migrate custom user attributes (UDF) from test environment to production when a sandbox is published

    Hi all,
    I like to migrate custom attributes from test environment to my production environment. I read OIM documentation and i tried to fallow these steps but I cannot export sandbox and import it because all sandboxes are published in the test environment.
    I exported and imported users metadata by deployment manager only. Now, all migrated attributes are in the OIM DB but I do not see these attributes in Administration Console.
    How can i solve this issue? Is it possible to export published sandbox and import it in the other environment?
    Thank you.
    Milan

    In OIM 11g R2 you need to export sandbox before publishing sandbox for custom user fields from DEV or TEST environment.
    Then import exported sandbox in the another environment.
    If you didn't exported custom user fields sandbox from your TEST or DEV in that case you need to create those again in another environment manually. There is no other option for this in OIM 11g R2.

  • How to migrate  workflow user to upgrade oracle database

    hello all,
    we are running oracle 8.1.7 on sun solaris machine
    and workflow builder 2.5.0.16.4,now we want to upgrade the
    database with 9i,can some body please guide me how can we
    migrate the workflow user 'owf_mgr' data from 8.1.7 to 9i.
    i mean i want to have all the runtime data avaialable to me on
    9i as well.
    thanks in advance.
    Zeeshan Ahmad

    The first thing you need to be aware of is that Oracle Workflow
    2.5 is not certified on 9i. You have 2 options:
    1) Upgrade to Oracle Workflow 2.6 on 8.1.7 (Workflow 2.6 is a
    separate CD in the 8.1.7 CD pack), and then upgrade the database
    to 9i.
    2) Upgrade the Database to 9i, and then upgrade to Oracle
    Workflow 2.6.1 which is included on the 9i Database CD.
    When you upgrade the database, all the data in the owf_mgr schema
    should be upgraded as well. As always, you would perform a couple
    of test database/workflow upgrades before upgrading on your
    production box.
    hello all,
    we are running oracle 8.1.7 on sun solaris machine
    and workflow builder 2.5.0.16.4,now we want to upgrade the
    database with 9i,can some body please guide me how can we
    migrate the workflow user 'owf_mgr' data from 8.1.7 to 9i.
    i mean i want to have all the runtime data avaialable to me on
    9i as well.
    thanks in advance.
    Zeeshan Ahmad

  • How to migrate AD users with two different Domain.

    Hi 
    I want to test in LAB.I have installed win 2008 server on Comp1 and domain name xyz.com & IP 192.168.1.1.and i have installed win 2008 on comp2 and domain name abc.com.ip is 192.168.1.100,and i have created trust relationship between.
    Now i want to migrate Ad uesr Account from xyz.com to abc.ocm.
    How will we do???
    Pls help...
    Thanks
    Anil

    Hi Anil,
    After configuring trust, you can use ADMT to migrate users, computers etc between domains.
    To export the password of AD User Accounts from xyz.com to abc.ocm, you need to install Password Export Server(PES) on the source domain (xyz.com).
    Checkou the below link on ADMT and PES installation,
    http://social.technet.microsoft.com/wiki/contents/articles/16208.interforest-migration-with-admt-3-2-part-2.aspx
    Checkou the below link on AD user account migration,
    http://social.technet.microsoft.com/wiki/contents/articles/16621.interforest-migration-with-admt-3-2-part-3.aspx
    Regards,
    Gopi
    www.jijitechnologies.com

  • How to Migrate Exchange2k Users to OCS904 on SUN?

    Hello Everyone,
    I've been looking lately for some documents on the migration of Exchange users and I found some, but most of them, even the OCS904 ones are mentioned clearly for Exchange5.5, it has nothing for Exchange2k.
    Anyhow, I'm very confused on how and where should I install this tool! Let's say I have one Exchange2k server with some users and I want to migrate them to OCS 9.0.4.1 running on SUN Solaris. Can any one lead me to exactly what to do first!, should I first install the migration tool on the SUN Box or where to start with.
    All your inputs will be very much appreciated.
    Sincerely,
    YAR

    Dears,
    Will the same procedure for Exchange 5.5 work with Exchange2K? can I use any of the (MBOX or IMAP) methods? or is there a different procedure for Exchange2K?.
    I also noticed that it says you have to have at least one Oracle Component running, is this applicable on the Exchange server as well?, let's say I want to install the Migration tool on the Exhange Server where I have all my existing users that I wish to migrate, should I install anything on top of it rather than the MS Outlook? Do I have to have any Oracle Component on that machine?.
    Sincerely,
    YAR

Maybe you are looking for

  • Primary key index not working in a select  statment

    Hi , I'm doing a : select * from my_table where B = v1 and A = v2 ; where A and B are the primary key of the table, in that table the primary key index is there and the order of the primary key definition is A first and then B. While testing this sta

  • Query Related to Business Connector

    Hi, I'm currently working on Business Connector, which is new to me. I am going through the reference documents to understand the working of the same. However, the requirements have started pouring in. As of now, I have the follwoing requirement. I'v

  • Std Order Pricing - BAdI

    Hi Experts, Is there a BADI implementation available to over-ride the Pricing (netvalue, subtotals) in CRMD_ORDER -> Std Order? Thanks, Jin

  • Any trick to save as PDF using Windows 7 and Safari 5.1.7?

    Is there a reason I cannot "Save As PDF" using Safari on Windows 7 / PC?  Version is 5.1.7 Thanks

  • [Spartan] Does the cookie location is changed in Spartan?

    Checked the cookie location by shell:cookies or shell:cookie\low, it seems that the cookie location is different with previous IE.  Can u specify the location of the cookies?