Liao <[EMAIL PROTECTED]> wrote: > As far as I know, in order to have the mod_ssl working, have > to have the library openssl, right? Well, I dont know if my > apache has, so I want to check.
This really isn't an OpenSSL question -- it has to do with your platform. If you were on Linux, I'd tell you to check using your package manager -- yum or apt or emerge. But on HP-UX, I have no idea what the package manager is. You could check to see if you have a command called `openssl`. The first, easiest check is with `which`: :; which openssl If it gives you a path, great! You have OpenSSL. Let us hope it was the one your Apache module was built against... If you can't find it that way, you could snoop around with `find` or `locate`: :; find / -type f -name 'openssl' :; locate openssl These will be a lot more verbose. If you need more help, please email me off list. -- _jsn ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]
