สำหรับการติดตั้ง phppgadmin ท่านต้องติดตั้ง appache2, php5, postgresql มาก่อน จากนั้นทำการติดตั้ง packet เพิ่มเติมดังนี้
#aptitude install php5-postgres
#aptitude install phppgadmin
จากนั้นทำการเซตค่าเพื่อให้ phppgadmin สามารถเปิดที่โฮสอื่นๆ ดังนี้
ทำลิงค์
#sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin.conf
แก้ไขไฟล์
/etc/apache2/conf.d/phppgadmin.conf
แก้ไขดังนี้
Alias /phppgadmin /usr/share/phppgadmin/
DirectoryIndex index.php
Options +FollowSymLinks
AllowOverride None
order deny,allow
#deny from all
allow from 127.0.0.0/255.0.0.0
allow from all
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals On
php_value include_path .
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals On
php_value include_path 0k
แก้ไขไฟล์
/etc/phppgadmin/config.inc.php
$conf[‘phppgadmin’][0][‘host’]=’localhost’;
$conf[‘extra-login-security’]=false;
จากนั้น restart postgres และ apache2
จากนั้น restart
sudo /etc/init.d/apache2 restart
sudo /etc/init.d/postgresql restart