Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. INSTALLING MYSQL ON A LOCAL MACHINE MAC
  2. 1. Open up terminal (Command + Spacebar then type in terminal)
  3.  
  4. 2. Install Homebrew run the script below in the terminal
  5. $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  6.  
  7. 3. Install MYSQL by running the command below in terminal
  8. brew install mysql
  9.  
  10. 4. Run the following commands one at a time after installing mysql
  11. brew tap homebrew/services
  12.  
  13. brew services start mysql
  14.  
  15. mysqladmin -u root password 'Password123'
  16.  
  17. 5. Once all these commands have been run download an application called "Sequal Pro" just google it should be the first option. Once you have done all this let me know.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement