Unix - bami74/me GitHub Wiki
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
- Subversion - ์คํ ์์ค ๋ฒ์ ์ ์ด ์์คํ LINK
- ์๋ผ๋ฆฌ์ค 11 ์ SVN Server ์ค์น, ์ค์ - OpenCSW LINK
- SVN ๋ช ๋ น์ด ๋ฐ ๊ธฐ๋ณธ ๋๋ ํ ๋ฆฌ ์์ฑ , ์ค์ LINK
- svn ์ ์ฅ์(repository) ์ถ๊ฐํ๊ธฐ LINK
- ์๋ผ๋ฆฌ์ค openssl ์ค์ LINK
- ์๋ผ๋ฆฌ์ค ssh ์ค์ LINK
#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