Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. Ruby
  2. brew install rbenv ruby-build
  3. echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
  4. source ~/.bash_profile
  5. rbenv install -l
  6. rbenv install 2.3.1
  7. rbenv global 2.3.1
  8. rbenv local 2.3.1
  9. gem install bundler
  10.  
  11. PostgreSQL
  12. brew install postgresql
  13. ln -sfv /usr/local/Cellar/postgresql/*/*.plist ~/Library/LaunchAgents/
  14. launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
  15.  
  16. Redis
  17. brew install redis
  18. ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
  19. launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
  20.  
  21. MySQL
  22. brew install mysql
  23. ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
  24. launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
  25.  
  26. MongoDB
  27. brew install mongodb
  28. ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
  29. launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement