我正在使用postgres
用户执行一些特殊命令。为此,我正在尝试以下操作:
$ sudo su - postgres
postgres$ ls -l /tmp
drwxrwxrwt 13 root root 4096 jun 8 12:20 tmp
PGPASSWORD=mypasswordhere time pg_dump --username=postgres --no-password -f /tmp/myfilehere.sql mydatabasehere
pg_dump: [archiver] could not open output file "/tmp/myfilehere.sql": Permiso denegado
Command exited with non-zero status 1
0.25user 0.06system 0:02.04elapsed 15%CPU (0avgtext+0avgdata 58064maxresident)k
0inputs+0outputs (0major+5110minor)pagefaults 0swaps
问题:为什么我不能写入/tmp
用户postgres
?注意粘性标志设置为/tmp
。
粘滞位将防止文件所有者(以及目录和根目录的所有者)以外的任何用户删除/重命名包含粘滞位的目录内的任何文件。如果任何用户没有写入权限,那么他将无法在其中创建任何文件
/tmp
或任何其他设置了粘滞位的目录,读取和执行操作也是如此。在你的情况下,如果
postgres
有足够的权限来读取/写入/执行文件,/tmp
那么他可以这样做,否则你需要手动设置适当的权限。例子 :