[[TableOfContents]] = 인덱서를 만드는데 유용한것 = == Simple Text Indexer Using SQLite == * [SimpleTextIndexerUsingSQLite] * 원본 글 : [http://www.codeproject.com/useritems/Text_Indexer.asp] = ssh 관련 = == ssh login without password == * [http://www.linuxproblem.org/art_9.html 참고글] * 구글에서 어떤 검색 키워드를 넣느냐에 따라서 삽질을 하던지 바로 해결하던지 한다는 것을 알았음. 위 검색 키워드로 찾아 가면 위 참고글이 나오는데 똑같이 해도 안될 가능성이 높음. {{| A : Client B : Server 아래 명령어 실행시에 Enter Passphrase 에서 그냥 Enter 만 칠것 a@A:~> ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/a/.ssh/id_rsa): Created directory '/home/a/.ssh'. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/a/.ssh/id_rsa. Your public key has been saved in /home/a/.ssh/id_rsa.pub. The key fingerprint is: 3e:4f:05:79:3a:9f:96:7c:3b:ad:e9:58:37:bc:37:e4 a@A 아래와 같은 식으로 B 서버에 .ssh 폴더가 만약 없다면 만들고. a@A:~> ssh b@B mkdir -p .ssh b@localhost's password: public 키를 해당 폴더에 해당 이름으로 저장 a@A:~> cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys' b@B's password: 주의점. 그리고 아래 두 라인의 명령이 위 참고 링크대로 했을때 안될 수 있는 여지. ssh b@B chmod 700 .ssh/ ssh b@B chmod 600 .ssh/authorized_keys a@A:~> ssh b@B hostname |}}