Ich habe eine grundlegende Vagrants Box basierend auf ubuntu/trusty64 erstellt.Vagrant Box - Installiere MySql 5.7 mit apt
Wenn ich die Maschine und den nächsten "vagrant ssh" in sie "vagrantieren", ist alles in Ordnung.
Nächster Schritt wäre neueste MySQL 5.7 zu installieren, so das ist, was ich tat:
wget http://dev.mysql.com/get/mysql-apt-config_0.7.3-1_all.deb
sudo dpkg -i mysql-apt-config_0.7.3-1_all.deb
sudo apt-get update
sudo apt-get install -y mysql-server
es also Downloads konfiguriert etc ... weiter eine „interaktive“ Shell angezeigt wird, wo ich aufgefordert werde zu geben Passwort und wiederholen.
MySql 5.7 ist erfolgreich in meinem Rechner installiert ... ABER:
Ich möchte es bei "Vagrant up" installiert werden, das ist, warum ich Vagrantfile mit geändert:
config.vm.provision :shell, path: "bootstrap.sh"
In Bootstrap .sh i hinzugefügt Inhalt:
wget http://dev.mysql.com/get/mysql-apt-config_0.7.3-1_all.deb
sudo dpkg -i mysql-apt-config_0.7.3-1_all.deb
sudo apt-get update
sudo apt-get install -y mysql-server
Das komplett versagt ... in der Konsole i lesen kann mySQL 5.5 und ihre Abhängigkeiten zu konfigurieren versucht.
Aber warum?
Wenn jemand mit diesem Problem helfen könnte, wäre ich wirklich dankbar.
Danke und Grüße!
UPDATE Fehlermeldung
==> default: There are no enabled repos.
==> default: Run "yum repolist all" to see the repos you have.
==> default: You can enable repos with yum-config-manager --enable <repo>
==> default: sudo: yum-config-manager: command not found
==> default: There are no enabled repos.
==> default: Run "yum repolist all" to see the repos you have.
==> default: You can enable repos with yum-config-manager --enable <repo>
==> default: mysqld: unrecognized service
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.
Können Sie bitte vagrant Box ubuntu Version zur Verfügung stellen? – Jordon
ist ist ubuntu/trusty64 (virtualbox, 20160714.0.0) –