SSH 6

svn hooks를 이용한 release, trunk 자동 업데이트

hook script 로 svn 동작 제어하기 ssh-keygen 자동 로그인 How to get the name of branch in a post-commit hook in SVN? 주의 : 보안 이슈로 hooks 실행은 환경변수를 상속받지 않고 모두 초기화하고 실행된다. post-commit #!/bin/sh REPOS="$1" REV="$2" mailer.py commit "$REPOS" "$REV" /path/to/mailer.conf DIR="/home/svn/project_name/hooks" if svnlook dirs-changed -r "$REV" "$REPOS" | grep -qEe '^trunk/'; then ${DIR}/_dev_update.sh $1 $2 else ${DIR}/_..

vcs/svn 2017.03.24

ssh-keygen 자동 로그인

SSH Key - 비밀번호 없이 로그인 ssh 자동연결 id_rsa는 유출되면 안된다. !!!!!!!!!!!! #rsa 로 키와 공개키를 만든다. ssh-keygen -t rsa Enter file in which to save the key (/home/username/.ssh/id_rsa): # 기본값 사용 Enter passphrase (empty for no passphrase): # 비밀번호 (자동 로그인은 공백을 입력) Enter same passphrase again: # 비밀번호 확인 # 원격서버에 공개키를 업로드한다. scp id_rsa.pub username@domain.com:id_rsa.pub # scp id_rsa.pub username@domain.com # scp id_rsa...

os/Linux 2017.03.23

ssh 자동연결

리눅스 SSH 패스워드 없이 자동 로그인 SSH 암호 없이 자동 로그인 종합 안내 authorized_keys와 SSH Config를 이용한 비밀번호 없이 SSH 로그인하기 Can you set passwords in .ssh/config to allow automatic login? Simplify Your Life With an SSH Config File ~/.ssh/config で簡単に複数ホストへのSSH接続を管理する ssh-keygen ssh-keygen 은 다른곳(ssh-keygen 자동 로그인)도 많으니 넘어가고, ... expect #!/usr/bin/expect -f spawn ssh useranme@domain.com expect "assword:" send "password\r" int..

os/Linux 2017.02.10

CLI 원격서버-로컬서버 파일복사 및 동기화

scp 명령어를 이용한 파일 복사 및 전송 리눅스에서 SFTP로 파일 올리기 리눅스 scp 자동화 SCP scp -옵션 소스 목적지 scp username@domain.com:www/test.txt ./ scp test.txt usernaem@domain.com:www/ option -P : 포트 -p : 수정시간,권한 유지 -r : 하위 디렉토리 sshpass + SCP sshpass -p패스워드 scp -o StrictHostKeyChecking=no 소스 목적지 sshpass -pP@ssw0rd scp -o StrictHostKeyChecking=no test.txt root@135.79.246.99:/root/test.txt sshpass + SFTP # sshpass가 필요 export SSHP..

os/Linux 2014.10.30
반응형