Обсуждение: data mount point lost permissions

Поиск
Список
Период
Сортировка

data mount point lost permissions

От
Silvio Brandani
Дата:
During a  server restart  the mount point /var/lib/pgsql/data lost the
0700 permission and the automatic restart of postgres failed.

How can I set the permission of this mount point to be not lost during
restart of server ?? Have I to set specific option in fstab??

thanks
---






Utilizziamo i dati personali che la riguardano esclusivamente per nostre finalità amministrative e contabili, anche
quandoli comunichiamo a terzi. Informazioni dettagliate, anche in ordine al Suo diritto di accesso e agli altri Suoi
diritti,sono riportate alla pagina http://www.savinodelbene.com/privacy.html 
Se avete ricevuto questo messaggio per errore Vi preghiamo di ritornarlo al mittente eliminandolo assieme agli
eventualiallegati, ai sensi art. 616 codice penale http://www.savinodelbene.com/privacy/codice_penale_616.html 
L'Azienda non si assume alcuna responsabilità giuridica qualora pervengano da questo indirizzo messaggi estranei
all'attivitàlavorativa o contrari a norme. 
--

Re: data mount point lost permissions

От
"Kevin Grittner"
Дата:
Silvio Brandani <silvio.brandani@tech.sdb.it> wrote:

> During a  server restart  the mount point /var/lib/pgsql/data lost
> the 0700 permission and the automatic restart of postgres failed.
>
> How can I set the permission of this mount point to be not lost
> during restart of server ?? Have I to set specific option in
> fstab??

Perhaps the mount failed, or did not occur before PostgreSQL tried
to start?  If so, the permission flags may be saving you from
writing to entirely the wrong place?

Does your service script for PostgreSQL (probably in /etc/init.d/)
contain something like this in the BEGIN INIT INFO block?:

# Required-Start: $local_fs $network $syslog
# Should-Start: nthd

Those settings have kept us out of trouble....

-Kevin