LoginSignup
_Mi__737
@_Mi__737

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

vagrant upしたときに出てくるprovisioningについて

解決したいこと

vagrant upコマンドを実行したところ以下のようなメッセージが出ました。
この状態では,まだうまく仮想マシンを起動させることができていないのでしょうか?
特に下2行,provisioningについて理解ができないので,教えていただきたいです。

発生している問題・エラー

PS C:\Users\81901\Documents\ubuntu2004> vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'ubuntu/focal64' version '20220419.0.0' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
==> default: Forwarding ports...
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Connection aborted. Retrying...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Mounting shared folders...
    default: /vagrant => C:/Users/81901/Documents/ubuntu2004
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.
0

2Answer

Comments

  1. プロビジョニングは、仮想OSへのソフトウェアのインストール処理です。gcc や python、ruby、rails、MySQL などなど、仮想環境で構築したいアプリに必要なソフトのインストールですね。
  2. @_Mi__737

    Questioner
    起動はできているようでした。
    ありがとうございます。

Comments

  1. @_Mi__737

    Questioner
    ありがとうございます。
    買って読んでみます。

Your answer might help someone💌