The following bug has been logged online: Bug reference: 4116 Logged by: Graham Leggett Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.11 Operating system: Redhat Enterprise 5 Description: Cannot create tablespace: could not set permissions on directory Details:
While making an attempt to create a tablespace, where the tablespace directory has already been created, has the correct ownership, and has the correct permissions (0700), the attempt will fail regardless: postgres=# CREATE TABLESPACE fma LOCATION '/home/fma/db/pgsql'; ERROR: could not set permissions on directory "/home/fma/db/pgsql": Permission denied Looking in the source, the error message "could not set permissions on directory" appears here: 01283 /* 01284 * Attempt to coerce target directory to safe permissions. If this 01285 * fails, it doesn't exist or has the wrong owner. 01286 */ 01287 if (chmod(location, 0700) != 0) 01288 ereport(ERROR, 01289 (errcode_for_file_access(), 01290 errmsg("could not set permissions on directory \"%s\": %m", 01291 location))); This code makes the incorrect assumption that the platform will allow the postgres user to set the permissions using chmod. What this code should be doing is checking that the permissions on the directory are 0700, and failing if they are not, leaving it up to the user to fix the problem. Redhat Enterprise Linux 5 refuses to allow a user to chmod a directory, even though that user owns that directory. In addition, if SELinux is enabled, this gives a further reason why the code will fail. To fix this, check that the mode is 0700, don't try to set it. -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs