PostgreSQL/PgBouncer: Difference between revisions
Jump to navigation
Jump to search
(29 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{| | |||
|valign="top"| | |||
<syntaxhighlight lang="bash"> | |||
cat <<-'EXE'|sudo bash | |||
apt-get update;echo | |||
apt list -a --upgradable | |||
apt-get install -y pgbouncer | |||
EXE | |||
</syntaxhighlight> | |||
|valign="top"| | |||
<syntaxhighlight lang="bash"> | |||
systemctl status pgbouncer.service | |||
sudo systemctl stop pgbouncer.service | |||
sudo systemctl start pgbouncer.service | |||
sudo systemctl restart pgbouncer.service | |||
</syntaxhighlight> | |||
|valign="top"| | |||
<syntaxhighlight lang="bash"> | |||
ls -lah /etc/pgbouncer/ | |||
sudo cat /etc/pgbouncer/userlist.txt | |||
sudo cat /etc/pgbouncer/pgbouncer.ini | |||
sudo cat /etc/pgbouncer/pgbouncer.ini|less | |||
</syntaxhighlight> | |||
|} | |||
==Configure== | |||
<syntaxhighlight lang="bash"> | |||
sudo rsync -avz /etc/pgbouncer/pgbouncer.ini /etc/pgbouncer/pgbouncer.ini.bkp | |||
sudo rsync -avz /etc/pgbouncer/userlist.txt /etc/pgbouncer/userlist.txt.bkp | |||
# restore default configuration | |||
sudo rsync -avz /etc/pgbouncer/pgbouncer.ini.bkp /etc/pgbouncer/pgbouncer.ini | |||
sudo cat /etc/pgbouncer/pgbouncer.ini | |||
</syntaxhighlight> | |||
===Configure » Pool » Database=== | |||
---- | |||
<syntaxhighlight lang="bash"> | |||
# find pgbouncer db pool | |||
PG_DB_POOL_FIND=$(cat <<QRY | |||
\[databases\]\n\ | |||
\n\ | |||
;; foodb over Unix socket\n\ | |||
;foodb = | |||
QRY | |||
) | |||
# fill pgbouncer db pool | |||
PG_DB_POOL_FILL=$(cat <<UPD | |||
[databases]\n\ | |||
\n\ | |||
;; future db pool here\n\ | |||
academia_flair_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'\n\ | |||
academia_audit_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'\n\ | |||
academia_qoute_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'\n\ | |||
academia_users_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1' | |||
UPD | |||
) | |||
sudo sed -z "s|${PG_DB_POOL_FIND}|$(echo "${PG_DB_POOL_FILL}")|" -i /etc/pgbouncer/pgbouncer.ini | |||
</syntaxhighlight> | |||
===Configure » Pool » User=== | |||
---- | |||
<syntaxhighlight lang="bash"> | |||
# find pgbouncer user pool | |||
PG_USER_POOL_FIND=$(cat <<QRY | |||
\[users\]\n\ | |||
\n\ | |||
;user1 = pool_mode=transaction max_user_connections=10 | |||
QRY | |||
) | |||
# fill pgbouncer user pool | |||
PG_USER_POOL_FILL=$(cat <<UPD | |||
[users]\n\ | |||
\n\ | |||
;; future user pool here\n\ | |||
chorke = pool_mode=transaction max_user_connections=10 | |||
UPD | |||
) | |||
sudo sed -z "s|${PG_USER_POOL_FIND}|$(echo "${PG_USER_POOL_FILL}")|" -i /etc/pgbouncer/pgbouncer.ini | |||
sudo sed -z "s|auth_type = trust|auth_type = md5|" -i /etc/pgbouncer/pgbouncer.ini | |||
</syntaxhighlight> | |||
===Configure » User » Secret=== | |||
---- | |||
<syntaxhighlight lang="bash"> | |||
cat << USR | sudo tee -a /etc/pgbouncer/userlist.txt >/dev/null | |||
"chorke" "md5$(printf '%s%s' 'p@$$w0rd' 'chorke'|md5sum|awk '{print $1}')" | |||
"shahed" "md5$(printf '%s%s' 'sadaqah!' 'shahed'|md5sum|awk '{print $1}')" | |||
USR | |||
</syntaxhighlight> | |||
---- | |||
{| | |||
|valign="top"| | |||
<syntaxhighlight lang="bash"> | |||
systemctl status pgbouncer.service | |||
sudo systemctl reload pgbouncer.service | |||
sudo systemctl restart pgbouncer.service | |||
</syntaxhighlight> | |||
|valign="top"| | |||
<syntaxhighlight lang="bash"> | |||
psql -hlocalhost -p6432 -Uchorke -dacademia_users_staging | |||
psql -hlocalhost -p6432 -Uchorke -dacademia_audit_staging | |||
psql -hlocalhost -p6432 -Uchorke -dacademia_flair_staging | |||
</syntaxhighlight> | |||
|valign="top"| | |||
|} | |||
==Playground== | |||
{| | |||
|valign='top'| | |||
<syntaxhighlight lang="bash"> | |||
ls -lah /etc/pgbouncer/ | |||
ls -lah /var/log/postgresql/ | |||
ls -lah /var/run/postgresql/ | |||
</syntaxhighlight> | |||
|valign='top'| | |||
|valign='top'| | |||
|- | |||
|colspan='3'| | |||
---- | |||
|- | |||
|valign='top'| | |||
|valign='top'| | |||
|valign='top'| | |||
|} | |||
== References== | == References== | ||
{| | {| | ||
|valign="top"| | |valign="top"| | ||
* [https://stackoverflow.com/questions/43903485/ PostgreSQL » PgBouncer » Horizontal Scaling Advantage] | |||
* [https://sip-projects.com/en/blog/pgbouncer-ubuntu PostgreSQL » PgBouncer » Ubuntu] | * [https://sip-projects.com/en/blog/pgbouncer-ubuntu PostgreSQL » PgBouncer » Ubuntu] | ||
* [https://www.pgbouncer.org/config.html PostgreSQL » PgBouncer » Config] | * [https://www.pgbouncer.org/config.html PostgreSQL » PgBouncer » Config] | ||
Line 21: | Line 165: | ||
* [[IntelliJ IDEA]] | * [[IntelliJ IDEA]] | ||
* [[OpenLDAP]] | * [[OpenLDAP]] | ||
* [[OpenVPN]] | |||
* [[MySQL|MariaDB]] | * [[MySQL|MariaDB]] | ||
* [[HAProxy]] | * [[HAProxy]] | ||
Line 29: | Line 174: | ||
|valign="top"| | |valign="top"| | ||
* [[K8s/Swiss Knife|K8s » Swiss Knife]] | |||
* [[K8s/Ingress|K8s » Ingress]] | |||
* [[K8s/Service|K8s » Service]] | |||
* [[K8s/Run|K8s » Run]] | |||
|valign="top"| | |valign="top"| | ||
|} | |} |
Latest revision as of 20:19, 22 September 2024
cat <<-'EXE'|sudo bash
apt-get update;echo
apt list -a --upgradable
apt-get install -y pgbouncer
EXE
|
systemctl status pgbouncer.service
sudo systemctl stop pgbouncer.service
sudo systemctl start pgbouncer.service
sudo systemctl restart pgbouncer.service
|
ls -lah /etc/pgbouncer/
sudo cat /etc/pgbouncer/userlist.txt
sudo cat /etc/pgbouncer/pgbouncer.ini
sudo cat /etc/pgbouncer/pgbouncer.ini|less
|
Configure
sudo rsync -avz /etc/pgbouncer/pgbouncer.ini /etc/pgbouncer/pgbouncer.ini.bkp
sudo rsync -avz /etc/pgbouncer/userlist.txt /etc/pgbouncer/userlist.txt.bkp
# restore default configuration
sudo rsync -avz /etc/pgbouncer/pgbouncer.ini.bkp /etc/pgbouncer/pgbouncer.ini
sudo cat /etc/pgbouncer/pgbouncer.ini
Configure » Pool » Database
# find pgbouncer db pool
PG_DB_POOL_FIND=$(cat <<QRY
\[databases\]\n\
\n\
;; foodb over Unix socket\n\
;foodb =
QRY
)
# fill pgbouncer db pool
PG_DB_POOL_FILL=$(cat <<UPD
[databases]\n\
\n\
;; future db pool here\n\
academia_flair_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'\n\
academia_audit_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'\n\
academia_qoute_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'\n\
academia_users_staging = host=10.110.110.155 port=5432 user=chorke password='sadaqah!' client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'
UPD
)
sudo sed -z "s|${PG_DB_POOL_FIND}|$(echo "${PG_DB_POOL_FILL}")|" -i /etc/pgbouncer/pgbouncer.ini
Configure » Pool » User
# find pgbouncer user pool
PG_USER_POOL_FIND=$(cat <<QRY
\[users\]\n\
\n\
;user1 = pool_mode=transaction max_user_connections=10
QRY
)
# fill pgbouncer user pool
PG_USER_POOL_FILL=$(cat <<UPD
[users]\n\
\n\
;; future user pool here\n\
chorke = pool_mode=transaction max_user_connections=10
UPD
)
sudo sed -z "s|${PG_USER_POOL_FIND}|$(echo "${PG_USER_POOL_FILL}")|" -i /etc/pgbouncer/pgbouncer.ini
sudo sed -z "s|auth_type = trust|auth_type = md5|" -i /etc/pgbouncer/pgbouncer.ini
Configure » User » Secret
cat << USR | sudo tee -a /etc/pgbouncer/userlist.txt >/dev/null
"chorke" "md5$(printf '%s%s' 'p@$$w0rd' 'chorke'|md5sum|awk '{print $1}')"
"shahed" "md5$(printf '%s%s' 'sadaqah!' 'shahed'|md5sum|awk '{print $1}')"
USR
systemctl status pgbouncer.service
sudo systemctl reload pgbouncer.service
sudo systemctl restart pgbouncer.service
|
psql -hlocalhost -p6432 -Uchorke -dacademia_users_staging
psql -hlocalhost -p6432 -Uchorke -dacademia_audit_staging
psql -hlocalhost -p6432 -Uchorke -dacademia_flair_staging
|
Playground
ls -lah /etc/pgbouncer/
ls -lah /var/log/postgresql/
ls -lah /var/run/postgresql/
|
||
| ||
References
| ||