Skip to content
bami74 edited this page Jun 28, 2016 · 19 revisions

Shell

Edit

solaris 10 sprac

  • SVN Install
gzunzip apr-1.5.1-sol10-sun4v-CISS.gz
gzunzip apr-util-1.5.4-sol10-sun4v-CISS.gz
gzunzip pcre-8.37-sol10-sun4v-CISS.gz
gzunzip subversion-1.8.13-sol10-sun4v-CISS.gz

pkgadd -d apr-1.5.1-sol10-sun4v-CISS
pkgadd -d apr-util-1.5.4-sol10-sun4v-CISS
pkgadd -d pcre-8.37-sol10-sun4v-CISS
pkgadd -d subversion-1.8.13-sol10-sun4v-CISS

pkginfo
application CISSapr                          apr
application CISSapr-util                     apr-util
application CISSpcre                         pcre
application CISSsubversion                   subversion

pkgrm CISSsubversion
pkgrm CISSpcre
pkgrm CISSapr-util
pkgrm CISSapr
#svcs ssh
STATE        STIME       FMRI
online          12:00:00     svc:/network/ssh:default
#

1. 직접 재시작
#svcadm disable ssh [엔터] (ssh 서비스 비활성화)
#svcadm enable ssh [엔터] (ssh 서비스 활성화)

2. 재시작
#svcadm restart ssh
connect through Windows Putty but displays:
Couldn't agree a key exchange algorithm (available: gss-group1-sha1-toWM5S1w5Ew8Mqkay+al2g==)

Why? How can I solve it?

Multiple causes can generate this error. Some possibilities:

a) the ciphers between your client and server don't match; validate the Ciphers line /etc/ssh/sshd_config:
grep Ciphers /etc/ssh/sshd_config

b) your sshd is running without host keys (p.e. manually adding sshd to your system after install); generate the host keys:

/lib/svc/method/sshd -c
svcadm restart ssh

Clone this wiki locally