AIX 6.1 환경에서 PostgreSQL 9.x 버전을 설치하고자하는데 설치과정에서 오류가 발생하면서 설치되지 않습니다.
gcc로 컴파일시 오류가 발생하고, xlc 컴파일은 설치되어 있지 않습니다.
libm.a가 설치되지 않았다는 메시지와 다음과 같은 메시지가 남습니다.
gcc 로 컴파일 할 경우 아래와 같은 에러 발생
gmake[3]: Leaving directory `/home/postgres/swsmdm/postgresql-9.0.2/src/port'
./pg_regress --inputdir=. --dlpath=. --multibyte=SQL_ASCII --psqldir=/home/postgres/pgsql/bin --schedule=./serial_schedule
(using postmaster on Unix socket, default port)
============== dropping database "regression" ==============
psql: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
command failed: "/home/postgres/pgsql/bin/psql" -X -c "DROP DATABASE IF EXISTS \"regression\"" "postgres"
gmake[2]: *** [installcheck] Error 2
gmake[2]: Leaving directory `/home/postgres/swsmdm/postgresql-9.0.2/src/test/regress'
gmake[1]: *** [installcheck] Error 2
gmake[1]: Leaving directory `/home/postgres/swsmdm/postgresql-9.0.2/src/test'
gmake: *** [installcheck] Error 2
make: 1254-004 The error code from the last command is 2.
해결할 방법이 있을까요?
|