AIX5.3安装ssh 笔记

简介:
今天在AIX5.3 上安装SSH时遇到不少问题,基本上折腾了一天,把这个过程记录下来,避免以后再犯同样的错误。
 
先列出需要的软件地址:
 
 
 
刚开始下载了openssh-4.7_new5302.tar.Z,openssl.0.9.8.1100.tar.Z 两个版本,安装ssl的时候正常,
# uncompress openssl.0.9.8.1100.tar.Z
# tar xvf openssl.0.9.8.1100.tar
#smitty 安装软件。
安装ssh时,安装license时也是正常的,安装base的时候就报错了,提示:
 
+-----------------------------------------------------------------------------+
                    Pre-installation Verification...
+-----------------------------------------------------------------------------+
Verifying selections...done
Verifying requisites...done
Results...
FAILURES
--------
  Filesets listed in this section failed pre-installation verification
  and will not be installed.
  Requisite Failures
 ------------------
 SELECTED FILESETS:  The following is a list of filesets that you asked to
 install.  They cannot be installed until all of their requisite filesets
 are also installed.  See subsequent lists for details of requisites.
   openssh.base.client 5.4.0.6101            # Open Secure Shell Commands
   openssh.base.server 5.4.0.6101            # Open Secure Shell Server
   openssh.msg.en_US 5.4.0.6101              # Open Secure Shell Messages -...
 MISSING REQUISITES:  The following filesets are required by one or more
 of the selected filesets listed above.  They are not currently installed
 and could not be found on the installation media.
    openssl.base 0.9.8.1300                   # Fileset Update
  << End of Failure Section >>
FILESET STATISTICS
------------------
    3  Selected to be installed, of which:
        3  FAILED pre-installation verification
  ----
    0  Total to be installed

Pre-installation Failure/Warning Summary
----------------------------------------
Name                      Level           Pre-installation Failure/Warning
-------------------------------------------------------------------------------
openssh.msg.en_US         5.4.0.6101      Requisite failure
openssh.base.server       5.4.0.6101      Requisite failure
openssh.base.client       5.4.0.6101      Requisite failure
 
# lslpp -l | grep -i ssl
  openssl.base            0.9.8.1100  COMMITTED  Open Secure Socket Layer
  openssl.license         0.9.8.1100  COMMITTED  Open Secure Socket License
  openssl.man.en_US       0.9.8.1100  COMMITTED  Open Secure Socket Layer
  openssl.base            0.9.8.1100  COMMITTED  Open Secure Socket Layer
 
# lslpp -l | grep -i ssh
  openssh.license         5.4.0.6101  COMMITTED  Open Secure Shell License
可以看到就是base包没有安装成功。 在群里发了信息后,随风舞朋友提示说缺少上面红色字体中的openssl.base 0.9.8.1300   包了。应该是我下载的2个软件不一致造成的,他建议我用用openssh_5.2p1_aix53.tar.Z和openssl.0.9.8.1100.tar.Z 这2个组合用 。
重新下载openssh_5.2p1_aix53.tar.Z 包和openssl.0.9.8.1100.tar.Z 文件一并上传到aix里,安装顺利完成, 不过安装ssh的时候,没有license可以选择的,直接选择base就可以了,也或者是之前装过低版本的ssh的License的原因吧。
安装完成后,看到ssh服务已经启动了。
# lssrc -a | grep ssh
 sshd             ssh              417972       active



本文转自 gjm008 51CTO博客,原文链接:http://blog.51cto.com/gaoshan/410463,如需转载请自行联系原作者
相关文章
|
缓存 网络协议 数据可视化
WinSCP下载安装并实现远程SSH本地服务器上传文件
WinSCP下载安装并实现远程SSH本地服务器上传文件
883 1
|
Ubuntu Shell 网络安全
安装了ubuntu虚拟机后发现shell无法连接 ubuntu开启ssh连接
【8月更文挑战第23天】安装了ubuntu虚拟机后发现shell无法连接
1491 6
|
8月前
|
安全 Linux 网络安全
在Linux(CentOS和AWS)上安装更新的git2的方法并配置github-ssh
经过以上这些步骤,你现在就能在GitHub上顺利往返,如同海洋中的航海者自由驰骋。欢迎你加入码农的世界,享受这编程的乐趣吧!
382 10
|
XML 大数据 网络安全
大数据-03-Hadoop集群 免密登录 超详细 3节点云 分发脚本 踩坑笔记 SSH免密 集群搭建(一)
大数据-03-Hadoop集群 免密登录 超详细 3节点云 分发脚本 踩坑笔记 SSH免密 集群搭建(一)
270 5
|
大数据 网络安全 数据安全/隐私保护
大数据-03-Hadoop集群 免密登录 超详细 3节点云 分发脚本 踩坑笔记 SSH免密 集群搭建(二)
大数据-03-Hadoop集群 免密登录 超详细 3节点云 分发脚本 踩坑笔记 SSH免密 集群搭建(二)
464 5
|
网络安全 数据库
gbase 8a 数据库 安装8ampp 常见ssh报错问题
gbase 8a 数据库 安装8ampp 常见ssh报错问题
|
网络安全
Ubuntu14.04安装ssh服务器
Ubuntu14.04安装ssh服务器
188 0
|
监控 Ubuntu 安全
|
网络安全 文件存储 数据安全/隐私保护
绿联云NAS一些探索(1):SSH、包管理器探测、安装docker-compose等
绿联云NAS一些探索(1):SSH、包管理器探测、安装docker-compose等
1548 6
|
Linux 网络安全 Python
Linux离线安装Python时ssh和hashlib死活安装不上的解决方案
本文提供了Linux环境下离线安装Python时遇到的"ImportError: No module named _ssl"和"ERROR:root:code for hash md5|sha1|sha224|sha256|sha384|sha512 was not found"两个问题的解决方案,通过设置OpenSSL环境变量和编辑Python源码配置文件来解决。
575 1