<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem with users authenticated by ldap in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503009#M364892</link>
    <description>&amp;gt;I suppose the file has already been mapped by another process - the ldap client daemon process.&lt;BR /&gt;&lt;BR /&gt;If mapped by a 64 bit process without MAP_ADDR32, a 32 bit process would have problems.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;the memory can be read by some sessions (interactive programs) but cannot be accessed by batch jobs.&lt;BR /&gt;&lt;BR /&gt;That shouldn't be the case.  It could fail because there is an environment variable that isn't set the same.  Looking closely at your two tusc outputs, it seems everything is the same except the FDs.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;returns the same address as the ldap daemon got at startup.&lt;BR /&gt;&lt;BR /&gt;Yes it should.  Unless the demon isn't running.</description>
    <pubDate>Fri, 16 Oct 2009 08:03:17 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2009-10-16T08:03:17Z</dc:date>
    <item>
      <title>Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503003#M364886</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Our ERP system relies on OS to authenticate users. Some users are defined locally on a hp-ux machine, and others come from an ldap server.&lt;BR /&gt;We're facing a strange issue with the ldap users, all is fine with the local Unix accounts.&lt;BR /&gt;&lt;BR /&gt;The OS version is:&lt;BR /&gt;# uname -s -r -v -m -l&lt;BR /&gt;HP-UX B.11.31 U ia64 unlimited-user license&lt;BR /&gt;&lt;BR /&gt;The LDAP Client version:&lt;BR /&gt;ux300:/etc # swlist | grep -i ldap&lt;BR /&gt;  LDAPUX                                        B.04.10        LDAP-UX Integration&lt;BR /&gt;&lt;BR /&gt;The problem occurs when an ldap user submits a batch job. The job scheduler process, which is running with root privileges, forks a new process owned by the user.&lt;BR /&gt;Unfortunately the new process terminates immediately with the following error (from the application log):&lt;BR /&gt;&lt;BR /&gt;     error code: 114, pc=0, call=1, seg=0&lt;BR /&gt;     114     Attempt to access item beyond bounds of memory (Signal 11)&lt;BR /&gt;&lt;BR /&gt;I used tusc to trace a failing process. The process terminated at the very beginning, it hadn't even started processing its business logic. In the trace file I found the following lines:&lt;BR /&gt;&lt;BR /&gt;mmap(NULL, 8192, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) ......................................................................... = 0x1ffffffffcb0e000&lt;BR /&gt;stat("/etc/opt/ldapux/ldapux_client.conf", 0x9fffffffffffc8b0) ............................................................................................. = 0&lt;BR /&gt;open("/etc/opt/ldapux/ldapux_client.conf", O_RDONLY|0x800, 0666) ........................................................................................... = 7&lt;BR /&gt;ioctl(7, TCGETA, 0x9fffffffffffc920) ....................................................................................................................... ERR#25 ENOTTY&lt;BR /&gt;read(7, "#   L D A P - U X   C l i e n t ".., 8192) ........................................................................................................ = 8192&lt;BR /&gt;read(7, "n e   o f   t h e   s e r v i c ".., 8192) ........................................................................................................ = 1084&lt;BR /&gt;read(7, 0x6000000000117f98, 8192) .......................................................................................................................... = 0&lt;BR /&gt;close(7) ................................................................................................................................................... = 0&lt;BR /&gt;brk(0x6000000000140000) .................................................................................................................................... = 0&lt;BR /&gt;open("/var/spool/ldapcltd/status", O_RDONLY|0x800, 0) ...................................................................................................... = 7&lt;BR /&gt;fstat(7, 0x9fffffffffffcf40) ............................................................................................................................... = 0&lt;BR /&gt;mmap(NULL, 12, PROT_READ, MAP_SHARED|MAP_VARIABLE|MAP_FILE|MAP_ADDR32|0x800, 7, 0) ......................................................................... ERR#12 ENOMEM&lt;BR /&gt;close(7) ................................................................................................................................................... = 0&lt;BR /&gt;  Received signal 11, SIGSEGV, in user mode, [caught], partial siginfo&lt;BR /&gt;    Siginfo: si_code: SEGV_ACCERR, faulting address: 0, si_errno: 0&lt;BR /&gt;     PC: 00000001000000a0.0             break.m 0x16000&lt;BR /&gt;&lt;BR /&gt;I looks that the issue comes from the mmap() system call.&lt;BR /&gt;&lt;BR /&gt;I noticed that the 'su' command works perfectly for both types of users. Even ldap users can establish a valid OS session.&lt;BR /&gt;&lt;BR /&gt;I would be very grateful for any suggestions which might help me resolving the problem.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pit&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Sep 2009 15:49:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503003#M364886</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-09-24T15:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503004#M364887</link>
      <description>I'm guessing here - you might want to take a look at "man 1m setprivgrp", and set those users up in a priv group that can use maybe MLOCK or SHM_LOCK.&lt;BR /&gt;&lt;BR /&gt;But... I'm confused as to why a person being an ldap user vs not being makes a difference - unless it's inferred that a user that's local gets some of these privs and a user that comes from the outside world doesn't because it's not defined in a group, much less a priv group.&lt;BR /&gt;&lt;BR /&gt;Or, it's a bug...&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Sep 2009 19:56:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503004#M364887</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2009-09-24T19:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503005#M364888</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for the reply, but unfortunately the setprivgrp command didn't resolve my issue ;(&lt;BR /&gt;All application users (local and ldap) belong to the same Unix group, and only to the one.&lt;BR /&gt;&lt;BR /&gt;I investigated the issue a little bit more. When a batch job is started, the job scheduler (running with root privileges) forks a new process owned by the user who requested the job.&lt;BR /&gt;It always fails for the ldap users. As I wrote the ldap users can establish a valid Unix session. I connected to the system as an ldap user and attempted to manually start a batch.&lt;BR /&gt;When â  pwgrâ   was running, some jobs started and completed successfully and some not (about 60-70% succeeded). When â  pwgrâ   was not running, all jobs failed!&lt;BR /&gt;&lt;BR /&gt;Moreover I traced (tusc) the â  suâ   command when switching to an ldap user. I checked which authentication module was used and I found:&lt;BR /&gt;&lt;BR /&gt;# grep -iE "(pam|nss|ldap)" /tmp/su_01.trc | grep -v "ENOENT$"&lt;BR /&gt;open("/usr/lib/hpux32/libpam.so.1", O_RDONLY, 0) ........................................................................................................... = 4&lt;BR /&gt;stat("/etc/pam_debug", 0x7ffff300) ......................................................................................................................... = 0&lt;BR /&gt;stat("/etc/pam.conf", 0x7ffff2e0) .......................................................................................................................... = 0&lt;BR /&gt;open("/etc/pam.conf", O_RDONLY, 0666) ...................................................................................................................... = 5&lt;BR /&gt;open("/etc/nsswitch.conf", O_RDONLY, 0666) ................................................................................................................. = 5&lt;BR /&gt;open("/usr/lib/hpux32/libnss_files.so.1", O_RDONLY, 0) ..................................................................................................... = 5&lt;BR /&gt;open("/usr/lib/nls/msg/C/libpam.cat", O_RDONLY, 0101770) ................................................................................................... = 5&lt;BR /&gt;open("/usr/lib/hpux32/libnss_files.so.1", O_RDONLY, 0) ..................................................................................................... = 4&lt;BR /&gt;&lt;BR /&gt;When the application starts a job and the operation fails, the following is in use (from a tusc trace file):&lt;BR /&gt;&lt;BR /&gt;# grep -iE "(pam|nss|ldap)" /tmp/tstjob_01.trc  | grep -v "ENOENT$"&lt;BR /&gt;open("/etc/nsswitch.conf", O_RDONLY|0x800, 0666) ........................................................................................................... = 7&lt;BR /&gt;open("/usr/lib/hpux64/libnss_files.so.1", O_RDONLY|0x800, 0) ............................................................................................... = 7&lt;BR /&gt;open("/usr/lib/hpux64/libnss_ldap.so.1", O_RDONLY|0x800, 0) ................................................................................................ = 7&lt;BR /&gt;open("/usr/lib/hpux64/libldap_send.so", O_RDONLY|0x800, 0) ................................................................................................. = 7&lt;BR /&gt;stat("/etc/opt/ldapux/ldapux_client.conf", 0x9fffffffffffc8b0) ............................................................................................. = 0&lt;BR /&gt;open("/etc/opt/ldapux/ldapux_client.conf", O_RDONLY|0x800, 0666) ........................................................................................... = 7&lt;BR /&gt;open("/var/spool/ldapcltd/status", O_RDONLY|0x800, 0) ...................................................................................................... = 7&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pit&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Sep 2009 12:07:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503005#M364888</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-09-25T12:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503006#M364889</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Hello again,&lt;BR /&gt;&lt;BR /&gt;I isolated the problem a little bit more.&lt;BR /&gt;&lt;BR /&gt;1) When the ldap client demon (ldapclientd) starts, it creates and opens the status file /var/spool/ldapcltd/status. Than it requests memory mapping using the mmap system call:&lt;BR /&gt;&lt;BR /&gt;close(232) ............................................... ERR#9 EBADF&lt;BR /&gt;open("/var/spool/ldapcltd/status", O_RDWR|O_CREAT, 0644) . = 6&lt;BR /&gt;close(244) ............................................... ERR#9 EBADF&lt;BR /&gt;close(233) ............................................... ERR#9 EBADF&lt;BR /&gt;close(245) ............................................... ERR#9 EBADF&lt;BR /&gt;close(234) ............................................... ERR#9 EBADF&lt;BR /&gt;fstat(6, 0x7ffff380) ..................................... = 0&lt;BR /&gt;close(246) ............................................... ERR#9 EBADF&lt;BR /&gt;close(235) ............................................... ERR#9 EBADF&lt;BR /&gt;getuid() ................................................. = 0 (0)&lt;BR /&gt;close(247) ............................................... ERR#9 EBADF&lt;BR /&gt;close(236) ............................................... ERR#9 EBADF&lt;BR /&gt;close(248) ............................................... ERR#9 EBADF&lt;BR /&gt;close(237) ............................................... ERR#9 EBADF&lt;BR /&gt;ftruncate(6, 12) ......................................... = 0&lt;BR /&gt;close(249) ............................................... ERR#9 EBADF&lt;BR /&gt;close(238) ............................................... ERR#9 EBADF&lt;BR /&gt;mmap(NULL, 12, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_VARIABLE|MAP_FILE|MAP_ADDR32|0x800, 6, 0) = 0xc0d01000&lt;BR /&gt;close(250) ............................................... ERR#9 EBADF&lt;BR /&gt;close(239) ............................................... ERR#9 EBADF&lt;BR /&gt;&lt;BR /&gt;2) When the ldap client is running, all ldap users are able to connect and establish a valid UNIX session.&lt;BR /&gt;&lt;BR /&gt;3) When an ldap user (or system on behalf of the user) invokes a command, an attempt to access the memory mapped status file is made:&lt;BR /&gt;&lt;BR /&gt;a) when the ldap user starts an interactive program - it works:&lt;BR /&gt;&lt;BR /&gt;brk(0x60000000006ef000) .................................. = 0&lt;BR /&gt;brk(0x60000000006f7000) .................................. = 0&lt;BR /&gt;open("/var/spool/ldapcltd/status", O_RDONLY|0x800, 0) .... = 6&lt;BR /&gt;fstat(6, 0x9fffffffffffcd20) ............................. = 0&lt;BR /&gt;mmap(NULL, 12, PROT_READ, MAP_SHARED|MAP_VARIABLE|MAP_FILE|MAP_ADDR32|0x800, 6, 0) = 0xc0d01000&lt;BR /&gt;close(6) ................................................. = 0&lt;BR /&gt;&lt;BR /&gt;b) when the ldap user starts a batch program it fails with the error:&lt;BR /&gt;&lt;BR /&gt;brk(0x6000000000140000) .................................. = 0&lt;BR /&gt;open("/var/spool/ldapcltd/status", O_RDONLY|0x800, 0) .... = 8&lt;BR /&gt;fstat(8, 0x9fffffffffffcf40) ............................. = 0&lt;BR /&gt;mmap(NULL, 12, PROT_READ, MAP_SHARED|MAP_VARIABLE|MAP_FILE|MAP_ADDR32|0x800, 8, 0) ERR#12 ENOMEM&lt;BR /&gt;close(8) ................................................. = 0&lt;BR /&gt;  Received signal 11, SIGSEGV, in user mode, [caught], partial siginfo&lt;BR /&gt;    Siginfo: si_code: SEGV_ACCERR, faulting address: 0, si_errno: 0&lt;BR /&gt;     PC: 00000001000000a0.0             break.m 0x16000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What differs the two types of sessions (interactive and batch)? What causes that a session has not enough privileges to access the memory structure.&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Oct 2009 21:11:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503006#M364889</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-10-13T21:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503007#M364890</link>
      <description>mmap(NULL, 12, PROT_READ, MAP_SHARED| MAP_VARIABLE| MAP_FILE| MAP_ADDR32| 0x800, 8, 0) ERR#12 ENOMEM&lt;BR /&gt;&lt;BR /&gt;You are out of 32 bit system shared memory.  It is kind of hard to believe since you only want 12 bytes, a whole page.&lt;BR /&gt;&lt;BR /&gt;Are you making multiple mmap(2) calls to that file?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;What differs the two types of sessions (interactive and batch)? What causes that a session has not enough privileges to access the memory structure.&lt;BR /&gt;&lt;BR /&gt;It has nothing to do with privileges, just shared memory fragmentation.  It would just be random.&lt;BR /&gt;You may want to remove 0x800 (MAP_GLOBAL).&lt;BR /&gt;&lt;BR /&gt;What does "ipcs -ma" show?&lt;BR /&gt;&lt;BR /&gt;It seems you should be contacting the Response Center, they have tools to look at shared memory.</description>
      <pubDate>Wed, 14 Oct 2009 06:41:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503007#M364890</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-10-14T06:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503008#M364891</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for the reply. &lt;BR /&gt;&lt;BR /&gt;&amp;gt; Are you making multiple mmap(2) calls to that file?&lt;BR /&gt;In the trace files I haven't seen more than one call to the file.&lt;BR /&gt;&lt;BR /&gt;The error is not random. After I stopped the pwgr daemon it occurs always for batch jobs and never for interactive user programs.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; You may want to remove 0x800 (MAP_GLOBAL).&lt;BR /&gt;Unfortunately I am not a developer and the application is a commercial product, I don't have any possibility to make changes.&lt;BR /&gt;&lt;BR /&gt;I don't know if I understand the problem correctly, but I suppose the file has already been mapped by another process - the ldap client daemon process. It's a shared mapping and each next session tries to read the same memory area. According to my observations, the memory can be read by some sessions (interactive programs) but cannot be accessed by batch jobs. The mmap() function, for the programs which execute correctly, returns the same address as the ldap daemon got at startup.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pit</description>
      <pubDate>Thu, 15 Oct 2009 13:13:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503008#M364891</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-10-15T13:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503009#M364892</link>
      <description>&amp;gt;I suppose the file has already been mapped by another process - the ldap client daemon process.&lt;BR /&gt;&lt;BR /&gt;If mapped by a 64 bit process without MAP_ADDR32, a 32 bit process would have problems.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;the memory can be read by some sessions (interactive programs) but cannot be accessed by batch jobs.&lt;BR /&gt;&lt;BR /&gt;That shouldn't be the case.  It could fail because there is an environment variable that isn't set the same.  Looking closely at your two tusc outputs, it seems everything is the same except the FDs.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;returns the same address as the ldap daemon got at startup.&lt;BR /&gt;&lt;BR /&gt;Yes it should.  Unless the demon isn't running.</description>
      <pubDate>Fri, 16 Oct 2009 08:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503009#M364892</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-10-16T08:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503010#M364893</link>
      <description>Thanks again for the reply.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; If mapped by a 64 bit process without MAP_ADDR32, a 32 bit process would have problems.&lt;BR /&gt;&lt;BR /&gt;That is not the case, the ldapclientd demon maps the file using the command:&lt;BR /&gt;mmap(NULL, 12, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_VARIABLE|MAP_FILE|MAP_ADDR32|0x800, 6, 0) = 0xc0d01000&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Looking closely at your two tusc outputs, it seems everything is the same except the FDs.&lt;BR /&gt;&lt;BR /&gt;I think the FDs have nothing to do with the issue. A file descriptor (in the tusc trace output) is a next available sequential number which is not used by another file. Different file descriptors for the same file in different programs suggest that the programs behave on a different way and opened (and closed) a different number of files before opening the status file.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Yes it should. Unless the demon isn't running.&lt;BR /&gt;&lt;BR /&gt;But if the mmap() system call returns the same address, I suppose all programs access the same area of memory.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Oct 2009 11:34:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503010#M364893</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-10-18T11:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503011#M364894</link>
      <description>&amp;gt;That is not the case, the ldapclientd demon&lt;BR /&gt;&lt;BR /&gt;Any other 64 bit processes involved?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I think the FDs have nothing to do with the issue.&lt;BR /&gt;&lt;BR /&gt;Most likely but I was just comparing everything.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;if the mmap() system call returns the same address,&lt;BR /&gt;&lt;BR /&gt;Only if some process still has it mapped.&lt;BR /&gt;&lt;BR /&gt;Have you made sure you have the latest patches and if that didn't fix it, contact the Response Center?</description>
      <pubDate>Sun, 18 Oct 2009 17:47:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503011#M364894</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-10-18T17:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503012#M364895</link>
      <description>Thanks again for your answers!&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Any other 64 bit processes involved?&lt;BR /&gt;&lt;BR /&gt;The application is a 64 Bit process, but the ldap client demon is 32 bit. The ldap client demon maps the file first. &lt;BR /&gt;&lt;BR /&gt;# file /opt/ldapux/bin/ldapclientd&lt;BR /&gt;/opt/ldapux/bin/ldapclientd:    ELF-32 executable object file - IA64&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Only if some process still has it mapped.&lt;BR /&gt;&lt;BR /&gt;According to my observations, the ldap client demon opens and maps the file at the very beginning and keeps it until termination.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Have you made sure you have the latest patches and if that didn't fix it, contact the Response Center?&lt;BR /&gt;&lt;BR /&gt;Unfortunately I am not the admin of the server, I am even not a UNIX admin. I think our administrators have requested HP for help, but I am trying to help also ...and learn something interesting ;)&lt;BR /&gt;&lt;BR /&gt;Pit&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Oct 2009 11:13:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503012#M364895</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-10-19T11:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with users authenticated by ldap</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503013#M364896</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Funny thing is that when the pwgr daemon is running, and an ldap user has a valid session, the user can execute some programs from within the session.&lt;BR /&gt;&lt;BR /&gt;When the daemon is stopped, the same programs (executed in the same session) fail.&lt;BR /&gt;&lt;BR /&gt;The pwgr daemon casches some user data. I suppose it put something vital into the cache when the user established the session.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pit</description>
      <pubDate>Mon, 02 Nov 2009 14:55:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-users-authenticated-by-ldap/m-p/4503013#M364896</guid>
      <dc:creator>Pioo</dc:creator>
      <dc:date>2009-11-02T14:55:30Z</dc:date>
    </item>
  </channel>
</rss>

