Homesteadのvagrant upでエラーが出る

実現したいこと

Laravel Homesteadで環境構築をしたいです。

発生している問題・分からないこと

vagrant upでエラーが発生します。
環境は以下です。

チップ Apple M1
macOS 13.3.1(22E261)

プロバイダー Parallels

エラーメッセージ

error

1homestead: E: Repository 'http://ppa.launchpad.net/rabbitmq/rabbitmq-erlang/ubuntu focal InRelease' changed its 'Label' value from 'Modern Erlang packages for Ubuntu and Debian' to 'Latest (26.x) Erlang packages for Ubuntu and Debian' 2The SSH command responded with a non-zero exit status. Vagrant 3assumes that this means the command failed. The output for this command 4should be in the log above. Please read the output to determine what 5went wrong.

該当のソースコード

Homestead.yaml

1--- 2ip: "192.168.56.56" 3memory: 2048 4cpus: 2 5provider: parallels 6box: yodoware/homestead-arm64 7version: '>= 11.3.0' 8 9authorize: ~/.ssh/id_rsa.pub 10 11keys: 12 - ~/.ssh/id_rsa 13 14folders: 15 - map: /users/******/test2/code 16 to: /home/vagrant/code 17 18sites: 19 - map: homestead.test 20 to: /home/vagrant/code/src/public 21 php: "7.4" 22 23databases: 24 - homestead 25 26features: 27 - mysql: true 28 - mariadb: false 29 - postgresql: false 30 - ohmyzsh: false 31 - webdriver: false 32 33services: 34 - enabled: 35 - "mysql" 36# - disabled: 37# - "postgresql@11-main" 38 39#ports: 40# - send: 33060 # MySQL/MariaDB 41# to: 3306 42# - send: 4040 43# to: 4040 44# - send: 54320 # PostgreSQL 45# to: 5432 46# - send: 8025 # Mailhog 47# to: 8025 48# - send: 9600 49# to: 9600 50# - send: 27017 51# to: 27017 52

試したこと・調べたこと

上記の詳細・結果

https://qiita.com/zacky1972/items/c94baef2ee9379c21fa1

vagrant destroyの後に上記の記事を参考にErlangをインストールし、再度vagrant upしましたが同じエラーが出続けています。

補足

特になし

コメントを投稿

0 コメント