Debian

Installation Postgres 9.3

http://www.pontikis.net/blog/postgresql-9-debian-7-wheezy
http://howto.biapy.com/fr/debian-gnu-linux/serveurs/bases-de-donnees/installer-postgresql-sur-debian

apt-get install php5-pgsql
nano /etc/apt/sources.list.d/pgdg.list

# ajouter la ligne :

deb http://apt.postgresql.org/pub/repos/apt/ wheezy-pgdg main

Exécuter

wget https://www.postgresql.org/media/keys/ACCC4CF8.asc
apt-key add ACCC4CF8.asc
apt-get update
apt-get install postgresql

Config postgres

command apt-get install postgresql apg
PGSQL_PWD="$(command apg -q -a  0 -n 1 -M NCL)"
command echo "Votre mot de passe pour l'utilisateur postgres de PostgreSQL sera : '${PGSQL_PWD}'."
command su postgres -c "command psql -c \"ALTER USER postgres PASSWORD '${PGSQL_PWD}';\""
command su postgres -c "command createlang 'plpgsql' 'template1'"

Postgres accessible sur le réseau

command find '/etc/postgresql' -name 'postgresql.conf' -print0 \
    | command xargs -0 -iFILE \
        sed -i -e "s/^[# ]*\\(listen_addresses[ ]*=[ ]*'\\)[^']*\\('.*\\)$/\\1*\\2/" FILE
/etc/init.d/postgresql restart

PgAdmin

/usr/bin/apt-get install phppgadmin

Ajouter des contributions

apt-get install postgresql-contrib

url d’accés : http://server/phppgadmin/
Configuration de phppgadmin

nano /usr/share/phppgadmin/conf/config.inc.php

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

*

Ce site utilise Akismet pour réduire les indésirables. En savoir plus sur comment les données de vos commentaires sont utilisées.