Forked from drajathasan/Install Postgresql from source
Created
December 30, 2022 10:15
-
-
Save stantoxt/ee77428b139fc919b20279e14384a0fa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// open your terminal | |
1. Download source from official website | |
2. Extract it into some folder | |
3. Do this command | |
cd source_of_postgres_dir | |
./configure | |
make | |
su | |
make install | |
adduser postgres | |
mkdir /usr/local/pgsql/data | |
chown postgres /usr/local/pgsql/data | |
su - postgres | |
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data | |
// if you wanna use systemd create service file in | |
-> /usr/lib/systemd/system/ with this command | |
4. sudo nano /usr/lib/systemd/system/postgresql.service | |
5. fill the file with this script | |
[Unit] | |
Description=PostgreSQL database server | |
Documentation=man:postgres(1) | |
[Service] | |
Type=simple | |
User=postgres | |
ExecStart=/usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data | |
ExecReload=/bin/kill -HUP $MAINPID | |
ExecStop=/usr/local/pgsql/bin/pg_ctl stop -D /usr/local/pgsql/data | |
KillMode=mixed | |
KillSignal=SIGINT | |
TimeoutSec=0 | |
RuntimeDirectory=postgresql | |
[Install] | |
WantedBy=multi-user.target | |
6. type | |
sudo systemctl daemon-reload | |
7. In Arch Linux runtime directory in /run/ | |
8. change postgresql.conf unix socket to /run/postgresql | |
9. createuser -h /run/postgresql -P -s -e joe | |
Works well in ArchLinux and derivative. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment