localhost 에서 접속 시도 하는 경우 발생 하는 에러 이다. socket 설정을 해줘야 한다.
Step 1. mysql 설정 파일 변경 하기
/etc/my.cnf 파일에 추가 한다.
[client]
port = 3306
socket = /var/lib/mysql/mysql.sock
[mysqld]
port = 3306
socket = /var/lib/mysql/mysql.sock
Step 2. mysql 재시작 하기
서버를 재시작 한다.
sudo service mysqld restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
Step 3. 접속 확인 하기
mysql -u[username] -p[password] [database]
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.12 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
접속을 확인 할 수 있다.
'Database' 카테고리의 다른 글
Microsoft SQL Server Management Studio 2012 접속 하기 (0) | 2014.07.24 |
---|---|
Mysql 에서 Oracle Rownum 처럼 사용 하는 방법 (0) | 2013.10.11 |
postgresql schema 정보 확인하는 방법 (0) | 2013.07.24 |
postgresql null 체크 하는 함수 (0) | 2013.03.12 |
OSX 에 PostgreSql 설치 하기 (1) | 2013.03.02 |