Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:37 AM
03-21-2002 04:37 AM
openssh
I have a problem to install openssh3.1 on 11.00.
I had install zlib and openssl.
When i run "./configure --prefix=/opt --with-rsh=/usr/bin/remsh --with-ssl-
dir=/opt/openssl/lib --with-zlib=/opt/zlib"
everything goes fine until "checking for working openssl directory"
It says that i dont have it installed.
When i check config.log it says "line 7827 error 4036:cant open include file 'openssl/rand.h'." That file exist under /opt/openssl/include/openssl/
Anyone got an idea????
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:39 AM
03-21-2002 04:39 AM
Re: openssh
try checking the file permissions
cheers
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:50 AM
03-21-2002 04:50 AM
Re: openssh
#include
#include
main()
{
int x;
printf "Number of bytes=%d",RAND_query_egd_bytes();
}
No matter the output, does it compile correctly ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:14 PM
03-21-2002 04:14 PM
Re: openssh
In your case, this might do the trick:
ln -s /opt/openssl/include/openssl /usr/include
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 07:30 PM
03-21-2002 07:30 PM
Re: openssh
http://www.atomicgears.com/papers/osshhpux.html
- Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 05:03 AM
03-22-2002 05:03 AM
Re: openssh
I tried your test and its end like before
"error 4036: Cant open include file 'openssl/rand.h'"
Maybe corrupt?
Hi John,
There were no problems with the permissions, but thanks anyway.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2002 09:14 AM
03-27-2002 09:14 AM
Re: openssh
The "proper" way to fix the problem you had/have is by using the configure script properly. type
> ./configure -h
You will see loads and gobs off good options to give to configure, Including the directory for openssl, zlib, as well as the prefix directory where you want the binaries installed.
When in doubt, use
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2002 11:58 AM
03-27-2002 11:58 AM
Re: openssh
I guess it looks at /usr/local/openssl by default. Create a line from /usr/local/openssl to /opt/openssl. Otherwise you can specify the path to your openssl directory from /opt/openssl as a configure option.
./configure --with-ssl-dir=/opt/openssl (not lib)
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2002 12:08 PM
03-27-2002 12:08 PM
Re: openssh
Here are my notes for performing this install
- Install Perl5 ( only required for initial compile )
gzip -d /tmp/perl-5.6.1-sd-11.00.depot.gz
swinstall -s `hostname`:/tmp/perl-5.6.1-sd-11.00.depot \*
- Compile openssl
cd /tmp
gzip -d < openssl-0.9.6.tar.gz | tar xvf -
cd openssl-0.9.6
export PATH=/opt/perl5/bin:$PATH
./config --openssldir=/usr/local/openssl shared
make
make test
make install
cd ..
sh shlib/hpux11-cc.sh (had to create/modify this script with openssl)
sh shlib/hpux10-cc.sh (had to create/modify this script with ssl)
- Compile zlib
cd /tmp
gzip -d < zlib-1.1.4.tar.gz | tar xvf -
cd zlib-1.1.4
./configure -s --prefix=/usr
make test
make install
- Compile openssh
cd /tmp
gzip -d < openssh-3.1p1.tar.gz | tar xvf -
cd openssh-3.1p1
(11 version)
./configure --prefix=/opt/openssh2 --sysconfdir=/opt/openssh2/etc --with-pam
--with-ssl-dir=/usr/local/openssl/lib --with-default-path=/bin:/usr/bin:/opt/openssh2/bin
(10 version)
./configure --prefix=/opt/openssh2 --sysconfdir=/opt/openssh2/etc
--with-ssl-dir=/usr/local/ssl/lib --with-default-path=/bin:/usr/bin:/opt/openssh2/bin
make
make install
Let me know if this helps.
GL,
C