Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Stopping a vagrant server (Laravel)

I'm just getting through the Laravel setup and I am wondering how to stop a Vagrant server after its been started. I do the vagrant up command and work with that server but I notice several days later that the Vagrant box is still using a lot of memory and CPU in my Mac's process list. What is the best way to stop it once I am done with my lessons for the day?

2 Answers

Hi Aaron,

You can stop vagrant boxes by running the below command.

vagrant halt

Thanks!