刚开始做开发的时候的都是把开发环境 配置在 自己的电脑上,随着后面我们接触的东西越来越多,慢慢的电脑上都是各种环境了,php,java,python,nodejs等等,非常麻烦,并且经常由于某种原因就把电脑重装了,ORZ,所以环境都要重来。所以打造一个属于自己并且可以移动的环境是非常重要的。
vagrant就是一款构建虚拟开发环境的工具,支持window,linux,mac,总有一款适合你。并且vagrant 可以把配置好的环境打包成一个box,分享给其他人直接使用,非常方便
系统要求:(本人mac系统)
机器支持虚拟化,有时候需要调整bios开启cpu虚拟化。
第一步:安装virtualbox
具体安装包请直接从官网下载:https://www.virtualbox.org/wiki/Downloads
第二步: 安装 vagrant 具体安装包请直接从官网下载:
$ vagrant -v
Vagrant 1.6.3
第三步:vagrant 基本命令
官网文档:https://www.vagrantup.com/docs/getting-started/index.html
1.vagrant init 初始化vagrantfile
2.vagrant add box 添加box,自动帮你生成vagrantfile
3.vagrant halt 关闭虚拟机
4.vagrant destroy 销毁虚拟机
5.vagrant ssh 连接虚拟机
6.vagrant reload 重新加载vagarntfile文件
7.vagrant suspend 暂时挂起虚拟机
8.vagrant status 查看虚拟机运行状态
第四步:示例演示
4.1 下载box
下面是ubuntu的两个官方地址:
Ubuntu precise 32 VirtualBox http://files.vagrantup.com/precise32.box
Ubuntu precise 64 VirtualBox http://files.vagrantup.com/precise64.box
如果你要其他系统的镜像,可以来这里下载:http://www.vagrantbox.es/
1.$ mkdir -p ~/vagrant/boxes
2.$ cd ~/vagrant/boxes && wget
3.$ vagrant box add ubuntu64 precise64.box //添加box
4.2 新建一个lnmp(linux + nginx + mysql + php-fpm)虚拟机
1.$ cd ~/vagrant && mkdir lnmp
2.$ cd lnmp
3.$ vagrant init ubuntu64 //初始化
4.$ vagrant up //启动虚拟机lnmp
5.$ vagrant ssh //进入虚拟机lnmp
这个虚拟机就新建好了,是不是很快!!熟悉linux的就可以修改源,安装软件了
1.$ sudo apt-get install keychain nginx mysql-server mysql-client php5-cli php5-fpm php5-gd php5-mysql
第五步:个性化配置Vagrantfile
在进行 vagrant init 之后我们会发现对应的目录下有个Vagrantfile文件,直接上截图
第六步:导出自己的box
1.$ cd ~/VirtualBox\ VMs/phponubuntu64
2.$ vagrant package --output lamp5_5onubuntu64.box --base phponubuntu64
注意事项
问题一)使用 Apache/Nginx 时会出现诸如图片修改后但页面刷新仍然是旧文件的情况,是由于静态文件缓存造成的。需要对虚拟机里的 Apache/Nginx 配置文件进行修改:
#nginx配置
sendfile off
#apache 配置
EnableSendFile off
问题二:启动多个虚拟机提示错误“2222 端口 in use”
解决办法:(参考文章:Vagrant SSH errors with multiple VMs: Port 2222 in use )
config.vm.network "forwarded_port", guest: 22, host: 2220 ,id: 'ssh'
问题三:如果遇到 php 代码也感觉被缓存起来了,请关闭apc,opcode(从php5.5及以后版本默认开启opcode)
问题四:config.vm.boot_timeout
1.Timed out while waiting for the machine to boot. This means that
2.Vagrant was unable to communicate with the guest machine within
3.the configured ("config.vm.boot_timeout" value) time period.
4.If you look above, you should be able to see the error(s) that
5.Vagrant had when attempting to connect to the machine. These errors
6.are usually good hints as to what may be wrong.
7.If you're using a custom box, make sure that networking is properly
8.working and you're able to connect to the machine. It is a common
9.problem that networking isn't setup properly in these boxes.
10.Verify that authentication configurations are also setup properly,
11.as well.
12.If the box appears to be booting properly, you may want to increase
13.the timeout ("config.vm.boot_timeout") value.
类似如上的错误日志,解决方案是,设置=>网络=>高级=>选中 cable connected
问题五:GUI模式waiting for network configuration
1.waiting for network configuration
2.waiting an additional 60 seconds for network configuration
问题六:Warning: Authentication failure. Retrying...
那么把 https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub 公钥放到authorized_keys 文件中,重新vagrant reload