Centos

SELinux 阻止 Apache 寫入 pgbouncer 的 Unix 域套接字

  • November 6, 2011

我正在使用帶有 PGDG 軟體包的新安裝的 CentOS 5.7 Linux 64 位:

# rpm -qa|grep -i PG
postgresql-libs-8.4.8-2PGDG.rhel5
pgdg-centos-8.4-2
postgresql-8.4.8-2PGDG.rhel5
pgbouncer-1.3.4-1.rhel5
postgresql-server-8.4.8-2PGDG.rhel5

並在 /var/log/audit/audit.log 中獲取以下 Apache 錯誤

type=AVC msg=audit(1316700316.235:41): avc:  denied  { write } for
pid=2748 comm="httpd" name=".s.PGSQL.6432" dev=sda1 ino=754350
scontext=system_u:system_r:httpd_t:s0
tcontext=system_u:object_r:tmp_t:s0 tclass=sock_file
type=SYSCALL msg=audit(1316700316.235:41): arch=c000003e syscall=42
success=no exit=-13 a0=c a1=2b712748bee0 a2=6e a3=0 items=0 ppid=2721
pid=2748 auid=4294967295 uid=48 gid=48 euid=48 suid=48 fsuid=48
egid=48 sgid=48 fsgid=48 tty=(none) ses=4294967295 comm="httpd"
exe="/usr/sbin/httpd" subj=system_u:system_r:httpd_t:s0 key=(null)

以下是有問題的文件(PostgreSQL 在“埠”5432 和 pgbouncer 在“埠”6432):

# ls -aZ /tmp/
srwxrwxrwx  postgres postgres system_u:object_r:postgresql_tmp_t .s.PGSQL.5432
-rw-------  postgres postgres system_u:object_r:postgresql_tmp_t
.s.PGSQL.5432.lock
srwxrwxrwx  postgres postgres system_u:object_r:tmp_t          .s.PGSQL.6432

有誰請知道,如何永久使上面的文件 .s.PGSQL.6432 與 s.PGSQL.5432 具有相同的postgresql_tmp_t “類型”(這可能會解決問題)?

通過查看我認為的程序,我必須以某種方式將pgbouncer程序從initrc_t移動到postgresql_t

# ps uawxZ
system_u:system_r:initrc_t      postgres  2610  0.0  0.0  17020   780 ?        S    15:47   0:00 pgbouncer -d /etc/pgbouncer.ini
system_u:system_r:postgresql_t  postgres  2666  0.1  2.4 1192464 25216 ?       S    15:48   0:02 /usr/bin/postmaster -p 5432 -D    /var/lib/pgsql/data
system_u:system_r:httpd_t       root      2721  0.0  1.0 260608 10564 ?        Ss   15:48   0:00 /usr/sbin/httpd
system_u:system_r:httpd_t       apache    2747  0.0  0.9 261632  9728 ?        S    15:48   0:00 /usr/sbin/httpd
system_u:system_r:httpd_t       apache    2748  0.0  0.9 261632  9728 ?        S    15:48   0:00 /usr/sbin/httpd

從量子中竊取一點,但它可能更多地沿著..

# chcon -t postgresql_exec_t /path/to/pgbouncer

然後重新啟動。

試試這個:

# chcon -t postgresql_t /path/to/pgbouncer

並重新啟動pgbouncer

引用自:https://serverfault.com/questions/314393