Vagrant工具的安装

                                  Vagrant工具的安装

                                              作者:尹正杰

版权声明:原创作品,谢绝转载!否则将追究法律责任。

  这篇博客源于我的北京一位好友:崔佳。在此,为了感激崔佳的帮助,特意写下这篇博客。希望对一些开发的小伙伴有些帮助。

  不怕大家笑话啊,再次之前,我对Vagrant一无所知,一般我在MAC上或是在WINDOWS操作系统上开发的代码想呀偶在linux上测试,我会用远程工具CRT进行远程,然后把代码贴上去进行测试。其实也就是2分钟就可以搞定的事情。但是还有一种更简单的方法去实现,再次特意跟大家分享一下。

  都说*是运维的基本功,那么问题来了,你会*么?有的人是花钱买VPN进行*,有的人是用免费的工具进行*,我在网上看到有大牛给出了教程实现浏览器的*,我觉得蛮靠谱的,分享给大家,可参考该网有的教程进行*哟!链接:https://laod.cn/hosts/2017-google-hosts.html。好了,接下来我们一起来详解一下Vagrant的安装步骤吧~

一.安装VirtualBox;
1.下载VirtualBox程序;
  下载地址:https://www.virtualbox.org/wiki/Downloads
  由于我们是windows操作系统,所以我们只需要下载对应的版本即可;
              Vagrant工具的安装

2.安装VirtualBox程序;

  安装步骤我就省略了,直接点下一步就好,整个过程一直点下一步,提示什么就点什么就OK。

二.下载Vagrant工具
  下载你相应的版本,链接:https://www.vagrantup.com/downloads.html
                Vagrant工具的安装

二.安装Vagrant软件;

  运行你刚刚下载的文件,对了,我刚刚给大家推荐的*是通过修改DNS实现的,并不能提升你的下载效率,只是让你可以*了而已。想要*还是得需要专门的下载工具。

1.点击下一步进行安装;

          Vagrant工具的安装

2.点击同意授权;

          Vagrant工具的安装

3.配置安装路径;

          Vagrant工具的安装

4.点击安装;

          Vagrant工具的安装

5.点击完成安装;

              Vagrant工具的安装

6.需要重启操作系统(重启之前请确认是否有重要数据未保存。);

              Vagrant工具的安装

三.安装ssh服务;

1.下载ssh安装程序,地址:https://www.mls-software.com/opensshd.html

  Vagrant工具的安装

2.点击安装;

              Vagrant工具的安装

3.点击下一步;

              Vagrant工具的安装

4.点击同意并进行下一步;

              Vagrant工具的安装

5.默认设置,点击下一步;

              Vagrant工具的安装

6.指定安装路径;

              Vagrant工具的安装

7.设置工作目录;

              Vagrant工具的安装

8.默认设置;(如果你不是2003的windows server就没有必要选择下面的特权分离)

              Vagrant工具的安装

9.默认端口;

              Vagrant工具的安装

10.默认即可;

              Vagrant工具的安装

11.点击下一步;

              Vagrant工具的安装

12.点击完成,完成安装;

              Vagrant工具的安装

13.测试是否安装成功;

              Vagrant工具的安装

四.添加环境;

1.添加镜像;(只是把镜像从官网下载到本地而已);

  命令行中执行:C:\Users\Administrator>vagrant box add ubuntu/trusty64

        Vagrant工具的安装

2.初始化环境;(在哪个目录下初始化就会生成一个对应的“Vagrantfile”配置文件)

  命令行执行:D:\>cd D:\VirtualBox\Vagrant_tools

            Vagrant工具的安装

  命令行中执行:C:\Users\Administrator>vagrant init ubuntu/trusty64

                Vagrant工具的安装

3.配置虚拟机;

  Vagrant 初始化成功后,会在初始化的目录里生成一个 Vagrantfile 的配置文件,可以修改配置文件进行个性化的定制。

  用"Notepad++"编辑“Vagrantfile”文件,修改你自己想要的参数修改的参数。

4.启动环境;

  命令行中执行:C:\Users\Administrator>vagrant up

            Vagrant工具的安装

  启动成功后,会在启动的目录中生成一个“.vagrant”的目录,里面存放着虚拟机的信息,与此同时你也可以切换到VirtualBox查看会多出来一台虚拟机,就是就说明你启动成功了,在启动的过程中,命令行会 出输出一些列的参数,这些参数你可以用windows的ssh去远程这台启动的虚拟机。

                Vagrant工具的安装

五.远程启动的虚拟机;

  我们在启动的过程中会看到登录的账户密码;这个时候我们只需要在命令行中远程登录即可。

  命令行输入:D:\VirtualBox\Vagrant_tools>ssh -p 2222 -l vagrant 127.0.0.1

                Vagrant工具的安装

  这个时候我们需要可以测试一些命令,看是否真的是我们的ubantu系统。

                Vagrant工具的安装

  测试网络的是否畅通。

            Vagrant工具的安装

六.在虚拟机安装Golang环境。

  还记得我们刚刚配置的IP生效了吗?这个时候我们可以在局域网任何一台终端进行远程,然后我们可以进行上传或是下载文件等等,当然安装环境也是随你啦~哈哈~

  安装具体步骤请参考:http://www.cnblogs.com/yinzhengjie/p/6482675.html

              Vagrant工具的安装

七.关联目录

  其实就是虚拟环境中liunx目录和windows目录的一个映射关系,即你在windows创建一个目录,这个被关联的目录在linux操作系统上也会出现。

                  Vagrant工具的安装

我们可以举个例子来说明一下:

              先看一下windows系统的路径:

              Vagrant工具的安装

              再看虚拟机的环境:

              Vagrant工具的安装

              将windows的文件在虚拟机中运行测试:

              Vagrant工具的安装

            该Vargrant目前pycharm已经支持了,但是goland目前版本还没有完善该功能,不过不就得将来或许会加上这个功能。

            Vagrant工具的安装

再附上Vagrantfile文件的内容一份,如果感兴趣的可以百度一下,进行深入学习一下。我这里就只介绍安装和基本的使用,其他功能我也用不着也没有打算在做深一步研究,哈哈~

 # -*- mode: ruby -*-
# vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com. # Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "ubuntu/trusty64" # Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false # Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
# config.vm.network "forwarded_port", guest: 80, host: 8080 # Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" # Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
config.vm.network "private_network", ip: "172.16.30.1"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network" # Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data" # Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options. # Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
end
上一篇:zookeeper应用场景-java


下一篇:C# System.IO.FileMode