2

ホームステッドの仕組みを誤解していると思います。プロジェクトごとのインストールが必要ですが、奇妙なことが起こりました。私の手順は次のとおりです。

  1. vagrantbox (vagrant up) を実行します。データベース ホームステッドが作成されます。稼働中。
  2. vagrantbox を停止する (vagrant halt)
  3. ボックスを VirtualBox クライアントから削除します。
  4. vagrant up を再度実行します。もちろん、ボックスをダウンロードする必要があります。
  5. 「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
4

1 に答える 1

1

マシンに ssh 接続した場合、次のスクリプトを手動で実行して移行スクリプトを実行する必要があることがわかりました。

php 職人の移行

ホームステッドのインストール スクリプトがこの移行スクリプトを取得しない理由がわかりません。

于 2016-05-18T01:29:39.177 に答える