¿Cómo iniciar el inicio automático de mysql? Obtención de "Ruta tuvo mala propiedad / permisos"

2

¿Cómo puedo iniciar automáticamente mysqld

Intenté seguir enlace pero no ayudó

Parece que tengo un problema de propiedad / permiso, posiblemente relacionado con el hecho de haber instalado mysql en esta máquina para una cuenta de usuario diferente.

Desinstalé y reinstalé, pero aún obtengo

$ brew install mysql
==> Downloading https://homebrew.bintray.com/bottles/mysql-5.6.27.yosemite.bottle.tar.gz
Already downloaded: /Library/Caches/Homebrew/mysql-5.6.27.yosemite.bottle.tar.gz
==> Pouring mysql-5.6.27.yosemite.bottle.tar.gz
==> Caveats
A "/etc/my.cnf" from another install may interfere with a Homebrew-built
server starting up correctly.

To connect:
    mysql -uroot

To have launchd start mysql at login:
  ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
Then to load mysql now:
  launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
Or, if you don't want/need launchctl, you can just run:
  mysql.server start

WARNING: launchctl will fail when run under tmux.
==> Summary
                    
pregunta Michael Durrant 07.11.2015 - 23:07

1 respuesta

1

Parece que agregar la ruta a mi .bashrc fue probablemente la solución.

export PATH=${PATH}:/usr/local/Cellar/mysql/5.6.27/bin/mysqld

También necesito salir de una sesión de mysql actual que estaba abierta

    
respondido por el Michael Durrant 07.11.2015 - 23:34

Lea otras preguntas en las etiquetas