您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關CoreOS中如何安裝Vagrant的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
1 安裝最新版Oracle VM VirtualBox 4.3.18
2 安裝最新版vagrant 1.6.5
3 安裝windows版git
##安裝CoreOS ###創建安裝目錄下載vagrant配置文件 比如我在E盤創建了一個coreos文件夾,然后在git shell界面進入這個文件夾,執行:
git clone https://github.com/coreos/coreos-vagrant.git cd coreos-vagrant
###修改git clone下來的配置文件 將config.rb.sample復制一份為config.rb
將user-data.sample復制一份為user-data
修改config.rb文件內容:
$num_instances=3 #如果安裝單個coreos就寫1,如果是集群就寫大于1的數字 $update_channel='alpha' #這個是版本,可以改為stable或者beta
###安裝coreos 執行:
cd coreos-vagrant vagrant up
此時有報錯信息如下:
E:\coreos\coreos-vagrant>vagrant up
Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-02' up with 'virtualbox' provider...
Bringing machine 'core-03' up with 'virtualbox' provider...
==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and insta ll...
core-01: Box Provider: virtualbox
core-01: Box Version: >= 308.0.1
You specified a box version constraint with a direct box file path. Box version constraints only work with boxes from Vagrant Cloud or a custom box host. Please remove the version constraint and try again.
查看Vagrantfile文件內容匹配報錯有如下行:
config.vm.box_version = ">= 308.0.1"
將這一行在Vagrantfile文件里面用#注釋掉,然后重新執行vagrant up:
E:\coreos\coreos-vagrant>vagrant up
Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-02' up with 'virtualbox' provider...
Bringing machine 'core-03' up with 'virtualbox' provider...
==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and insta ll...
core-01: Box Provider: virtualbox
core-01: Box Version: >= 0
==> core-01: Loading metadata for box 'http://alpha.release.core-os.net/amd64-us r/current/coreos_production_vagrant.json'
core-01: URL: http://alpha.release.core-os.net/amd64-usr/current/coreos_prod uction_vagrant.json
==> core-01: Adding box 'coreos-alpha' (v493.0.0) for provider: virtualbox
core-01: Downloading: http://alpha.release.core-os.net/amd64-usr/493.0.0/cor eos_production_vagrant.box
此處省略N多字*********************
==> core-03: Machine booted and ready!
==> core-03: Setting hostname...
==> core-03: Configuring and enabling network interfaces...
==> core-03: Running provisioner: file...
==> core-03: Running provisioner: shell...
core-03: Running: inline script
安裝完成。
###配置連接 執行vagrant ssh, 會自動生成ssh的信息:
E:\coreos\coreos-vagrant>vagrant ssh core-01
ssh
executable not found in any directories in the %PATH% variable. Is an SSH client installed? Try installing Cygwin, MinGW or Git, all of which contain an SSH client. Or use your favorite SSH client with the following authentication information shown below:
Host: 127.0.0.1
Port: 2222
Username: core
Private key: C:/Users/Administrator/.vagrant.d/insecure_private_key
使用xshell或者secureCRT配置私鑰遠程連接
Xshell 4 (Build 0131)
Copyright (c) 2002-2014 NetSarang Computer, Inc. All rights reserved.
Type `help' to learn how to use Xshell prompt.
Xshell:>Connecting to 192.168.83.131:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.Last login: Wed Nov 12 13:16:55 2014 from 192.168.83.1
CoreOS (alpha)
core@localhost ~ $ cat /etc/os-release
NAME=CoreOS
ID=coreos
VERSION=494.0.0
VERSION_ID=494.0.0
BUILD_ID=
PRETTY_NAME="CoreOS 494.0.0"
ANSI_COLOR="1;32"
HOME_URL="https://coreos.com/"
BUG_REPORT_URL="https://github.com/coreos/bugs/issues"
查看docker版本
core@localhost ~ $ docker version Client version: 1.3.0 Client API version: 1.15 Go version (client): go1.3.2 Git commit (client): c78088f OS/Arch (client): linux/amd64 Server version: 1.3.0 Server API version: 1.15 Go version (server): go1.3.2 Git commit (server): c78088f
感謝各位的閱讀!關于“CoreOS中如何安裝Vagrant”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。