ホームステッドの仕組みを誤解していると思います。プロジェクトごとのインストールが必要ですが、奇妙なことが起こりました。私の手順は次のとおりです。
- vagrantbox (vagrant up) を実行します。データベース ホームステッドが作成されます。稼働中。
- vagrantbox を停止する (vagrant halt)
- ボックスを VirtualBox クライアントから削除します。
- vagrant up を再度実行します。もちろん、ボックスをダウンロードする必要があります。
「up」プロセス中に、次のエラーが表示されます。
createdb: データベースの作成に失敗しました: エラー: データベース "homestead" は既に存在します
それはどのように可能ですか?vagrant はホスト マシンのどこかにデータベースを作成し、それを別のインストールで再利用しますか?
私のホストは Mac OS X マシン (El Capitan) です。私はVagrantfileを生成しました
php vendor/bin/homestead make
私のVagrantfileは次のとおりです。
require 'json'
require 'yaml'
VAGRANTFILE_API_VERSION ||= "2"
confDir = $confDir ||= File.expand_path("vendor/laravel/homestead", File.dirname(__FILE__))
homesteadYamlPath = "Homestead.yaml"
homesteadJsonPath = "Homestead.json"
afterScriptPath = "after.sh"
aliasesPath = "aliases"
require File.expand_path(confDir + '/scripts/homestead.rb')
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
if File.exists? aliasesPath then
config.vm.provision "file", source: aliasesPath, destination: "~/.bash_aliases"
end
if File.exists? homesteadYamlPath then
Homestead.configure(config, YAML::load(File.read(homesteadYamlPath)))
elsif File.exists? homesteadJsonPath then
Homestead.configure(config, JSON.parse(File.read(homesteadJsonPath)))
end
if File.exists? afterScriptPath then
config.vm.provision "shell", path: afterScriptPath
end
end
そして私の Homestead.yaml
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
hostname: laraveltest
name: laraveltest
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: "/Users/jorge/Dev/laraveltest"
to: "/home/vagrant/laraveltest"
sites:
- map: homestead.app
to: "/home/vagrant/laraveltest/public"
databases:
- homestead
# blackfire:
# - id: foo
# token: bar
# client-id: foo
# client-token: bar
# ports:
# - send: 50000
# to: 5000
# - send: 7777
# to: 777
# protocol: udp