Reputation: 11
I'm new to homestead and I have encountered problems while installing it I can't use
vagrant up
An error occurred while downloading the remote file. The error message, if any, is reproduced below. Please fix this error and try again. so I tried to install cloud base as I'm using Fedora 25 64 bit https://atlas.hashicorp.com/fedora/boxes/25-cloud-base and now I'm able to up my vagrant but once I try to ping my homestead.app all packets are lost and also I can't access it
I'm running xampp in case it makes any differences
here is my /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.10.10 homestead.app
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
ip: "192.168.10.10" memory: 2048 cpus: 1 provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys: - ~/.ssh/id_rsa
folders: - map: ~/projects to: /home/vagrant/projects
sites: - map: homestead.app to: /home/vagrant/projects/demo/public
databases: - demo
Upvotes: 1
Views: 1955
Reputation: 178
I suggest you to not use xampp with Homestead. Homestead comes with a full development environment including nginx server.
Install Homestead following this guide Laravel Homestead
Once installed and properly configured, run vagrant up, then vagrant ssh. Do not miss to configure your nginx server to serve your application.
Hope it helps.
Upvotes: 0