gpt4 book ai didi

Laravel Homestead - 页面停止工作 ERR_ADDRESS_UNREACHABLE

转载 作者:行者123 更新时间:2023-12-05 00:52:39 56 4
gpt4 key购买 nike

把我的笔记本电脑带出家几天,在那段时间里甚至都没有打开它。回来,准备继续摆弄我的项目,但页面突然停止工作。我开始在浏览器中获取 ERR_ADDRESS_UNREACHABLE。

我已经卸载了宅基地盒子, Vagrant ,虚拟盒子,每次都重新启动,重新安装所有东西,同样的问题。

我无法 ping 192.168.10.10 地址,但我可以通过 SSH 连接到盒子没有问题。

运行 MacOS Big Sur、VirtualBox 6.1、Vagrant 2.2.18 以及任何最新的宅基地版本。真的要完全退出编程,这非常令人沮丧。我真的很感激任何帮助。谢谢

Homestead.yaml

---
ip: "192.168.10.10"
memory: 2048
cpus: 2
provider: virtualbox

authorize: ~/.ssh/id_rsa.pub

keys:
- ~/.ssh/id_rsa

folders:
- map: ~/Documents/Code
to: /home/vagrant/code

sites:
- map: homestead.test
to: /home/vagrant/code/PHP/test/public

databases:
- homestead

features:
- mysql: true
- mariadb: false
- postgresql: false
- ohmyzsh: false
- webdriver: false

services:
- enabled:
- "mysql"

Vagrant 文件

# -*- mode: ruby -*-
# vi: set ft=ruby :

require 'json'
require 'yaml'

VAGRANTFILE_API_VERSION ||= "2"
confDir = $confDir ||= File.expand_path(File.dirname(__FILE__))

homesteadYamlPath = confDir + "/Homestead.yaml"
homesteadJsonPath = confDir + "/Homestead.json"
afterScriptPath = confDir + "/after.sh"
customizationScriptPath = confDir + "/user-customizations.sh"
aliasesPath = confDir + "/aliases"

require File.expand_path(File.dirname(__FILE__) + '/scripts/homestead.rb')

Vagrant.require_version '>= 2.2.4'


Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
if File.exist? aliasesPath then
config.vm.provision "file", source: aliasesPath, destination: "/tmp/bash_aliases"
config.vm.provision "handle_aliases", type: "shell" do |s|
s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases && chown vagrant:vagrant /home/vagrant/.bash_aliases"
end
end

if File.exist? homesteadYamlPath then
settings = YAML::load(File.read(homesteadYamlPath))
elsif File.exist? homesteadJsonPath then
settings = JSON::parse(File.read(homesteadJsonPath))
else
abort "Homestead settings file not found in #{confDir}"
end

Homestead.configure(config, settings)

if File.exist? afterScriptPath then
config.vm.provision "Run after.sh", type: "shell", path: afterScriptPath, privileged: false, keep_color: true
end

if File.exist? customizationScriptPath then
config.vm.provision "Run customize script", type: "shell", path: customizationScriptPath, privileged: false, keep_color: true
end

if Vagrant.has_plugin?('vagrant-hostsupdater')
config.hostsupdater.remove_on_suspend = false
config.hostsupdater.aliases = settings['sites'].map { |site| site['map'] }
elsif Vagrant.has_plugin?('vagrant-hostmanager')
config.hostmanager.enabled = true
config.hostmanager.manage_host = true
config.hostmanager.aliases = settings['sites'].map { |site| site['map'] }
elsif Vagrant.has_plugin?('vagrant-goodhosts')
config.goodhosts.aliases = settings['sites'].map { |site| site['map'] }
end

if Vagrant.has_plugin?('vagrant-notify-forwarder')
config.notify_forwarder.enable = true
end
end

我确实尝试过设置网络 as described herehere但没有任何效果。 enter image description here

最佳答案

首先,我真的想对所有看到这里并试图提供帮助的人表示衷心的感谢。对此,我真的非常感激。 @ndberg 上面的帖子结果是答案的一半。按照上面的链接,这些是我为“解决”这个问题而采取的步骤

第 1 步:192.168.10.10 无法在 VBox 6.1.28 上运行,要么将其更改为 192.168.56.**(我使用 4 所以它的 >192.168.56.4) 并更新您的 /etc/hosts 文件以匹配 OR 什么都不做...只创建一个 /etc/vbox/networks.conf 文件并将 * 192.168.10.0/24 添加到其中。我去更新现有文件,我没有做后者。

你还没有完成

现在的问题是最新 Monterey OS 上的 Vagrant

第二步:打开 Vagrantfile 并添加

config.vm.provider "virtualbox" do |v|
v.gui = true
end

在 Homestead 附带的默认 Vagrantfile 中,我在第一个 if 语句之后添加了我的。这将在启动时打开 VM 窗口,您需要最小化/关闭该窗口。我猜我们正在等待 Vagrant 的更新来解决这个问题

它现在可以工作了

随之而来的是我的 VirtualBox 之旅的一些可靠的结论。多年来,我花费了无数个小时来调试使用 VirtualBoxes 带来的各种问题。是时候尝试使用 docker 容器了。

再次感谢大家

关于Laravel Homestead - 页面停止工作 ERR_ADDRESS_UNREACHABLE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69731953/

56 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com