Mysql을 Windows에서 서비스 구동 시 에러가 나는 경우 이다. DHCP 할당 IP가 아닌 내부 네트워크 IP로 고정적으로 설정을 해주었을 경우. 위와 같은 에러가 발생 할 수 있다.


Windows 서비스 MySQL55 는 아래 설정 파일을 참고하여 구동 된다.


--defaults-file="C:\ProgramData\MySQL\MySQL Server 5.5\my.ini" 파일을 수정 하자.



// ...


# SERVER SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by the MySQL Server. Make sure that
# you have installed the server correctly (see above) so it reads this
# file.
#
# server_type=3
[mysqld]
bind-address=192.168.xxx.xxx


// ...



bind-address를 현재 내부 IP로 설정 해주고 서비스를 시작 하면 정상적으로 작동 한다.


접속 할 때는 localhost 가 아닌 192.168.xxx.xxx 로 하도록 하자.


'Database' 카테고리의 다른 글

Mysql Table 레코드 복사하기  (0) 2012.12.07
Query에 대한 고찰  (0) 2012.12.07
Mysql Timestamp Column 생성 하기  (0) 2012.12.06
Mysql root 비밀번호 변경하기  (0) 2012.12.03
Oracle 덤프 뜨기  (0) 2012.11.26

+ Recent posts