Go to content

SSH

(3)
How to transfer docker image through ssh When running multiple dockers on your network, there are times you can push and pull docker images back and forth. To local image to other external docker service: docker save name:tag | bzip2 | ssh remote docker load even for more visual way docker save imgName:tag | bzip2 | pv | ssh 192.168.0.x docker load You don't need to save to file and move the file and load the file. This answer is avail..
ssh 접속이 느릴경우 When logging in, ssh daemon checks reverse DNS lookup. so only thing you have to do is, write one line in sshd_config of server. /etc/ssh/sshd_config: UseDNS no restart ssh daemon, and that's it.
SSH 프로그램 3총사 오늘은 SSH 프로그램에 대해서 써 볼까 한다. 마침 학교에 와 있는데 집에 있는 서버에 접속을 해야한다던가, 서버를 건들여야 하는데 왠지 내가 물려 있는 랜에 스니퍼가 동작한다던지 하는 경우에는 왠지모를 꺼림직한 느낌이 드는것은 사실이다. 원격 컴퓨팅에 대한 욕구는 날이 갈수록 늘어만 가는데, 작업하던 파일을 어디서든(여기서는 인터넷이 접속되어 있는 컴퓨터가 있다는 제한이 따르지만) 열어보고 수정하고 저장할 수 있다는 점은 커다란 메리트가 아닐수 없으며 유비쿼터스 컴퓨팅의 그것과 상통한다.... ..라고 쓰긴 했지만 어찌됬건 편리하다 라는말 한마디로 함축 할 수 있겠다...=_=; 원격컴퓨팅에 관련된 것들을 나열하자면 수도 없지만, 그중에서 가장 기본적인 것은 telnet이 되겠다. 하지만 이 텔넷이라..