我的系统为 AIX5.3 在mysql网站上下载了mysql-5.1.28-rc-aix5.3-powerpc.tar.gz 安装包,
然后安装步骤: 
groupadd mysql
useradd -g mysql mysql
cd /usr/local
gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
ln -s full-path-to-mysql-VERSION-OS mysql
cd mysql
chown -R mysql .
chgrp -R mysql .
scripts/mysql_install_db --user=mysql
到这步时报错如下: 
exec(): 0509-036 Cannot load program ./bin/my_print_defaults because of the foll
owing errors:
rtld: 0712-001 Symbol __pthread was referenced
      from module my_print_defaults(), but a runtime definition
      of the symbol was not found.
Neither host 'AIX' nor 'localhost' could be looked up with
./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---------------------------------------------------------------
但是我hostname
AIX 没问题.各位大虾有遇到过类似问题吗? 我初学AIX.求教.