Quick Tip: Get a Homestead Vagrant VM Up and Running

Share this article

This quick tip will help you get up and running with a brand new Homestead Improved Vagrant VM.

  • to find out about Vagrant and why you should use it, see this post.
  • Homestead Improved is based on Homestead, but has the added benefit of not forcing you to deal with SSH keys, doesn’t get installed globally, is more cross-platform friendly, and comes with a helper script to auto-configure the shared folders.
  • I recommend creating a new Homestead Improved VM for every new project, and this tutorial will follow such a practice.

Prerequisites

You need:

The tutorial assumes you’ll be using a bash-like terminal; Git Bash if on Windows (comes with Git Tools).

Getting Started

The following 3 commands are all that’s necessary for starting a new Homestead Improved VM instance on any operating system (obviously, replace my_project with your desired folder name):

git clone https://github.com/swader/homestead_improved my_project
cd my_project; mkdir -p Project/public
bin/folderfix.sh # this is optional!

The first two clone the project and enter the newly created folder.

The third one executes the folderfix script which shares the project’s folder with the Code folder inside the VM. That means you can edit files inside the project folder (my_project) and they’ll be reflected inside the VM, and vice versa. This allows you to use your main computer’s text editor / IDE to edit the files of a project inside the VM. You can also do this manually by editing the folders field in Homestead.yaml.

Add New Sites

There are two steps to adding every new site into a Homestead VM.

Step 1: Set up etc/hosts

etc/hosts is a file present on every operating system. On Windows, it’s in C:/Windows/System32/drivers/etc/, on OS X and Linux it’s in /etc/hosts. Edit it as an administrator (one easy way to do this is to run a text editor like Sublime Text as Administrator) and add in an entry like this for every application you intend to develop:

192.168.10.10 homestead.app

Replace homestead.app with your desired domain name, or just add in multiple domain names. For example, I have this in my own hosts file:

192.168.10.10 homestead.app
192.168.10.10 test1.app
192.168.10.10 test2.app
192.168.10.10 test3.app

This means I can access each of these domains in the browser via http://homestead.app, or http://test1.app, etc.

Step 2:

For every domain you defined in the above step, you need to add a sites mapping. Open the file Homestead.yaml in the cloned copy of the Homestead Improved repo, and add a pair for each. The default is:

sites:
    - map: homestead.app
      to: /home/vagrant/Code/Project/public

This means http://homestead.app (if you added it to etc/hosts in the step above) will look for index.php in the folder /home/vagrant/Code/Project/public inside the VM. You can add this file while outside the VM, too, by simply creating a Project/public folder in the root of the cloned Homestead Improved VM, and adding index.php in there – this is the same as adding it inside the VM into the aforementioned location, because the folders are shared.

You add new sites by adding new map/to pairs (as many as you wish):

sites:
    - map: homestead.app
      to: /home/vagrant/Code/Project/public
    - map: test.app
      to: /home/vagrant/Code/test

Booting Up and SSHing

Once all the sites have been added, boot the VM with:

vagrant up

Go inside the VM with:

vagrant ssh

Once inside, you can use the VM as if it were a regular production or development linux server.

Ports and Blackfire

Homestead comes with Blackfire pre-installed. It’s a very powerful profiler for PHP apps which inspects code into great detail and draws complexity graphs which help you speed up your apps. If you have an account, uncomment the blackfire lines in Homestead.yaml and put your data in there.

If you want to open additional ports, like for example port 5000 for Heroku, uncomment the ports part of Homestead.yaml and add in the values, like so:

ports:
    - send: 5000
      to: 5000

Database Access

Homestead comes with MySQL pre-installed. Its user is homestead and its password is secret. To connect to it from the outside operating system (Homestead does not have PhpMyAdmin installed), use a tool like Sequel Pro or the MySQL Workbench and specify the following parameters:

  • server / port: 192.168.10.10 / 3306 or 127.0.0.1 / 33060
  • user: homestead
  • pass: secret

The default homestead database should show up when you connect.

Conclusion

You should now be able to quickly set up a new VM instance for every new app you intend to build. This will allow you to seamlessly follow along with all our tutorials. Please let me know in the comments below if any of the above steps are unclear or could/should be simplified.

Common Problems

No input file specified

This means that the server in the VM cannot find the index.php file in the folder you specified under the sites block in the Homestead.yaml file. Often, this is because you added a new site when the VM was already provisioned. To fix this, exit the VM if you’re inside it, and run vagrant provision.

If this doesn’t help, it means you have a wrong mapping in the sites block, so double check to make sure there are no typos and that the folder inside the VM really exists.

Alternatively, if you’re working on a Symfony2 app, Symfony2 by default uses the web folder instead of public to host index.php. That’s why Nginx cannot find the file inside the VM. To automatically get around this problem, in Homestead.yaml under sites specify an additional value: type, like so:

sites:
    - map: homestead.app
      to: /home/vagrant/Code/Project/public
      type: symfony

This will automatically use a different serving script.

Frequently Asked Questions about Laravel Homestead Setup

What are the prerequisites for installing Laravel Homestead?

Before you start installing Laravel Homestead, you need to have VirtualBox or VMWare, and Vagrant installed on your system. These software are necessary to create and manage the virtual machine where Homestead will run. Also, you need to have Git installed to clone the Homestead repository from GitHub. Lastly, you should have a basic understanding of Laravel, PHP, and command line operations.

How do I install Laravel Homestead on Windows?

The installation process of Laravel Homestead on Windows is quite straightforward. First, you need to install VirtualBox or VMWare, and Vagrant. Then, you can clone the Homestead repository from GitHub using Git Bash. After that, you need to initialize the Homestead environment and configure the Homestead.yaml file. Finally, you can run the ‘vagrant up’ command to start the Homestead environment.

I’m getting a ‘No input file specified’ error. What should I do?

This error usually occurs when the server is unable to find the requested file. Check your Homestead.yaml file and ensure that the paths to your projects are correct. Also, make sure that your ‘sites’ and ‘folders’ mappings match. If the problem persists, try destroying and recreating the Vagrant box.

How can I add multiple sites to my Homestead environment?

You can add multiple sites to your Homestead environment by editing the Homestead.yaml file. Under the ‘sites’ section, you can add as many sites as you want. Each site should have a map (the domain you want to use in your browser) and a ‘to’ (the path to the public directory of your project).

How do I update Laravel Homestead?

To update Laravel Homestead, you need to navigate to your Homestead directory and run the ‘git pull origin master’ command. After that, you should run the ‘vagrant box update’ command. Remember to backup your Homestead.yaml file before updating, as the update process might overwrite your configurations.

How can I troubleshoot common Laravel Homestead issues?

Common Laravel Homestead issues can be troubleshooted by checking the Vagrant and Homestead logs, ensuring that the paths in the Homestead.yaml file are correct, and making sure that the necessary software (VirtualBox, Vagrant, Git) are installed and up-to-date. If all else fails, you can destroy and recreate the Vagrant box.

How do I connect to the Homestead database?

You can connect to the Homestead database using a database management tool like Sequel Pro or MySQL Workbench. The default credentials are: host: 127.0.0.1, database: homestead, username: homestead, password: secret. Make sure to connect via SSH with the following credentials: SSH Host: 192.168.10.10, SSH User: vagrant, SSH Key: ~/.homestead/.vagrant/machines/default/virtualbox/private_key.

How do I use Laravel Homestead with WordPress?

Laravel Homestead can be used with WordPress by creating a new site in the Homestead.yaml file and pointing it to the public directory of your WordPress installation. You also need to create a new database for WordPress in the Homestead environment.

How do I uninstall Laravel Homestead?

To uninstall Laravel Homestead, you need to destroy the Vagrant box by running the ‘vagrant destroy’ command. Then, you can delete the Homestead directory. Remember to backup any important data before uninstalling.

Can I use Laravel Homestead for other PHP projects?

Yes, Laravel Homestead is not limited to Laravel projects. You can use it for any PHP projects. Just add a new site in the Homestead.yaml file and point it to the public directory of your project.

Bruno SkvorcBruno Skvorc
View Author

Bruno is a blockchain developer and technical educator at the Web3 Foundation, the foundation that's building the next generation of the free people's internet. He runs two newsletters you should subscribe to if you're interested in Web3.0: Dot Leap covers ecosystem and tech development of Web3, and NFT Review covers the evolution of the non-fungible token (digital collectibles) ecosystem inside this emerging new web. His current passion project is RMRK.app, the most advanced NFT system in the world, which allows NFTs to own other NFTs, NFTs to react to emotion, NFTs to be governed democratically, and NFTs to be multiple things at once.

homesteadlaravelquick-tipvagrantvirtual machineVM
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week