Running LDAP without NIS: Does it work?

Is anyone out there using Netscape Directory Server without NIS
(extensions)?
We are planning on going to an LDAP solution for logons, and etc. Everything
I am reading is saying that Solaris needs to use the NIS extensions for NIS
maps. This make sense for that purpose. Then they are making it sound like
from there go to straight LDAP. I would like to skip that intermediate step
and go straight to ldap.
And if all of that works, how does automount and NFS work with that type of
solution?
Thank you for any help,
K. Murphy

The NIS extensions are a bit confusing to understand. Solaris supports
native LDAP authentication in two ways:
1) Solaris can directly authenticate against an LDAP directory (no NIS
involved).
2) For those clients which support NIS but do not support LDAP
(machines with old versions of Solaris or maybe non-Sun boxes), Solaris
will act as a NIS server (such that the client communicates via NIS and
doesn't use LDAP) but the NIS server really uses LDAP.
The NIS extensions for Solaris are for implimenting method #2. If you
are using method #1 then you should not install the NIS extensions.
Only certain versions of Solaris work with method #1. What version of
Solaris are you running? What version of iPlanet Directory Server were
you planning to use?
Michael Haines and Tom Bialaski of Sun have jointly authored a book on
this topic (I think it's called "Solaris Native LDAP" - it's one of the
Sun "Blueprints" series books) and Michael has written a pretty good
script (which is so verbosely commented that it's also highly
educational to read) which automates the configuration of the directory
and the Solaris clients (configures them to bind to the directory), but
the last version I had supported iDS 4.12 & 4.13 - not iDS 5.x (maybe
he's got a revision by now).
Regards
Tim
K Murphy wrote:
Is anyone out there using Netscape Directory Server without NIS
(extensions)?
We are planning on going to an LDAP solution for logons, and etc. Everything
I am reading is saying that Solaris needs to use the NIS extensions for NIS
maps. This make sense for that purpose. Then they are making it sound like
from there go to straight LDAP. I would like to skip that intermediate step
and go straight to ldap.
And if all of that works, how does automount and NFS work with that type of
solution?
Thank you for any help,
K. Murphy

Similar Messages

  • DRM content and Airplay without internet does not work.

    First off I am extremely pleased with my cutover to the Apple world. Like many I have been using the "gateway" Apple products for years and have just recently purchased a new MBP.
    I have just spent the better part of a day testing out what happens when you purchase a movie from the iTunes store and attempt to play it via AirPlay (ATV2) without an internet connection. It does NOT work or at least I could not make it happen. Its taking a little shine off Apple for me, and definitely something that will make me think twice before going deeper into the "Cloud."
    My specific need is to have both purchased and rented movies on my shiny new MBP and stream them via AirPlay in my RV with an ATV2 that does not have an internet connection.
    Before any pseudo techies chime in, here are the test cases I have used:
    1. Connect my wireless router to the internet and connect the ATV2 and MBP to the router (wirelessly) everything works perfect.
    2. Disable internet access to the router and cold boot both ATV2 and MBP then reconnect both to the router (wirelessly) to simulate a roadtrip in the RV.
         Result #1: movies that I have created (HandBrake copies of DVDs) work perfectly
         Result #2: movies that I have purchased via iTunes ----DO NOT WORK with AirPlay (I get an error message saying cannot connect to ATV2)
         Result #3: Digital copies that come with the Bluray for iTunes DO NOT WORK with Airplay (same message from #2)
         Result #4: If I reconnect the router back to the internet then everything works fine.
    Unless I am missing something here (and please let me know) I would suspect that there is a DRM workflow here that requires home sharing to connect back to my Apple account, correct?

    What you are experiencing is identical to my experience.  With the recent power losses in the Northeast due to Irene, we lost cable and internet connectivity.  Luckily we had a generator so that we could still watch our movie and TV library on AppleTV.  We were wrong.  While we have purchased and own many TV shows, virtually none of them were available for streaming via an iPad, iphone or any of our imacs using Airplay to a TV.  Compounding matters, it was also impossible to take a direct VGA connection from the computer where my itunes library resides, and play DRM content on our TV.  What is crazy about this, is that this is for content that we purchased...some of it several years old.
    I understand Hollywood's desire to control piracy, but this is not the way to do it.  There should not be a need for an internet connection to play DRM content on the devices that have shared itunes accounts.  This would mean that if you take your AppleTV anywhere w/out an internet connection (for example on travel), you will not be able to view any content that you own that resides on your macbook or ipad (at least you will not be able to view it on a TV).

  • Set Up Native LDAP without NIS?

    The Blueprint documents covering native LDAP support for Solaris 8 are very NIS-centric. I do not have NIS configured for my workgroup, and I do not wish to create the whole NIS domain just to turn around and import it into LDAP.
    The 'dsimport' command information says:
    "The dsimport command takes a text file in /etc/files format as input. Typically, you use the same files that are maintained to generate your NIS maps." Okay, I'm game...
    When I attempt to use the dsimport command, it first core-dumped without doing anything. I obtained a newer version from patch 106621-09, but this one insists on finding the current
    /etc/opt/SUNWconn/ldap/current/dsserv.conf, which is the NIS-to-LDAP agent daemon. Not a good solution!
    What am I missing here? I don't relish the idea of keying every detail through the Directory Console. This was supposed to make management easier, not harder!

    I'm not should your problem coming from. Did you apply the Solaris Extensions for Netscape Directory Server 4.X patch 109953-02. If not, try to apply it first. Because original version have a lot of unknown problem.
    For download, goto http://www.iplanet.com/downloads/patches/ & find
    Solaris Extensions for Netscape Directory Server 4.X patch 109953-02
    Lucas

  • 64bit ldap csdk5.08  does not work on SunOS5.10?

    We are using 64bit ldap csdk5.08 on SunOS5.10. But it do't work.
    We wrote a simple client program that connects using ldap_simple_bind_s() function. When I run the code it gives an error saying 'Can't connect to the LDAP server - Connection refused' .
    At the same time using snoop to capture network packages on the ldap server , it shows no package received at all.
    But if we use 32bit ldap library, the program works well and no error is raised.
    And the 64bit ldap tool ldapsearch also works well, it can search data from the server successfully.
    Our sample code:
    ==================================================
    #include <ldap.h>
    #include <stdio.h>
    int
    main( int argc, char **argv )
         LDAP *ld;
         int rc;
         /* Get a handle to an LDAP connection. */
         if ( (ld = ldap_init( "150.236.42.53", 38902)) == NULL )
              perror( "ldap_init" );
              return( 1 );
         /* Bind anonymously to the LDAP server. */
         rc = ldap_simple_bind_s( ld, NULL, NULL );
         if ( rc != LDAP_SUCCESS )
              ldap_perror(ld, "ldap_simple_bind_s:");
         return( 1 );
    ====================================================
    Any comments?

    This looks like a mismatch between C-sdk libraries and Solaris native libraries.
    Are you sure your program loads the correct libraries ?
    Ludovic.

  • Start Run thunderbird.exe-p does not work in windows 7. how find/runProfiles manager?

    I am trying to manually transfer my address book etc. from TB on my desktop [windows XP ] to my Laptop running widows 7. Have followed all instructions, using a memory stick to make the transfer manually. System reports it is working and takes several minutes. After completion address book is blank. Thought problem might be the name of the backup file, so changed name to same as default profile name on windows 7. Same nil result. Instructions say to create new profile using Profile manager; access by windows 7 Start>Run>Thunderbird.exe-p. Windows 7 reports cannot find the file. Also tried windows 7 Start>Run>Thunderbird.exe-P, same no find file. Can anyone explain how to locate/open/run Profile Manager, other than as tried ? When I type "profile manager" into Help search, all I get is the same general information and not about Profile Manager itself. Also why does Pasteing backup profile onto the new TB seem to work, but in fact does nothing ?
    Regards, Tom

    '''How to activate the 'Profile Manager' and create a shortcut icon on desktop to make future access easier:'''
    * https://getsatisfaction.com/mozilla_messaging/topics/where_is_the_profile_manager_hidden_in_windows_8
    * http://kb.mozillazine.org/Profile_Manager
    Note: 'Start>Run>Thunderbird.exe-p' is not correct, so you are not following the instructions. Please read info at the above links above to enter the correct path. the info for Win7 and win8 are the same.
    However, before going down that route ; I preume you have already created a Profile in Win7 machine; please read the following information.
    re: 'trying to manually transfer my address book etc. from TB on my desktop [windows XP ] to my Laptop running widows 7.'
    So are you trying to just migrate the address book or the entire Profile?
    '''If just migrating various Address Books.'''
    The 'Personal Address Book' and the 'Collected Addresses' are default Thunderbird files. These files can be copy pasted from one profile to another.
    To see Profile folders:
    * make hidden files visible: http://kb.mozillazine.org/Show_hidden_files_and_folders
    * In XP Thunderbird, 'Help' > 'Troubleshooting Information'
    * click on 'Show folder'
    * close Thunderbird now.
    * scroll down and look for 'abook.mab' and 'history.mab'
    * copy those files and move to same location on the Win7 machine.
    For other address books.
    * In XP Thunderbird
    * select 'Address Book'
    * select the name of the address book
    * Tools > Export
    * choose where to save
    * give suitable filename
    * Save as type: comma separated .csv or LDIF
    * Copy that file to desktop of new Win7 computer.
    Then in Win7 Thunderbird Address Book
    * Tools > Import
    * Choose the saved address book and click on Open.
    '''If you want to migrate the entire Profile:'''
    This can be done manually or using a tool called MozBackup. See info at this link:
    * http://kb.mozillazine.org/Move_to_a_new_PC
    When manually copy pasting files, I presume you have installed Thunderbird on new win7 machine and allowed it to run for the first time to create a Profile, but did not choose to create any existing accounts. So you have a Profile, but no mail accounts except for the default Local Folders.
    The files you need to copy are:
    * In XP Thunderbird, 'Help' > 'Troubleshooting Information'
    * click on 'Show folder'
    * close Thunderbird now.
    This shows you all the files '''in''' your Profile folder. These are the files you need to copy and paste into the new Profile folder in Thunderbird on Win7 machine, overwriting the default created files.
    now open Thunderbird.
    '''Additional info: on Profile folder: '''
    * http://kb.mozillazine.org/Profile_folder_-_Thunderbird

  • How to "Call by Reference" when running in RealTime (path does not work)

    I have a .vi which has been "uploaded" to a PXI chassis to run in RealTime.
    I have this feeling that one of my sub-vi's are not functioning properly. I have a sub-vi which "Opens a VI reference" to a .vi located on my Windows harddrive. But, when everything is setup in Realtime, it cannot locate this .vi anymore.
    I need to load a .vi dynamicaly, multiple times. Is there another way around it?

    Yes, that worked well. I had gotten it to work, but had not replied to this post to indicate my success. My actual problem had to do with me forcing a "close front panel". I had read in some other posts that you cannot modify front panels or other user-activity type of options when running real time. By removing the "FP Close" function, the call to the specific .vi worked great (and with the addition of the IP address for the opening of a local reference). Thanks again for all the input.

  • GPIB in a LabView-application running as EXE-file does not work

    I try to connect an Instrument over GPIB and I use VISA from a Windows2000 PC without LabView installed. The GPIB-card is not from National Instruments. The Programm is running as EXE-application. What else do I have to install beside the EXE-file to access the Instrument?

    NI_VISA.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Run-Time expression evaluation does not work with custom TagLib

              Hi,
              Using "WebLogic EJB to JSP Integration Tool", we have created a custom TagLib.
              We can properly deploy/start our Web application (a WAR file), but whenever we
              go to the JSP page that is using the custom Tag, we get the following exception:
              java.lang.ClassCastException: java.lang.Object
              at javax.servlet.jsp.tagext.TagData.getAttributeString(TagData.java:165)
              Here is what we have in our JSP page:
              <%@ taglib uri="Students-tags" prefix="students" %>
              <%
              String studentID = (String)session.getAttribute("studentID");
              %>
              <students:Register studentID="<%=studentID%>" />
              <%
              And the TLD file looks like this:
              <?xml version="1.0" encoding="ISO-8859-1" ?>
              <!DOCTYPE taglib
              PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
              <taglib>
              <tlibversion>1.0</tlibversion>
              <shortname>ejb2jsp generated tag library</shortname>
              <tag>
              <name>Register</name>
              <tagclass>EJBs.Students.jsp_tags._Students_RegisterTag</tagclass>
              <teiclass>EJBs.Students.jsp_tags._Students_RegisterTagTEI</teiclass>
              <info>
              attribute 'studentID' expects java type 'java.lang.String'
              </info>
              <attribute>
              <name>studentID</name>
              <required>true</required>
              <rtexprvalue>true</rtexprvalue>
              </attribute>
              </tag>
              </taglib>
              and Web.xml file does have the following entry:
              <taglib>
              <taglib-uri>
              Students-tags
              </taglib-uri>
              <taglib-location>
              /WEB-INF/Students-tags.tld
              </taglib-location>
              </taglib>
              Does anybody knows whay Do I get such an exception ?
              

    You might want to ask this in a servlet/jsp interest group.

  • Cativate 5.5 hosted on Godaddy running Moodle 1.9 - does it work?

    Has anybody got Captivate 5.5 working correctly with the godaddy moodle 1.9 installation?
    Details:
    I have done the Moodle 1.9 Godaddy installation.
    I can change themes, add users, and upload courses. But I can’t get captivate to work with it.
    I am not playing with SCORM or AICC yet.
    Captivate creates 3 files, the flash file (swf), a htm file that formats and plays the swf file, and a small js file.
    I load all three files to Moodle.
    I have the course point to the htm file.
    But when I test it I only get a gray screen.
    If I do a view source – I see it has loaded the htm file but – the htm file doesn’t load the swf file.
    1. It works on my PC
    2. It works on other Moodle 1.9 hosted systems.
    Any help greatly appreciated.

    If you want Captivate content to play and be tracked by Moodle you need to upload your Captivate modules as SCORM 1.2 zips.
    Check the Moodle forums at www.moodle.org
    There are a lot of people around the world using Captivate in Moodle.

  • Toast--Buffer under run protection--does it work?

    Lately I have been having trouble with the "device has drained its buffer without under run protection" error. I usually can deal with it with several things I try, but for the last couple of projects I can burn only one or two disks before I start getting this problem. Then I can't burn until I let the computer rest overnight, no matter what I try.
    I have heard that Toast has a buffer under run protection option. Does it work? If it does, I'll down load it.

    Hi R
    Even Toast™ are dependant on the free space on internal hard disk. Even more so
    if You use it for capturing material from DVD discs - then to add to the strain
    say that it should be changed to fit a new DVD.
    Say from a DL-disc to a SL-dito.
    Don't be amazed if the need exceeds a 60Gb need.
    Yours Bengt W

  • I have tried to save a Pages document to a Word document but it does not work. Plse advice !

    I have tried to save my Pages document into a Word document but I keep on running into trouble = it does not work ! Anyone can help me ?

    mossenane wrote:
    Name of Pages document is RoomscheduleSTAYATBROMMA#2-?
    I'm afraid that your choice if names is the problem. Try "RoomSched2X", or similar, and let us know how it goes. If that works you can try some other names of your own choosing.
    Jerry

  • GRC 10.0: Access Request Creation - LDAP user advanced search not working

    Dear Experts,
    We are implementing SAP GRC Access Control and we have an issue in Access Request Creation. If we put the user name in “User” field and press intro, the user details are updated, but if we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    Scenario 1: If we put the user name in “User” field and press intro, the user details are updated:
    Scenario 2: If we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    We are using the Active Directory as Data Source.
    Thanks and Regards.

    Hi Jose,
    Try maintaning the parameter 2050 as YES and check once.
    Kindly, also make refer to  the below list of SAP notes:
    1757906 - GRC 10.0 - LDAP user search does not work in NWBC
    1745370 - LDAP search in GRC does not work anonymously
    1718242- UAM: User search not working in Access Request.
    Regards,
    Neeraj Agarwal

  • ActiveX Bridge does not work in 1.4.2_04?

    I tried my JavaBean with jre 1.4.2_04.
    Java Plugin started up at CreateObject("XXX.Bean.1") and popped up an error statement.
    Here is the stack trace:
    java.lang.UnsatisfiedLinkError: getBrowserProxySettings
         at sun.plugin.net.proxy.WIExplorerProxyConfig.getBrowserProxySettings(Native Method)
         at sun.plugin.net.proxy.WIExplorerProxyConfig.getBrowserProxyInfo(Unknown Source)
         at sun.plugin.net.proxy.PluginProxyManager.reset(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)
    The JavaBean was packaged with 1.4.2_03, so I repackaged with 1.4.2_04.
    But the result was the same.
    Does anyone have the same problem?

    Hi,
    we successfully use the AX bridge in jre 1.4.2_04. The stack trace points to a more common problem with the Java Plugin. Did you try to run an applet? Does it work?
    java.lang.UnsatisfiedLinkError: getBrowserProxySettings You should take a look at the settings in the Java Plugin configuration panel? (Start -> Settings -> Control Panel -> Java Plugin)

  • Mapping Network Drive for external user does not work

    I want to map a beehiveonline.oracle.com network drive. I am using https://beehiveonline.oracle.com/content/dav/# as mentioned in the FAQ.
    Using https://beehiveonline.oracle.com/content/dav/ (without the #) does not work either.
    I am able to map this network drive when using [email protected] as user.
    However when trying to do this for the user [email protected] I am not able to map the drive.
    I am testing this in order to simulate the client to map the network drive.
    Logging on the beehiveonline with the user id [email protected] works fine.
    Your help will be greatly appreciated.

    Ah, We have had one other case of this where an account can access BeehiveOnline OK but cannot get the webDAV to work.
    I did notice a few login failuers stating your account did not exist on the system. This can sometimes happen if there is a conflict between username and loginid - I have set them to be the same and this may help.
    Try again and let me know how it goes.
    Phil

  • Headstart forms - down key does not work in Oracle Forms 11g

    Just moved forms from 10g to 11g.
    But when run the down key does not work. The .res file looks OK.
    I have included the hst65.jar in the search path for jar-files in formsweb.cfg.
    Anybody had this isssue?

    It was an erroneous .res-file! So problem solved. :-)

Maybe you are looking for

  • Parked Vendor Invoices (MIR7) stored in which tables ?

    Dear All, I need to write a report to show all park documents. I know that this table store park document header. vbkpf      - Store All Park Documents Header (Include Vendor Invoice (MIR7)) However, I have checked some tables in the following and do

  • Sales order - XI

    Hi Guys, I am ABAP Consultant, I dont have much idea on XI but now have some part of development. My requirement is <b>XI gives the sales order</b> information to <b>SAP system</b>. SAP is responsible for creating the sales order and error handling a

  • C3-00 IM client error

     i have a problem with the IM msn client from my nokia c3, I logged on and nothing came up apart from the bottom tab with the expand collapse, and send IM, the rest of the screen is blank, showing nothing. i cant see the contacts or anything but the

  • How to set default new tab behaviour

    I dare say I could have found the answer to this by trawling the web as it seems to be a problem that has been going on since the invention of tabbed browsing in firefox version 2. I just thought i'd go to the trouble of registering and re iterating

  • Using placed/named instances inside another movieclip

    I'm trying to be good and make all my movieclips linked to a class file, but I'd still like the convenience of placing and naming other instances instead of having to declare a variable, instantiating it and addChild-ing it in the class file. Is this