Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 콜미동구
- 클라우드 서비스
- 데이메이커
- 파이썬 웹크롤링
- 책
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- MySQL
- Swift
- git
- 줄거리
- JavaScript
- java
- git push
- 깃
- 클라우드 서비스 특징
- 서평
- 동구
- spring
- missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- SpringBoot
- 한줄평
- Mac
- 기록하는 동구
- 독후감
- 오류
- 에러
- Xcode
- 자바 파일업로드
- 자바스크립트
- Mapper
Archives
- Today
- Total
인생은 속도가 아니라 방향이다
[MySQL] ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 에러 본문
데이터베이스/MySQL
[MySQL] ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 에러
기록하는 동구 2020. 8. 7. 18:23반응형
Homebrew를 통해서 mysql을 설치하고 mysql을 실행시키자 마자 어김없이 날 찾아오는 에러!
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
도데체 뭐냐 넌 구글링 해보았다.
문제의 원인은 MySQL 이 설치는 되있지만 아직 실행이 안되있어서 그렇다.
mysql 서버를 실행시키는 방법을 알아보자! 방법은 2가지
첫번째, homebrew를 통해서 실행시켜보자.
$ brew services list
콘솔에 명령어를 입력해보면 mysql이 잘설치 되있음을 알수있다.
아래의 명령어로 mysql을 실행시켜 보자.
$ brew services start mysql
잘된다.
다시 꺼보자
$ brew services stop mysql
잘 꺼진다.
두번째 방법, 콘솔에다 명령어를 다르게 적어본다
$ mysql.server [start or stop]
그런데 실행후에 brew services list 하면 stopped 되있는걸 볼수있다. mysql.server 명령어로 실행시킨 mysql 이 명령어로 확인할수 없고
$ netstat -na | grep 3306
이걸로 확인해주면 된다. Mysql이 사용하는 포트는 3306이므로 파이프를 이용해 포트를 알려주면 쉽게 확인이 가능합니다.
이상 mysql server 실행방법이였습니당!
참고자료(reference) :
https://stackoverflow.com/questions/15450091/error-2002-hy000-cant-connect-to-local-mysql-server-through-socket-tmp-mys
https://freehoon.tistory.com/140
반응형
'데이터베이스 > MySQL' 카테고리의 다른 글
[MySQL] UNSIGNED 의미, 언제 사용해야할까? (1) | 2020.02.04 |
---|---|
[MySQL] MySQL 8.0 server version reserved words 오류 (테이블명) (0) | 2020.01.30 |
Comments