vagrant
照物华
一切过往,皆为序章
展开
-
vagrant共享的目录无法同步
环境Vagrant 2.2.7virtual box 1.0.18。问题vagrant 启动之后,发现和宿主机的共享目录无法同步,共享目录的修改只有在重启虚拟机之后,修改才能同步显示。解决通过Vagrantfile重新设置共享目录。config.vm.synced_folder "./", "/share"...原创 2020-04-12 18:45:41 · 1238 阅读 · 2 评论 -
vagrant was unable to mount: unknown filesystem type vboxsf
问题启动 vagrant 虚拟机的时候出现一下错误。Vagrant was unable to mount VirtualBox shared folders. This is usuallybecause the filesystem "vboxsf" is not available. This filesystem ismade available via the VirtualBo...原创 2019-11-04 03:51:16 · 202 阅读 · 0 评论 -
解决Vagrant cannot forward the specified ports on this VM
Vagrant cannot forward the specified ports on this VM, since theywould collide with some other application that is already listeningon these ports. The forwarded port to 3300 is already in useon the host machine.To fix this, modify your current projec原创 2020-05-30 17:24:18 · 760 阅读 · 0 评论 -
使用Vagrant快速搭建centos虚拟机
Vagrant 是一个管理虚拟机环境的工具 。它能帮助开发人员迅速的构建一个开发环境,帮助测试人员构建测试环境。Vagrant 底层支持VirtualBox、VMware甚至AWS作为虚拟机系统,这里使用VirtualBox来进行说明,所以第一步需要先安裝Vagrant和VirtualBox。安装VirtualBoxVirtualBox是Oracle开源的虚拟化系统,到 VirtualB...原创 2019-11-03 13:59:20 · 543 阅读 · 0 评论 -
解决vagrant中的centos主机无法远程连接的问题
vagrant 完成虚拟机搭建,并配置好网络后,直接通过`ssh vagrant@192.168.1.104 -p 22`(测试使用自己配置的`ip`)登录虚拟机,```Permission denied (publickey,gssapi-keyex,gssapi-with-mic).````xshell`等工具也连接不上,花了点时间研究了一下,总结了两种可以解决无法远程连接的方法。原创 2019-11-03 14:49:17 · 2939 阅读 · 0 评论