mysql: comando non trovato [duplicato]

1

Come utilizzo MySQL dalla CLI? Quando uso il terminale, ottengo:

Darrens-MacBook-Pro:~ thufir$ 
Darrens-MacBook-Pro:~ thufir$ mysql
-bash: mysql: command not found
Darrens-MacBook-Pro:~ thufir$ 

Come puoi vedere, MySQL è installato e funzionante:

questo sistema:

System Software Overview:

  System Version:   OS X 10.10.2 (14C1510)
  Kernel Version:   Darwin 14.1.0
  Boot Volume:  Mac OSx
  Boot Mode:    Normal
  Computer Name:    A MacBook Pro
  User Name:    thufir (thufir)
  Secure Virtual Memory:    Enabled
  Time since boot:  2:08
    
posta Thufir 23.03.2015 - 00:04
fonte

1 risposta

3

L'installer Oracle per MySQL mette il mysql binario in /usr/local/mysql/bin . O devi chiamarlo con il percorso completo:

/usr/local/mysql/bin/mysql

Oppure metti /usr/local/mysql/bin nel tuo PATH aggiungendo quanto segue alla fine del tuo ~/.bash_profile :

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

E poi ricarica la tua shell.

Vedi la mia risposta a questa domanda per il motivo per cui penso che dovresti installare queste cose con Homebrew invece di dmg- installatori basati. In definitiva, ti consente di gestire ciò che è in PATH con meno problemi.

    
risposta data 23.03.2015 - 00:12
fonte

Leggi altre domande sui tag