- Notifications
You must be signed in to change notification settings - Fork134
The missing set of useful tools for Postgres DBAs and all engineers
License
NikolayS/postgres_dba
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The missing set of useful tools for Postgres DBA and mere mortals.
👉 See alsopostgres-checkup, a tool for automated health checks and SQL performance analysis.
Questions? Ideas? Contact me:nik@postgres.ai, Nikolay Samokhvalov.
postgres_dba is based on useful queries created and improved by many developers. Here is incomplete list of them:
- Jehan-Guillaume (ioguix) de Rorthaishttps://github.com/ioguix/pgsql-bloat-estimation
- Alexey Lesovsky, Alexey Ermakov, Maxim Boguk, Ilya Kosmodemiansky et al. from Data Egret (aka PostgreSQL-Consulting)https://github.com/dataegret/pg-utils
- Josh Berkus, Quinn Weaver et al. from PostgreSQL Experts, Inc.https://github.com/pgexperts/pgx_scripts
You need to have psql version 10 or newer, but the Postgres server itself can be older – most tools work with it.You can install postgresql-client library version, say, 12 on your machine and use it to work with Postgres server version 9.6 and older – in this case postgres_dba will work. But you do need to have psql from the latest (version 12) Postgres release.
On clean Ubuntu, this is how you can get postgresql-client and have the most recent psql:
sudo sh -c "echo \"deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main\" >> /etc/apt/sources.list.d/pgdg.list"wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -sudo apt-get updatesudo apt-get install -y postgresql-client-12
Using alternative psql pager called "pspg" is highly recommended (but not required):https://github.com/okbob/pspg.
The installation is trivial. Clone the repository and put "dba" alias to your.psqlrc
file (works in bash, zsh, and csh):
git clone https://github.com/NikolayS/postgres_dba.gitcd postgres_dbaprintf"%s %s %s %s\n"\\echo 🧐 🐘'postgres_dba 6.0 installed. Use ":dba" to see menu'>>~/.psqlrcprintf"%s %s %s %s\n"\\set dba\'\\\\i$(pwd)/start.psql\'>>~/.psqlrc
That's it.
If you are running psql and Postgres server on the same machine, just launch psql:
psql -U<username><dbname>
And type:dba <Enter>
in psql. (Or\i /path/to/postgres_dba/start.psql
if you haven't added shortcut to your~/.psqlrc
file).
– it will open interactive menu.
What to do if you need to connect to a remote Postgres server? Usually, Postgres is behind a firewall and/or doesn't listen to a public network interface. So you need to be able to connect to the server using SSH. If you can do it, then just create SSH tunnel (assuming that Postgres listens to default port 5432 on that server:
ssh -fNTML 9432:localhost:5432 sshusername@you-server.com
Then, just launch psql, connecting to port 9432 at localhost:
psql -h localhost -p 9432 -U<username><dbname>
And type:dba <Enter>
in psql to launchpostgres_dba.
Just open psql as you usually do with Heroku:
heroku pg:psql -a<your_project_name>
And then:
:dba
You can add your own useful SQL queries and use them from the main menu. Just add your SQL code to./sql
directory. The filename should start with some 1 or 2-letter code, followed by underscore and some additional arbitrary words. Extension should be.sql
. Example:
sql/f1_cool_query.sql
– this will give you an option "f1" in the main menu. The very first line in the file should be an SQL comment (starts with--
) with the query description. It will automatically appear in the menu.
Once you added your queries, regeneratestart.psql
file:
/bin/bash ./init/generate.sh
Now your have the newstart.psql
and can use it as described above.
No steps are needed, just deletepostgres_dba directory and remove\set dba ...
in your~/.psqlrc
if you added it.
About
The missing set of useful tools for Postgres DBAs and all engineers
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors4
Uh oh!
There was an error while loading.Please reload this page.