Zmiany pomiędzy wersją początkową i wersją 1 dla AdminGuide/pgbouncer

Pokaż
Ignoruj:
Data i czas:
08/17/15 16:08:33 (9 years temu)
Autor:
MK (IP: 79.188.124.105)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • AdminGuide/pgbouncer

    v1 v1  
     1= PgBouncer = 
     2 
     31.      Instalacja (Debian itp.) 
     4 
     5{{{ 
     6apt-get install pgbouncer 
     7}}} 
     8 
     9 
     10vim /etc/pgbouncer/pgbouncer.ini 
     11 
     12[databases] 
     13 
     14* = 
     15 
     16[pgbouncer] 
     17 
     18logfile = /var/log/postgresql/pgbouncer.log 
     19 
     20pidfile = /var/run/postgresql/pgbouncer.pid 
     21 
     22listen_addr = 127.0.0.1 
     23 
     24listen_port = 6432 
     25 
     26unix_socket_dir = /var/run/postgresql 
     27 
     28auth_type = trust 
     29 
     30auth_file = /etc/pgbouncer/userlist.txt 
     31 
     32admin_users = postgres 
     33 
     34stats_users = postgres 
     35 
     36pool_mode = transaction 
     37 
     38 
     39vim /etc/pgbouncer/userlist.txt 
     40 
     41"postgres" "" 
     42 
     43"edokumenty" "" 
     44 
     45"http" "" 
     46 
     473. Restart usługi 
     48 
     49{{{ 
     50/etc/init.d/pgbouncer restart 
     51}}}