본문 바로가기

개발관련

macos에서 mysql path 추가하여 어느디렉터리 위치에서든 mysql 실행할 수 있도록 설정하는 방법

반응형

참고 : https://apple.stackexchange.com/questions/177856/mysql-command-not-found


맥에서 터미널을 켠 후 

$ sudo vi ~/.bash_profile  # 명령어 입력

하단의 코드를 추가로 입력

#Setting PATH for Mysql

PATH="/usr/local/mysql/bin:$"

export PATH


그리고 터미널을 종료한 뒤 다시 들어가서 mysql -uroot -p 명령어를 쳤을 때 

-bash: mysql: command not found 에러가 나지 않는다면 성공!




반응형