how to start mysql under mac os x


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. If MySQL Startup Item is installed :
  2.  
  3. shell> sudo /Library/StartupItems/MySQL/MySQL start
  4. (Enter your password, if necessary)
  5. (Press Control-D or enter "exit" to exit the shell)
  6.  
  7. If MySQL Startup Item is NOT installed :
  8.  
  9. shell> cd /usr/local/mysql
  10. shell> sudo ./bin/mysqld_safe
  11. (Enter your password)
  12. (Press CTRL+Z)
  13. shell> bg
  14. (Press CTRL+D to exit the shell)

URL: http://dev.mysql.com/doc/refman/5.0/fr/mac-os-x-installation.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.