아무거나

[vagrant] vagrant key파일 있는 서버 박스추가 및 연결방법 본문

Infra/DevOps

[vagrant] vagrant key파일 있는 서버 박스추가 및 연결방법

전봉근 2019. 3. 25. 10:18
반응형

** vagrant key파일 있는 서버 박스추가 및 연결방법


1. https://app.vagrantup.com/boxes/search 에서 검색


2. 설명에 있는대로 추가 // 1,2 -> vagrant box setting


3. public key가 없어서 로그인이 안되는 경우도 있다.   // key empty ... not login


4. vagrant ssh-config or vagrant ssh   // ssh config info

   ex)  D:\data\elk>vagrant ssh-config

        Host default

          HostName 127.0.0.1

          User ubuntu

          Port 2222

          UserKnownHostsFile /dev/null

          StrictHostKeyChecking no

          PasswordAuthentication no

          IdentityFile D:/data/elk/.vagrant/machines/default/virtualbox/private_key

          IdentitiesOnly yes

          LogLevel FATAL

 

 

        D:\data\elk>vagrant ssh

        `ssh` executable not found in any directories in the %PATH% variable. Is an

        SSH client installed? Try installing Cygwin, MinGW or Git, all of which

        contain an SSH client. Or use your favorite SSH client with the following

        authentication information shown below:

        Host: 127.0.0.1

        Port: 2222

        Username: ubuntu

        Private key: D:/data/elk/.vagrant/machines/default/virtualbox/private_key


5. Private key 경로에 key파일이 있다. 그걸 이용해서 연결  // key file root​ 

반응형
Comments