본문 바로가기

Linux Server 구축/1-2. Web Server

Neither host 'server1' nor 'localhost' could be looked up with /usr/local/mysql/bin/resolveip


mysql source install 시 문제 해결 방법

# /usr/local/mysql/bin/mysql_install_db
Neither host 'server1' nor 'localhost' could be looked up with
/usr/local/mysql/bin/resolveip
Please configure the 'hostname' command to return a correct
hostname.
If you want to solve this at a later stage, restart this script
with the --force option

---> 위 상황은 mysql 을 make install 까지 끝난 상태에서 db를 생성하기 위하여 명령을 내렸는데 문제가 나타난 상황이다.


해결방법 :

/etc/hosts 에서 자기 자신에 대한 127.0.0.1 이 빠져있다.
이것을 아래와 같이 적어주고 저장하고 나오면 된다.

# vi /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1       localhost localhost.localdomain  - 이 부분을 추가해 준다.
::1     localhost.localdomain   localhost