게시글
질문&답변
2022.02.04
macOS Monterey 12.1 에서 Vagrant 설치 오류 해결한 방법 적습니다.
진짜 쉽게 되는게 없네요. 2-2 강의를 듣는데 172.18.1.91 에 접속이 안되네요 그래서 vagrant에서 해당 ip가 설정 된건지 구글링 해서 좀 찾아봤는데 확인 결과 각 virtual machine의 Hostname의 주소가 VagrantFile에 설정해 놓으신 172.18.1.91~93 으로 설정이 안되어 있고 127.0.0.1 로 설정되어 있네요. port번호만 다 다르고 그래서 http://127.0.0.1:2222/www/index.html 로 접속해 봤더니 webpage는 접근불가.... 아... 해결 방법 없을까요? https://ostechnix.com/how-to-find-vagrant-machine-ip-address-from-host/ user@AL01447243 VWS_vagrant_script % vagrant global-status id name provider state directory ----------------------------------------------------------------------- 57a5cfb cent1 virtualbox running /Users/user/VWS_vagrant_script 7f41593 cent2 virtualbox running /Users/user/VWS_vagrant_script 010ee1c cent3 virtualbox running /Users/user/VWS_vagrant_script The above shows information about all known Vagrant environments on this machine. This data is cached and may not be completely up-to-date (use "vagrant global-status --prune" to prune invalid entries). To interact with any of the machines, you can go to that directory and run Vagrant, or you can use the ID directly with Vagrant commands from any directory. For example: "vagrant destroy 1a2b3c4d" user@AL01447243 VWS_vagrant_script % vagrant ssh-config 57a5cfb Host cent1 HostName 127.0.0.1 User vagrant Port 2222 UserKnownHostsFile /dev/null StrictHostKeyChecking no PasswordAuthentication no IdentityFile /Users/user/VWS_vagrant_script/.vagrant/machines/cent1/virtualbox/private_key IdentitiesOnly yes LogLevel FATAL user@AL01447243 VWS_vagrant_script % vagrant ssh-config 7f41593 Host cent2 HostName 127.0.0.1 User vagrant Port 2200 UserKnownHostsFile /dev/null StrictHostKeyChecking no PasswordAuthentication no IdentityFile /Users/user/VWS_vagrant_script/.vagrant/machines/cent2/virtualbox/private_key IdentitiesOnly yes LogLevel FATAL user@AL01447243 VWS_vagrant_script % vagrant ssh-config 010ee1c Host cent3 HostName 127.0.0.1 User vagrant Port 2201 UserKnownHostsFile /dev/null StrictHostKeyChecking no PasswordAuthentication no IdentityFile /Users/user/VWS_vagrant_script/.vagrant/machines/cent3/virtualbox/private_key IdentitiesOnly yes LogLevel FATAL
- 0
- 5
- 688
질문&답변
2022.01.29
macOS Monterey 12.1 에서 Vagrant 설치 오류 해결한 방법 적습니다.
??? VirtualBox에서 cent1, cent2, cent3 전부 지우고, VWS 폴더에서 .vagrant 삭제 상위 폴더에서 .d.vagrant 삭제 한 후 다시 vargrant up 으로 재생성하니 이제 정상적으로 생성됐습니다. (사진) 작동되므로 다시 강의들으러 갑니다.....
- 0
- 5
- 688
질문&답변
2022.01.29
macOS Monterey 12.1 에서 Vagrant 설치 오류 해결한 방법 적습니다.
다 된줄 알았는데.... vagrant ssh cent1 로 접속해 보면 강의에서 보여지는 "이 서버는 학습용 가상회사인 Virtual Web Service Company의 서버입니다." "실습의 용이성을 위해 selinux와 iptables를 off 했습니다." "접속 후 sudo su - 커맨드를 실행하여 root 유저로 실습을 진행해 주세요." Text는 안나오네요. 그리고 sudo su 적용하고 netstat -nlptu 입력해서 프로세스 상태 확인해보면 nginx 도 실행이 안되어있네요 하..
- 0
- 5
- 688
질문&답변
2022.01.28
안녕하세요 vagrant 설치중 이슈가 있습니다.
Mac 사용중인데 vagrant up 하면 비슷한 에러가 발생하네요 설치 버전은 oracle virtual box 6.1.22 1. vagrant 2.2.19 2. vagrant 2.2.14 두 버젼으로 실행 해봤으나 동일 Mac version은 Monterey 12.1 입니다. 혹시 해결하신 분 계신지요? ==> cent1: Running 'pre-boot' VM customizations... ==> cent1: Booting VM... There was an error while executing `VBoxManage`, a CLI used by Vagrant for controlling VirtualBox. The command and stderr is shown below. Command: ["startvm", "56158e27-17dd-4fb3-ba58-bce1867b714d", "--type", "headless"] Stderr: VBoxManage: error: The virtual machine 'cent1' has terminated unexpectedly during startup because of signal 10 VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component MachineWrap, interface IMachine
- 0
- 6
- 1.5K