2021-05-12 14:32:11
Vagrant基本命令詳解
2020-06-16 17:29:48
Vagrant基本命令詳解
1、檢查當前的版本
# vagrant --version
Vagrant 1.8.1
2、列出所有的box
# vagrant box list
CentOS/7 (virtualbox, 1603.01)
Ubuntu/trusty64 (virtualbox, 20160406.0.0)
3、新增一個box
# vagrant box add ADDRESS
1)box名簡寫
Vagrant可以從這裡https://atlas.hashicorp.com/boxes/search 下載各種Vagrant映像檔案。
# vagrant box add ubuntu/trusty64
2)通過指定的URL新增遠端box
# vagrant box add https://atlas.hashicorp.com/ubuntu/boxes/trusty64
3)新增一個本地box
# vagrant box add CentOS7.1 file:///D:/Work/VagrantBoxes/CentOS-7.1.1503-x86_64-netboot.box
4、初始化一個新VM
# vagrant init ubuntu/trustry64
此命令會在當前目錄建立一個名為Vagrantfile的組態檔,內容大致如下:
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
end
當在此目錄啟動Vagrant後,Vagrant會從網際網路下載“ubuntu/trusty64”這個box到本地,並使用它作為VM的映像。
要搜尋可用的box,檢視這裡: https://atlas.hashicorp.com/boxes
5、啟動VM
# vagrant up
如果我們想啟動任意VM,首先進入有Vagrantfile組態檔的目錄,然後執行上面的命令。控制台的輸出通常如下:
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'ubuntu/trusty64-juju' could not be found. Attempting to find a
nd install...
default: Box Provider: virtualbox
default: Box Version: >= 0
==> default: Loading metadata for box 'ubuntu/trusty64-juju'
default: URL: https://atlas.hashicorp.com/ubuntu/trusty64-juju
==> default: Adding box 'ubuntu/trusty64-juju' (v20160707.0.1) for provider: vir
tualbox
default: Downloading: https://atlas.hashicorp.com/ubuntu/boxes/trusty64-juju
/versions/20160707.0.1/providers/virtualbox.box
==> default: Waiting for cleanup before exiting...
default: Progress: 0% (Rate: 0/s, Estimated time remaining: --:--:--):--)
6、啟用SSH登陸VM
進入Vagrantfile組態檔所在的目錄,執行以下命令:
# vagrant ssh
要注意,本機上必須先安裝SSH用戶端。
7、關閉VM
進入Vagrantfile組態檔所在的目錄,執行以下命令:
# vagrant halt
8、銷毀VM
# vagrant destory [name|id]
比如:
vagrant destroy ubuntu/trusty64
此命令會停止VM的執行,並銷毀所有建立的資源。
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-10/136403.htm
相關文章