添加多个 Homestead box
介绍一下如何添加多个 homestead box。
安装 Homestead#
可以 clone 一个代码仓库
git clone https://github.com/laravel/homestead.git NewHomestead
也可以复制一份 Homestead, 重命名为 NewHomestead,进入文件夹,删除 .vagrant 文件夹。
修改配置#
- 修改文件 NewHomestead\scripts\homestead.rb 把 'homestead-7' 修改为 'homestead-new', 原则上应该不用全部改,只要改掉生成的虚拟机名称就行,这里不深究。
- 修改文件 NewHomestead\scripts\homestead.rb 把
config.vm.box_version = settings["version"] ||= ">= 1.0.0"
修改为config.vm.box_version = settings["version"] ||= ">= 0"
。 - 修改 NewHomestead\Vagrantfile,第 8 行
confDir = $confDir ||= File.expand_path("~/.homestead")
修改为confDir = $confDir ||= File.expand_path("~/.newhomestead")
。 - 修改 NewHomestead\init.bat, 第 3 行
set homesteadRoot=%HOMEDRIVE%%HOMEPATH%\.homestead
修改为set homesteadRoot=%HOMEDRIVE%%HOMEPATH%\.newhomestead
,修改完成后记得配置文件就在新的文件夹里面了。
添加 box#
cd NewHomestead
init.bat
配置 Homestead.yaml#
打开 用户名\.newhomestead\Homestead.yaml
, 配置 homestead。
- 修改 ip : ip: "192.168.10.100"
启动 vagrant#
进入 NewHomestead,启动虚拟机
vagrant up
在启动的过程中会显示转发端口被占用,会重新设定转发端口:
==> homestead-new: Setting the name of the VM: homestead-new
==> homestead-new: Fixed port collision for 80 => 8000. Now on port 2200.
==> homestead-new: Fixed port collision for 443 => 44300. Now on port 2201.
==> homestead-new: Fixed port collision for 3306 => 33060. Now on port 2202.
==> homestead-new: Fixed port collision for 5432 => 54320. Now on port 2203.
==> homestead-new: Fixed port collision for 22 => 2222. Now on port 2204.
这些转发端口是可以通过修改 homestead.rb 或者 Homestead.yaml 来自定义的,这部分就自己研究一下吧。
记住这些转发端口,比如之前 ssh 登录用的端口是 2222,现在要用 端口 2204 登录,其他的比如 mysql 端口也是一个道理。
最后看看效果#
ps: 之前有个哥们一直说搞不定,所以写了这个,写完又看到说搞定了,反正写都写了,就发出来吧。
本作品采用《CC 协议》,转载必须注明作者和本文链接
推荐文章: