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
'Linux Server 구축 > 1-2. Web Server' 카테고리의 다른 글
PHPMyAdmin - blowfish_secret 해결방법 (0) | 2009.01.19 |
---|---|
PHPMyAdmin - mbstring error 해결방법 (0) | 2009.01.18 |
PHPMyAdmin - mcrypt 문제 해결 방법 (libmcrypt 설치) (0) | 2009.01.16 |
Tomcat 6.0 & Apache Server 연동 중 Servlets 연동 문제 (0) | 2009.01.15 |
ZendOptimizer (0) | 2008.12.17 |
PHPMyAdmin (0) | 2008.12.17 |