IT

stdin, start, ssh, stderr 및 stdout 오류로 인해 vgrant up이 실패함

itgroup 2023. 3. 9. 21:59
반응형

stdin, start, ssh, stderr 및 stdout 오류로 인해 vgrant up이 실패함

아무리 애를 써도...VV/VBox(4.3.10)를 모두 재설치하고 vagrant up --provision을 실행하면 이 아름다움(VVV)이 실행되지 않는 이유를 알 수 있습니다.http://local.wordpress.dev/같은 워드프레스 사이트에 액세스할 수 없습니다.

사양: Windows 8.1 Cygwin

cmd -> vagrant up --provision 실행 후 마지막 행

==> default: http://gruntjs.com/getting-started
==> default: Downloading phpMyAdmin 4.1.14...
==> default: Restart Nginx...
==> default:  * Restarting nginx nginx
==> default:    ...done.
==> default: Cleaning the virtual machine's /etc/hosts file...
==> default: Adding domains to the virtual machine's /etc/hosts file...
==> default:  * Added vvv.dev from /srv/www/vvv-hosts
==> default:  * Added local.wordpress.dev from /srv/www/vvv-hosts
==> default:  * Added local.wordpress-trunk.dev from /srv/www/vvv-hosts
==> default:  * Added src.wordpress-develop.dev from /srv/www/vvv-hosts
==> default:  * Added build.wordpress-develop.dev from /srv/www/vvv-hosts
==> default: -----------------------------
==> default: Provisioning complete in 1636 seconds
==> default: External network connection established, packages up to date.
==> default: For further setup instructions, visit http://vvv.dev
==> default: Running provisioner: shell...
    default: Running: inline script
==> default: stdin: is not a tty
==> default: start: Job is already running: mysql
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

chmod +x /tmp/vagrant-shell && /tmp/vagrant-shell

Stdout from the command:



Stderr from the command:

stdin: is not a tty
start: Job is already running: mysql

내가 어디가 잘못됐지?

Vagrant 파일에 다음 행을 추가합니다.

config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"

이것은 bash를 비로그인 셸로 시작하지만 소스 /etc/profile로 전달하기도 합니다.이것이 디폴트로 로그인 셸을 사용하는 유일한 이유라고 가정했습니다.재고정확한 64 Vagrant 박스로도 충분합니다.

당신이 하는 일은 아무것도 없어.이것은 이미 알려진 문제인 것 같습니다.

달려서 고쳤다.vagrant ssh

그리고 나서.

sudo service mysql restart || true

여기서 문제의 기록을 찾을 수 있습니다.

언급URL : https://stackoverflow.com/questions/24421541/vagrant-up-fails-with-stdin-start-ssh-stderr-stdout-errors

반응형