728x90
Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
: 이건 mysql 서버가 실행되지 않은 것이다.
해결 방법은 다음 중 하나.
service mysqld start
또는
/usr/local/mysql/bin/mysqld_safe --user=mysql &
(yum 으로 설치했으면 /usr/bin/에 mysqld_safe가 있을듯)
또는
/etc/init.d/mysqld start
이 모두 실행파일이 없다며 안된다면 find / -name mysql 로 mysqld 파일을 찾아서 해보자.
물론 해당 디렉토리에가서 ./mysqld start 로 하면될 것이다.
그래도 없다면 whereis mysql 를 쳐보자
728x90
'데이터베이스' 카테고리의 다른 글
MySQL 의 database 와 table 의 size 를 알아내는 방법 (0) | 2018.11.14 |
---|---|
Collation 'euckr_general_ci' is not a compiled collation and is not specified in (0) | 2018.11.14 |
테이블 안의 컬럼 값 변경, 수정, update (0) | 2018.11.14 |
데이터 테이블 내용 삭제 (0) | 2018.11.14 |
[SQL] DROP 문, DELETE 문. 데이터를 삭제 (0) | 2018.11.14 |