Last active
January 25, 2019 22:05
-
-
Save tacionery/5ffcbbfdd3fbc7ff9a276a3f827bd62a to your computer and use it in GitHub Desktop.
install postgresql on antergos
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
# uninstall postgresql if necessary | |
$ sudo pacman -R postgresql postgresql-libs | |
# remove postgres files | |
$ sudo rm -rfv /var/lib/postgres | |
# proceed with the installation | |
$ sudo pacman -S postgresql postgresql-libs | |
# setup password for postgres | |
$ sudo passwd postgres | |
# create this file | |
$ sudo vim /usr/lib/systemd/system/rc-local.service | |
# paste this | |
[Unit] | |
Description=/etc/rc.local compatibility | |
[Service] | |
Type=oneshot | |
ExecStart=/etc/rc.local | |
RemainAfterExit=yes | |
[Install] | |
WantedBy=multi-user.target | |
# now create this file | |
sudo vim /etc/rc.local | |
# and paste this | |
#!/bin/sh -e | |
# | |
# rc.local | |
exit 0 | |
# make the /etc/rc.local executable | |
$ sudo chmod +x /etc/rc.local | |
# enable the rc.local.service | |
sudo systemctl enable rc-local.service | |
# now log in with postgres user | |
$ sudo su - postgres | |
# init the database | |
$ initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data' | |
$ exit | |
# now start postgresql service | |
$ sudo systemctl start postgresql.service | |
# so, that's what i did to install and configure postgresql on my antergos linux | |
# hope it helps | |
Thank you very much.
I saved lots of hours of searching thanks to you
This is great!
Thanks!
Thank you Sir. All is good.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks its very helpful
and i ask to repost(translate to my language) this for my blog with source link to this page.