Skip to content

Instantly share code, notes, and snippets.

@renatoapcosta
Last active September 21, 2019 13:19
Show Gist options
  • Save renatoapcosta/8734ed50e98254b19956271c34f8d824 to your computer and use it in GitHub Desktop.
Save renatoapcosta/8734ed50e98254b19956271c34f8d824 to your computer and use it in GitHub Desktop.
MySQL com Brew

MySQL com Brew

Sumário MySQL

Install MySQL no mac com brew

Instalando o brew

Versão do mysql no brew

brew info mysql

Instalando mysql

brew install mysql

Instalando brew services

brew tap homebrew/services

Instalando mysql como services

brew services start mysql

Verificando services

brew services list

Verificando a versão do mysql instalado

mysql -V

Mudando a senha root

mysqladmin -u root password 'yourpassword'

Iniciando mysql

brew services start mysql

Parando mysql

brew services stop mysql

Criando link simbolico

ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist

Sobre o MySql

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment