BUG #4116: Cannot create tablespace: could not set permissions on directory

Поиск
Список
Период
Сортировка
От Graham Leggett
Тема BUG #4116: Cannot create tablespace: could not set permissions on directory
Дата
Msg-id 200804191238.m3JCcfcJ076060@wwwmaster.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #4116: Cannot create tablespace: could not set permissions on directory  (Alvaro Herrera <alvherre@commandprompt.com>)
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      4116
Logged by:          Graham Leggett
Email address:      minfrin@sharp.fm
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.

В списке pgsql-bugs по дате отправления:

Предыдущее
От: "Daniel Ruoso"
Дата:
Сообщение: BUG #4115: PostgreSQL ISO format is not really ISO
Следующее
От: "Jaime Casanova"
Дата:
Сообщение: Re: BUG #4115: PostgreSQL ISO format is not really ISO