Create Home Directory in NetWare with the OIM 9.1

I am trying to find out if there is a way to create a NetWare User home directory with OIM 9.1 and the eDirectory Connector?
Edited by: user11137756 on May 6, 2009 11:42 AM

I'm confused. It looks like you already have /home configured:
<pre># zpool status
pool: home
state: ONLINE
scan: none requested
config:
NAME STATE READ WRITE CKSUM
home ONLINE 0 0 0
c4t3d0 ONLINE 0 0 0
errors: No known data errors
# zfs list
NAME USED AVAIL REFER MOUNTPOINT
home 86K 134G 32K /home
...</pre>
What is the problem? Looks like you already have /home configured. Are you sure automounter is not running?
Try this:
<pre>zfs set mountpoint=none home
rm -rf /home
zfs set mountpoint=/home home</pre>

Similar Messages

  • How to create /home directory in a diferent disk ?

    I installed Solaris 11-11-11 on a x4640 with 4 disks:
    How to create /home directory in a diferent disk ?
    Edited by: user1502 on Apr 25, 2012 1:51 PM

    I'm confused. It looks like you already have /home configured:
    <pre># zpool status
    pool: home
    state: ONLINE
    scan: none requested
    config:
    NAME STATE READ WRITE CKSUM
    home ONLINE 0 0 0
    c4t3d0 ONLINE 0 0 0
    errors: No known data errors
    # zfs list
    NAME USED AVAIL REFER MOUNTPOINT
    home 86K 134G 32K /home
    ...</pre>
    What is the problem? Looks like you already have /home configured. Are you sure automounter is not running?
    Try this:
    <pre>zfs set mountpoint=none home
    rm -rf /home
    zfs set mountpoint=/home home</pre>

  • Error creating home directory - Access is denied.

    Hi,
    I am getting one issue on the task while provisioning homedrive and homedirectory on AD resource.
    Error creating home directory '\\rusehf06\home\rc9782rf': ': Access is denied
    Please help. Thanks in advance.

    These error messages are typically pretty obvious with permission errors. It's getting the correct permissions that is the challenge. I would suggest you start by adding the user whom is in your IT Resource for Active Directory into the local administrators group for the server you are trying to create the folder on. Also, consult with your AD Admins to get it resolved the quickest most likely. Their skill set will be better than what we can provide.
    -Kevin

  • My MacBook works fine wifi everywhere except for home.  The home wifi is fine with the iPad and iPhone.  How can I fix my MacBook?

    My MacBook works fine wifi everywhere except for home.  The home wifi is fine with the iPad and iPhone, so I assume the issue is with my computer.  My computer works fine on wifi networks elsewhere.  The only problem is at home.
    The computer "connects to the wifi," but browsers and other internet-dependent software do not work.  Curiously, if I connect the ethernet cord that doesn't work either. Usually if I reset the modem to factory settings twice (for some reason, once doesn't do the trick), my computer will fully connect to the wifi.  However, in a few days, it goes back to not working.
    Today, resetting the modem didn't work. I could only get wifi connection while in safe mode, but not in normal mode.  So, the issue seems to be software not hardware. I have tried starting new accounts in normal mode, but those also don't connect properly to internet.
    Not sure if this is relevant, but this problem started when my building switched internet providers from ComHem to Telia (I live in Sweden).
    What do you recommend I do?
    Thanks!
    PS I use Snow Leopard: OS 10.6.8

    Not unless the modem is causing a problem.
    What you want to do is get it to work reliably over Ethernet first, then tackle wifi. Power off the modem. On your macbook, delete the Ethernet configuration and the Wifi configuration. Power up the modem, then connect the mac via Ethernet. Create the new Ethernet configuration and see if you can connect.

  • Create Home Directory using VB Script

    Hello All,
    Did anybody is having VB script to create home directory.
    I can create a folder on the local machine through VB script but I am not able to create a folder on the network share|(like \\servername\Users\%username%).
    If anybody is having a sample code, please post it here.
    Thanks in advance

    nobody? :-(

  • How to create a custom function module with the records in SAP R/3?

    Hi All,
    How to create a custom function module with the records in SAP R/3? Using RFC Adapter I have to fetch the custom function module records.
    Regards
    Sara

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    Welcome to the Apple Community.
    Click on your account name in the top right corner of the iTunes store in the iTunes application on your computer, enter your password and click the "view account" button. Navigate to the Apple ID summary where you have the option to "change country or region".
    In order to change your location, you will need a credit card registered to an address in the location you are trying to change to.
    You cannot change your location if you have credit on your account, if you are unable to spend your credit and leave a balance of zero, contact Apple, which you can do through iTunes Store Support.

  • Is it possible to create a variable in bex with the last work day?

    Hi Gurus
    Is it possible to create a variable in bex with the last work day?
    Actually end-user every day open queries,
        - Put in selection date day - 1 or
        - put last Friday if the day is Monday or
        - put last Thursday if the day is Monday and Friday is holiday (in a calendar for example 25 the December).
    Please do the needful. It is urgent
    Thanks in advance
    Raj

    Try this logic in a customer exit:
    DATA:  l_s_range TYPE rsr_s_rangesid.
    DATA:  X_PERIOD LIKE T009B-POPER,
               X_YEAR   LIKE T009B-BDATJ.
      CASE I_VNAM.
      WHEN 'ZPREVWORKDAY'.
        DATA: l_DayOfWeek(1) TYPE C,
              l_act_date     TYPE d,
              l_prev_date    TYPE d.
        l_act_date = sy-datum.
        CALL FUNCTION  'DATE_COMPUTE_DAY'
             EXPORTING DATE = l_act_date
             IMPORTING DAY  = l_DayOfWeek.
        CASE l_DayOfWeek.
          WHEN '1'.
            l_prev_date = l_act_date - 3.
          WHEN '2'.
            l_prev_date = l_act_date - 1.
          WHEN '3'.
            l_prev_date = l_act_date - 1.
          WHEN '4'.
            l_prev_date = l_act_date - 1.
          WHEN '5'.
            l_prev_date = l_act_date - 1.
          WHEN '6'.
            l_prev_date = l_act_date - 1.
          WHEN '7'.
            l_prev_date = l_act_date - 2.
        ENDCASE.
        l_s_range-low  = l_prev_date.
        APPEND l_s_range TO e_t_range.
    ENDCASE.
    Edited by: Tyler Blouse on Feb 13, 2008 8:28 PM

  • TS4498 Is music created in logic pro compatible with the logic pro x ? for instance if you have created something in logic pro and wont to add or tweak it a bit is that possible?

    Is music created in logic pro compatible with the logic pro x ? for instance if you have created something in logic pro and want to add or tweak it, is that possible? I suppose you would need the original logic folder?

    Yes it is more or less compatible, except the use of 32 bit plugins, which is prohibited from now on. So although you're able to open Logic projects as far as down to v5 I believe, it is advisable to remain for 'adding and tweaking' in your pre LPX environment.
    Have a nice day!

  • Is it possible to create a 1 D array with the "build array VI"? when receiving random number

    Hello all,
    Is it possible to create a 1 D array with the "build array VI" when receiving random number?
    I am receiving random data and the build array VI always create a 2D array which might cause some problem if you want to compute certain type of operation after.
    Any example will be welcomed.
    Thank you,
    Israel 

    Hello Lynn and Yamaeda
    First I want to Thank you Lynn for your linguistic contribution indeed "Build Array" is a primitive and not VI, thank you for the education. In reality what I am doing is simple.
    I have two arrays of complex elements Array1 and Array2.
    Array1 conains the complex elements ""(a0+ib0) ; (a1+ib1) ;...(an+ibn) ;
    Array2 conains the complex elements ""(c0+id0) ; (c1+id1) ;...(cn+idn) 
    What I want to do is the multiplication of the first array by the  conjugate of the second array element.
    Array1*(Conjugate Array 2)" for the first element the results is "(a0.C0-b0.d0) + i(b0c0-a0d0)" and the etc...
    and then taking the square root ([(a0.C0-b0.d0) power of 2]) +  [(b0c0-a0d0) power of 2])
    I was wondering if there were some dedicate primitive that could solve the computation above which is the cross correlation in Frequency domain.
    Thank you very much.
    Israel

  • How to create a webservice in Tomcat with the use of Axis

    I am very new to webservices. I am suppose to create a webservice in Tomcat with the use of Axis. I have downloaded all the required jars.
    Please help me how to start.
    Thanx in advance.
    [email protected]

    Check out the Axis user's guide at: http://ws.apache.org/axis/java/user-guide.html

  • Does Adobe have a Home Use Program agreement with the U.S. Air Force so I can convert files from home?

    Does Adobe have a Home Use Program agreement with the U.S. Air Force so I can convert files from home?

    This may be helpful: Spanish PDF to Word in English

  • HT1296 I'm having difficulty syncing my iCal between my home computer and iPhone.  New entries from my home are not syncing with the phone and vice-versa.  I didn't have any problems with this before until the latest phone update.  Any suggestions?

    I'm having difficulty syncing my iCal between my home computer and iPhone.  New entries from my home are not syncing with the phone and vice-versa.  I didn't have any problems with this before until the latest phone update.  Any suggestions?

    It could be that the existing wire in your appartment is not clean enough to provision DSL only. When combined with the phone possibly it has a higher line voltage and worked before. Now that the line is to be provisioned without phone service it may be giving them trouble that did not show before they came out and ran the new line test. So a new jack dedecated for your DSL line may require a new wire be run to your appartment. Also the account for internet only used to require direct billing to a credit card or something else. This was a number of years ago. Most accounts are linked to a phone number, and without a voice number it adds to the confusion.
    If you are getting the voice and everything turned on as before, then I am at a loss for words.

  • Create Home Now in WGM does not create home directory until...

    We are using newest ver. of Leopard on our Xserve and have some issues with Workgroup Manager. We can create new users and specify the location of their HOME, however, when we try to Create Home Now and Save, the directory does not get created! No errors though, just silence and no action. Tried many times and no go.
    UNTIL.... We log in with than new username directly into the server using Remote Desktop. Once logged in to Xserve as local user, the Home Directory magically appears.
    What is happening?

    Not sure what's happening - you can check the logs for clues.
    You can also use createhomedir -a That will create home dirs for all users (and will not touch existing home dirs)
    See here for more info
    http://support.apple.com/kb/TA21050?viewlocale=en_US

  • Create home directory using powershell

    Hi Experts -
    Currently AD 11.1.1.5 is deployed. The home directory is been prepopulated at the time of creation of AD account, and there is a custom task called updatehomedir which gets triggered on success response of create user.
    The problem is, the customer has 40 domain controllers and if I use the OOTB process tasks, it fails to find the user and gives me an invalid structure error, meaning it is not able to find the user. So when the first request goes for creating the user, it picks up a random domain controller and if the home directory parameter is been sent in the creation request it fails. so, the post user creation task works fine.
    The Ad connector creates the home directory with the full permissions to the user on that folder, and also it clears out all the existing permissions. By that, it does not inherits the container permissions. SR said, that it is an ER.
    How do I implement it.
    The approach that looks feasible is
    1. Change the provision attribute mapping for homeDirectory to say customHomeDirectory
    2. Disable the home directory update task
    3. Call a powershell after creation action
    4. In that powershell get the process form value, and run the creation of home directory with appropirate permissions.
    And I cannot test it, as the only environment where i have folders is production...
    -Thanks
    Kunal Jain

    After some decompilation I found this
    DirectorySecurity dirSecurity = new DirectorySecurity();
    PropertyValueCollection pvc = directoryEntry.Properties[ActiveDirectoryConnector.ATT_OBJECT_SID];
    SecurityIdentifier sid = new SecurityIdentifier((byte[])pvc[0], 0);
    dirSecurity.AddAccessRule(new FileSystemAccessRule(sid, FileSystemRights.FullControl, InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit, PropagationFlags.None, AccessControlType.Allow));
    Directory.CreateDirectory(directoryName, dirSecurity);
    Does this strip of the permissions of the file admins on the container. that is inheriting is not done????

Maybe you are looking for

  • How can I turn off push for sent items in an Exchange account?

    I have an Exchange account set up in iOS8.3.  I would like to set the sent folder to fetch rather than push.  And while I can go into my list of pushed mailboxes and uncheck the Sent folder, the change does not stick and goes right back to push when

  • Remote app windows 8

    Hi. I Have  just started using the Remote App to control music played via the Windows 8 pc. It is a great App! However on the pc, when I attempt to switch to another user, the music playback stops. When I switch user, I am not logging out, just switc

  • Adding Database in Oracle Management Server 9.0.2

    i am unable to see my existing databases in oracle management server but i can see my databases when i logged on locally instead of management server. i recently installed oracle management server to do some databse management related function but i

  • Blackberry tour repeating letters when dialing the first letter?

    I am now on my second blackberry tour as my first one got rained on. On both of these phones when I would start typing the name of a contact in to dial thier number from the home screen then multiple letters will apear. for exaple if I am dialing Ada

  • HT4702 Best web-sharing site for photos since Mobile Me Gallery is eliminated.

    I shared many of my iPhoto albums with my friends and family through the Mobile Me Gallery.   Now that that's gone, what do you recommend to replace this web-sharing of photos and videos?