vagrant学习笔记

2020-07-12  本文已影响0人  xlgao

windows下vagrant使用

vagrant环境搭建

  1. 安装virtualbox: https://www.virtualbox.org/

  2. 安装vagrant:http://www.vagrantup.com/

  3. vagrang安装到C盘, 如果vagrant安装到其他盘需要配置path环境变量, 具体方法如下:
    右击我的电脑--> 属性--> 高级系统设置-->环境变量-->
    Administartor的用户环境变量,选中path-->点击编辑-->新建-->找到vagrant的安装目录冰选择bin目录-->确定

  4. 下载vagrant镜像,vagant镜像下载地址:
    vagrant镜像的下载建议创建iso目录,并将镜像下载到对应的目录,目录名称为自定义.

    https://app.vagrantup.com/boxes/search

vagrant创建虚拟机流程

  1. vagrant创建虚拟机的流程如下:
[root@localhost ~]# vagrant box add centos [url]
[root@localhost ~]# vagrant init centos
[root@localhost ~]# vagrant up
#注意vagrant up的输出,当vagrant ssh不可用时,可以使用ssh登录 ssh -p 2201 root@127.0.0.1 默认密码为vagrant.
    default: SSH address: 127.0.0.1:2201
# 并且在centos6系统中需要修改ssh配置才能使用ssh登录:
PasswordAuthentication yes

[root@localhost ~]# vagrant ssh #[vagrant ssh暂时未测试成功,我目前使用的是类似xshell这种工具ssh连接]
[root@localhost ~]# vagrant halt
  1. 下边以centos镜像为例,创建虚拟机流程如下:
    目录结构:
[root@localhost ~]# mdkir centos1
[root@localhost ~]# tree
+--- centos1
+--- iso
|   +--- vagrant-centos-7.2.box
[root@localhost ~]# cd centos1
[root@localhost ~]# vagrant box add centos1 ../iso/vagrant-centos-7.2.box
[root@localhost ~]# vagrant init centos1
[root@localhost ~]# vagrant up
[root@localhost ~]# vagrant ssh
[root@localhost ~]# vagrant halt
上一篇下一篇

猜你喜欢

热点阅读