1829648 Members
9483 Online
109992 Solutions
New Discussion

find libldapssl41.so

 
Eli Daniel
Super Advisor

find libldapssl41.so

HI, i need find libldapssl41.so in the Operation System hp-ux 11.31

I nedd know the libldapssl41.so is installed in the server

how can find?
10 REPLIES 10
P Muralidhar Kini
Honored Contributor

Re: find libldapssl41.so

Hi Daniel,

To search for particular file, you can use the find command.
Check the following links for more details on the find command

* Searching for Files using find
http://docs.hp.com/en/A1700-90014/ch02s18.html

* HPUX find
http://www.informatik.uni-frankfurt.de/doc/man/hpux/find.1.html

File with .SO extension stands for a shared library.
I think these files should be located in "/usr/lib/hpux32" folder.

try the following searches

A) Search from the root
#find / -name "libldapssl41.so"

or

B) Search in a specific directory
#find /usr/lib/hpux32 -name "libldapssl41.so"

Hope this helps.

Regards,
Murali
Let There Be Rock - AC/DC
Eli Daniel
Super Advisor

Re: find libldapssl41.so

how download librery "libldapssl41.so"???
Eli Daniel
Super Advisor

Re: find libldapssl41.so

The librery is included in the depot J4269AA??

This correct?
Torsten.
Acclaimed Contributor

Re: find libldapssl41.so

Maybe it is easier to tell what application tells you libldapssl41.so is missing.
Please give more context ...

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Eli Daniel
Super Advisor

Re: find libldapssl41.so

Torsten, in the server be installed SAP, and requeriment need librery libldapssl41.so

The HP-UX.1131 has installed the librery? or must download pacht?
Dennis Handly
Acclaimed Contributor

Re: find libldapssl41.so

Dennis Handly
Acclaimed Contributor

Re: find libldapssl41.so

>The library is included in the depot J4269AA?

It sure looks like it, that's what those threads say. You must download the LDAP-UX product.
Eli Daniel
Super Advisor

Re: find libldapssl41.so

Dennis the server version is

HP-UX 11.31 ia64
Virtual Machine Guess

Host Server
Blade 870C i2

This depot apply for O.S?
Eli Daniel
Super Advisor

Re: find libldapssl41.so

Dennis, Torsten

Sorry for quiestion

The run command:

sapl990:dbcadm 21> ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 8192
memory(kbytes) unlimited
coredump(blocks) 4194303
nofiles(descriptors) 4096

I need modify value data for "unlimited"

how can modify?

Dennis Handly
Acclaimed Contributor

Re: find libldapssl41.so

>This depot apply for OS?

Sure, 11.31 is listed:
https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=J4269AA

>I need modify value data for "unlimited"

You can not. You can only make it larger by changing the kernel parm to 4 Gb:
# kctune maxdsiz=0xfffff000

After you change this, user process must login again, if they really need this increase from 1 Gb to 4 Gb.
(Note: Just because you can increase it, doesn't mean existing applications can use it. But java can.)

For 64 bit processes:
# kctune maxdsiz_64bit= (much bigger number)