PostgreSQL
From ArchWiki
This document describes how to set up PostgreSQL and integrate it with PHP and Apache. It also describes how to configure PostgreSQL to be accessible from a remote client. PHP and Apache are assumed to be already be set up. If you need help setting up either of those two, see the LAMP page and follow all of the sections except the one related to MySQL.
Contents |
[edit] Installing PostgreSQL
- Install the package
# pacman -Sy postgresql
- Make sure that locales are generated and properly set. Note: This is likely not required for newer installs but should be noted for those installing from older cd's.
# vim /etc/locale.gen
# locale-gen
- Setup and start the PostgreSQL server (the first time that this is run it will create the data directory and users needed to run the server. As such you will see a lot of output.
# /etc/rc.d/postgresql start
- Add postgresql to the list of daemons that start on system startup in the /etc/rc.conf file
[edit] Configure PostgreSQL to be accessible from remote
The PostgreSQL database server configuration file is postgresql.conf. This file is located in the data directory of the server, typically /var/lib/postgres/data.
- As root user edit the file
# vim /var/lib/postgres/data/postgresql.conf
- In the connections and authentications section uncomment or edit the
listen_addressesline to your needslisten_addresses = '*'
and take a careful look at the other lines. - Hereafter insert the following line in the host-based authentication file
/var/lib/postgres/data/pg_hba.conf. This file controls which hosts are allowed to connect, so be careful.# IPv4 local connections:
host all all your_desired_ip_address/32 trust
whereasyour_desired_ip_addressis the ip address of the client. - After this you should restart the postmaster for the changes to take effect with
# /etc/rc.d/postgresql restart
- Please consider that the port 5432 should be open, so take a look at the following files
/etc/services/etc/hosts/etc/hosts.allow - For troubleshooting take a look in the server log file
tail /var/log/postgresql.log
[edit] Configure PostgreSQL to Work With PHP
- Open the file
/etc/php/php.iniwith your editor of choice, e.g.,# vim /etc/php/php.ini
- Find the line that starts with, ";extension=pgsql.so" and change it to, "extension=pgsql.so". (Just remove the preceding ";"). If this line is not present, add it. This line may be in the "Dynamic Extensions" section of the file, or toward the very end of the file.
- Restart the Apache web server
# /etc/rc.d/httpd restart
[edit] Creating Your First Database!
- Become the postgres user (This user was created when "/etc/rc.d/postgres start" was run)
su root
su - postgres
- Add a new database user
createuser -DRSP username
- Create a new database over which that user has read/write privileges
createdb -O username databasename
- That's It! Your database has been created.
[edit] Installing phpPgAdmin (optional)
phpPgAdmin is a web-based administration tool for PostgreSQL. It can be installed two ways.
[edit] Option A: install via Pacman (preferred)
- Make sure that the [community] repo is enabled.
- Install the package via Pacman
# pacman -Sy phppgadmin
[edit] Option B: install via a manual install (the old way)
- Download the latest .bz2 file from here into the root of your server directory
wget -P /home/httpd/html http://downloads.sourceforge.net/phppgadmin/phpPgAdmin-4.1.3.tar.bz2
- Extract the file into the new directory
tar -C /home/httpd/html/ -jxvf /home/httpd/html/phpPgAdmin-4.1.3.tar.bz2
- Remove the tar file
rm /home/httpd/html/phpPgAdmin-4.1.3.tar.bz2
- Change the name of the directory created in the previous step to include the version number (this will help in the future when upgrading)
mv /home/httpd/html/phpPgAdmin /home/httpd/html/phpPgAdmin-4.1.3/
- Create a link to that directory (for ease of linking and upgrading)
ln -s /home/httpd/html/phpPgAdmin-4.1.3/ /home/httpd/html/phpPgAdmin
- Copy the included generic config file
cp /home/httpd/html/phpPgAdmin/conf/config.inc.php-dist /home/httpd/html/phpPgAdmin/conf/config.inc.php
The config file is located at /home/httpd/html/phpPgAdmin/conf/config.inc.php. No changes should be required. Check this page for any other setup questions that you might have.
[edit] Upgrading Postgresql (optional and dangerous)
- First thing: these instructions could cause data loss. Use at your own risk. They work for me, but things change and nothing is guaranteed.
- I would highly suggest adding the line
IgnorePkg = postgresql
to /etc/pacman.conf. This will make sure that you don't accidentally upgrade the database to an incompatible version. If you did an accidental upgrade you might not be able to access any of your data. Always check the Postgresql home page (http://www.postgresql.org/) to be sure of what steps are required for each upgrade. For a bit about why this is the case see this. - How to dump all of your data, upgrade PostgreSQL, and then restore all of your data (this may not be necessary for every upgrade, see #2 above)
- Become the root user
su
- Become the postgres user
su postgres
- Change the current directory to one that the postgres user can write to
eg. cd ~/data/
- Dump the current contents of the database
pg_dumpall > pgs_db.out
Unless you have a .pgpass file setup, you will be required to enter your password a few times (the number of times is roughly equal to the number of databases that you have + 2). One problem occurs if you don't have a password defined for the postgres user but you require local users to authenticate. In this case you will be asked to give a password that doesn't exist. To work around this problem, add a line to your pg_hba.conf file to trust the postgres user. You can remove this line after the upgrade is complete. So, the first line of the 'local' section of pg_hba.conf would look something like this:local all postgres trust
- Log out of the postgres user and return to superuser
exit
- Stop the PostgreSQL server
/etc/rc.d/postresql stop
- Move Postgresql's data directory
mv /var/lib/postgres /var/lib/postgres_old
- Upgrade postgresql
pacman -Sy postgresql
- Start the PostgreSQL server (this will create all needed files and directories)
/etc/rc.d/postgresql start
- Become the postgres user
su postgres
- Change the current directory to the directory that you dumped the data out to (in step 4 above)
eg. cd /var/lib/postgres_old/data/
- Restore the database
psql -e template1 -f pgs_db.out
- Become the root user