Notice
Recent Posts
Recent Comments
목록rsh (2)
준호씨의 블로그
rsync - copy files to remote server
simple rsync rsync src_files junho85@junho85.pe.kr:/somewhere/ use ssh instead of rsh rsync -e ssh src_files junho85@junho85.pe.kr:/somewhere/ change ssh port rsync -e 'ssh -p src_files junho85@junho85.pe.kr:/somewhere/ references https://explainshell.com/explain?cmd=rsync+-p+--chmod%3D%2Brwx+-e+%22ssh+-i+userserver.pem%22+--copy-unsafe-links+-rz+user%40server%3A~%2F+%2Fdb_backups%2Fwww%2F h..
IT이야기
2017. 11. 15. 21:33
rsh -> ssh 변경 가이드
기존에 rsh 를 주로 사용하던 환경에서 ssh 로 넘어 갈 때 변경 해 줄 포인트들 정리 rsh 커맨드 대신 ssh 기존에 아래와 같은 커맨드를 사용했다면 rsh junho85.pe.kr whoami 아래와 같이 바꿔준다. ssh junho85.pe.kr whoami 간단하다. rsync -e ssh 옵션을 추가 해 준다. rsync -e ssh ... sshd 설치 TODO 이건 나중에 따로 정리. 기본 설치 방법. 레거시 서버에서 설치 하는 방법. 등등
개발이야기
2017. 10. 2. 11:34