A tramp does not work with stdin, start, ssh, stderr & stdout errors

I canโ€™t live for me ... after reinstalling all the things of VVV / VBox (4.3.10) and running roving - find out why this beauty (VVV) will not work. I cannot access any Wordpress site, for example http://local.wordpress.dev/ .

Technical specifications: Windows 8.1 Cygwin

Final lines after running 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 /etc/hosts file... ==> default: Adding domains to the virtual machine /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 

Where am I mistaken?

+7
vagrant ssh cygwin wordpress
source share
2 answers

Add the following line to you: Vagrantfile

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

This starts bash as a shell without login, but also reports this to the / etc / profile source, which, as I suggested, is the only reason for using the default login shell. Works for me with a spare tone of 64. Stray box.

+12
source share

Not what you do. This is apparently a known issue.

I fixed it by running vagrant ssh

and then

 sudo service mysql restart || true 

You can find the problem record here.

+2
source share

All Articles