BUG #5283: Missing "base/1/ON" file during initdb

From: "Robert Treat" <xzilla(at)users(dot)sourceforge(dot)net>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #5283: Missing "base/1/ON" file during initdb
Date: 2010-01-16 17:47:14
Message-ID: 201001161747.o0GHlEAc073552@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 5283
Logged by: Robert Treat
Email address: xzilla(at)users(dot)sourceforge(dot)net
PostgreSQL version: 8.4.2
Operating system: Slackware Linux 2.6.23.14-grsec
Description: Missing "base/1/ON" file during initdb
Details:

Trying to install 8.4.2 on Linux 2.6.23.14-grsec from source tarball

configure line is this:

./configure '--prefix=/usr/local/pgsql-8.4.2' '--enable-debug'
'--enable-depend' '--enable-cassert' '--enable-thread-safety'
'--with-libxml' '--disable-largefile'

I added --disable-largefile to configure after getting the following error
during "make install"

access/transam/xlog.o: In function `XLogFileClose':
/usr/local/src/postgresql-8.4.2/src/backend/access/transam/xlog.c:2610:
undefined reference to `posix_fadvise64'
storage/file/fd.o: In function `FilePrefetch':
/usr/local/src/postgresql-8.4.2/src/backend/storage/file/fd.c:1096:
undefined reference to `posix_fadvise64'
collect2: ld returned 1 exit status
make[2]: *** [postgres] Error 1

With largefile support disabled, make install worked fine, but now I am
getting the following error during initdb.

root(at)phppgadmin:/usr/local/src/postgresql-8.4.2/src# sudo -u postgres
/usr/local/pgsql-8.4.2/bin/initdb -D /usr/local/pgsql/data/84/
The files belonging to this database system will be owned by user
"postgres".
This user must also own the server process.

The database cluster will be initialized with locale C.
The default database encoding has accordingly been set to SQL_ASCII.
The default text search configuration will be set to "english".

fixing permissions on existing directory /usr/local/pgsql/data/84 ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 28MB
creating configuration files ... ok
creating template1 database in /usr/local/pgsql/data/84/base/1 ... ok
initializing pg_authid ... ok
initializing dependencies ... ok
creating system views ... ok
loading system objects' descriptions ... ok
creating conversions ... ok
creating dictionaries ... ok
setting privileges on built-in objects ... ok
creating information schema ... ok
vacuuming database template1 ... ok
copying template1 to template0 ... FATAL: could not stat file "base/1/ON":
No such file or directory
STATEMENT: CREATE DATABASE template0;

child process exited with exit code 1
initdb: removing contents of data directory "/usr/local/pgsql/data/84"

I've installed 7.old -> 8.3 on this machine before, so this seems like
something new in 8.4. Any help is appreciated.

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2010-01-16 19:02:16 Re: BUG #5283: Missing "base/1/ON" file during initdb
Previous Message Chris Travers 2010-01-15 18:40:31 Re: BUG #5281: Timestamp fields not inserting from 8.3 to 8.4