Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 654 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 654 Bytes

A simple vagrant configuration to create a box running redis.

Setup

  1. Install Vagrant
  2. Install VirtualBox
  3. Clone the project locally: git clone [email protected]:JasonPunyon/redishobo.git vagrant-redis
  4. Move into the project directory: cd vagrant-redis
  5. Provision the virtual machine using Vagrant: vagrant up
  6. Make sure you have the Redis CLI installed: brew install redis (Mac)
  7. Test the connection to verify everything is working: redis-cli -p 6379 (or any other cluster port)

You should now have a redis server running locally at 127.0.0.1:6379.