integrating custom NIS maps into LDAP

Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default integrating custom NIS maps into LDAP

    Hi,

    does anyone have any experience with migrating NIS to LDAP where custom NIS
    maps are in use? I am working on a project to migrate to LDAP from NIS and we
    currently have 3 custom NIS maps I have implemented and we rely on heavily for
    automation.

    Do I need to define my own schema for this, or is there some simpler method
    available?

    Thanks for any advice, examples, web-sites, etc that you can provide.

    Kevin
    Kevin Collins Guest

  2. Similar Questions and Discussions

    1. Integrating CF with SpringFrameWork
      Greetings. I'm here to learn to run before I learn to walk. lol. Here's the problem. A colleague and myself are trying to integrate CF and...
    2. Maps, anybody?
      Hi, I need to create some maps for a client in the travel industry showing travel itineraries superimposed on political or physical maps. Can...
    3. Interactive Maps
      Good Afternoon, Can anyone point me to some good examples of interactive maps built in Flash - maps that are zoomable, draggable etc.. Appologies...
    4. Integrating MX and 8.5?
      Hi, At home I have MX,at uni 8.5. WIll I be able to work with the same project on both? Sorry if this has been asked before, I had a look but...
    5. maps
      Hi, does anyone know where I can find a map of the united states that is editable in fireworks. (in that I want to click on a state in fireworks and...
  3. #2

    Default Re: integrating custom NIS maps into LDAP

    In article <slrncdm5cc.nq4.spamtotrash@doom.unix-guy.com>,
    Kevin Collins <spamtotrash@toomuchfiction.com> wrote:
    | Hi,
    |
    | does anyone have any experience with migrating NIS to LDAP where custom NIS
    | maps are in use? I am working on a project to migrate to LDAP from NIS and we
    | currently have 3 custom NIS maps I have implemented and we rely on heavily for
    | automation.
    |
    | Do I need to define my own schema for this, or is there some simpler method
    | available?

    RFC 2307 is the definitive reference on supporting NIS-style data on
    LDAP. If you consult that RFC, you'll see that there is support for
    an 'nisMap' object class, which can be used to represent any arbitrary
    key/value mapping.

    The trick isn't getting that data into LDAP, the trick is rewriting
    whatever software you have that currently consults your custom NIS
    maps so that it uses your unique nisMap entries in your LDAP.

    Can you speak a bit about what it is that you are wanting to do?

    | Thanks for any advice, examples, web-sites, etc that you can provide.
    |
    | Kevin

    --
    -------------------------------------------------------------------------------
    Jonathan Abbey [email]jonabbey@arlut.utexas.edu[/email]
    Applied Research Laboratories The University of Texas at Austin
    GPG Key: 71767586 at keyserver pgp.mit.edu, [url]http://www.ganymeta.org/workkey.gpg[/url]
    Jonathan Abbey Guest

  4. #3

    Default Re: integrating custom NIS maps into LDAP

    In article <cbg80b$2vm$1@ns3.arlut.utexas.edu>, Jonathan Abbey wrote:
    > In article <slrncdm5cc.nq4.spamtotrash@doom.unix-guy.com>,
    > Kevin Collins <spamtotrash@toomuchfiction.com> wrote:
    >| Hi,
    >|
    >| does anyone have any experience with migrating NIS to LDAP where custom NIS
    >| maps are in use? I am working on a project to migrate to LDAP from NIS and we
    >| currently have 3 custom NIS maps I have implemented and we rely on heavily for
    >| automation.
    >|
    >| Do I need to define my own schema for this, or is there some simpler method
    >| available?
    >
    > RFC 2307 is the definitive reference on supporting NIS-style data on
    > LDAP. If you consult that RFC, you'll see that there is support for
    > an 'nisMap' object class, which can be used to represent any arbitrary
    > key/value mapping.
    Ok - I'll take a deeper look at the RFC...
    > The trick isn't getting that data into LDAP, the trick is rewriting
    > whatever software you have that currently consults your custom NIS
    > maps so that it uses your unique nisMap entries in your LDAP.
    This is not a problem, it is all ksh and/or Perl parsing the output, so
    changing will be pretty strat forward.
    > Can you speak a bit about what it is that you are wanting to do?
    We are a large, highly automated SAP shop and (as one example) use a custom map
    to track information relative to a specific SID: system number, SAP usage (R/3,
    BW, etc), type (prod/stage/devl), default client, Oracle home dir, etc.

    Currently this is a colon-delimited list, so I can probably just use the nisMap
    you've already mentioned, but I was thinking it might be nice to have "named"
    elements (such as "sysNumber", "sapUsage", "supType", "defaultClient", etc),
    which would simplify the work our scripts are doing in parsing the list.

    Kevin
    Kevin Collins Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139