- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: OpenSSH Installation Problem
Categories
Company
Local Language
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
09-11-2002 04:10 AM
09-11-2002 04:10 AM
OpenSSH Installation Problem
I have a installation problem in OpenSSH 3.4P1
I have to install OpenSSH 3.4p1 in our HP9000 Server.
First of all, I installed Zlib. It was successfully installed.
But when I install OpenSSL,
It shown that I need to install Perl 5.
Then I installed Perl 5.
But it still ask me to install Perl 5.
What is the problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 04:13 AM
09-11-2002 04:13 AM
Re: OpenSSH Installation Problem
Get perl from here:
http://hpux.cs.utah.edu/hppd/hpux/Languages/perl-5.8.0/
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 04:15 AM
09-11-2002 04:15 AM
Re: OpenSSH Installation Problem
http://hpux.cs.utah.edu/hppd/hpux/Misc/zlib-1.1.4/
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/tcp_wrappers-7.6/
http://hpux.cs.utah.edu/hppd/hpux/Languages/openssl-0.9.6d/
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.4p1/
Get and install in that order!
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 05:31 AM
09-11-2002 05:31 AM
Re: OpenSSH Installation Problem
I have successfully installed all package.
But how can I start OpenSSH?
I can not find sshd.
Chen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 05:33 AM
09-11-2002 05:33 AM
Re: OpenSSH Installation Problem
to your perl problem:
type "perl -v"
If perl says it's version 4 the problem is assumedly your search path.
type "whereis perl"perl 4 stays normaly in /usr/contrib/bin/, perl 5 in /opt/perl5/bin.
If this is the problem, you can do different things:
- change your $PATH variable so that first searching in /opt/perl5/bin
- or create a link to perl 5 in a path searching before /usr/contrib/bin, e.g. "ln -s /opt/perl5/bin/perl /usr/bin/perl"
regards
Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 05:35 AM
09-11-2002 05:35 AM
Re: OpenSSH Installation Problem
#whereis sshd
Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 05:11 AM
09-12-2002 05:11 AM
Re: OpenSSH Installation Problem
/opt/ssh/sbin/sshd
Its configuration file is
/etc/rc.config.d/sshd
Starting script is
/sbin/init.d/secsh,
Automatic startup links are /sbin/rc1.d/K393secsh
/sbin/rc2.d/S393secsh
BR,
Mihails
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 05:31 AM
09-12-2002 05:31 AM
Re: OpenSSH Installation Problem
even with the precompiled OpenSSH binaries you usually need to create your system's host keys, and edit sshd_config before you will be able to start up sshd (which sort of makes sense).
You can look for a README or INSTALL file in the doc directory of your OpenSSH installation or consult the manpage of the ssh-keygen command, where the process of creating host keys for your box is outlined.
Usually you have to create 3 host keys for the 3 crypto systems rsa1, rsa, and dsa.
e.g.
/opt/openssh/bin/ssh-keygen -N "" -t rsa1 -b 1024 -f /opt/openssh/etc/ssh_host_rsa1_key
You have to repeat this for rsa, dsa as well.
Adapt the protocol string for -t flag and in output file name, as well as the paths according to your OpenSSH installation target.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 05:26 PM
09-12-2002 05:26 PM
Re: OpenSSH Installation Problem
PATCH SOFTWARE before I install followings.
As we known, while install HP-UX Secure Shell A 3.10, HP recommed us to install PHCO_25527.
Chen
September 11, 2002 12:15 PM GMT points for answer: Unassigned109876543210
--------------------------------------------------------------------------------
http://hpux.cs.utah.edu/hppd/hpux/Misc/zlib-1.1.4/
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/tcp_wrappers-7.6/
http://hpux.cs.utah.edu/hppd/hpux/Languages/openssl-0.9.6d/
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.4p1/
Get and install in that order!
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 02:48 AM
09-13-2002 02:48 AM
Re: OpenSSH Installation Problem
Just to clear confusion. If you are downloading the depot software that has recommanded, you should note that these sofwares are installed in "/usr/local" NOT in "/opt/" directory.
Therefore you should look for them in "/usr/local".
__Mehdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 05:33 AM
09-17-2002 05:33 AM
Re: OpenSSH Installation Problem
Thanks for your advices.
I have completed installation.
Now, I have another question.
I want to ssh/sftp to the ssh server by no passphrase.
I knew it need to use ssh-agent, ssh-add to add the passphrase in the memory.
But it need to type phrase.
Is there any way to add phrase in the memory without typing phrase?
Thanks
Chen