Nov 11, 2013

install phppgadmin ubuntu 13.10

hmm...  phppgadmin on ubuntu 13.10 is little bit different, there is

duplicate file in different directory


so we need to copy manually.

well, here there are :

sudo apt-get install phppgadmin

to

solve problem installing phppgadmin on ubuntu 13.10 

do this

sudo cp /etc/apache2/conf.d/phppgadmin /etc/apache2/conf-enabled/phppgadmin.conf

sudo /etc/init.d/apache2 restart


create user and grant privileges on postgres 

 

sudo su postgres
psql
postgres=# CREATE USER your_login_name WITH PASSWORD 'your_password';


then you can login from http://localhost/phppgadmin
hmm...  phppgadmin on ubuntu 13.10 is little bit different, there is

duplicate file in different directory


so we need to copy manually.

well, here there are :

sudo apt-get install phppgadmin

to

solve problem installing phppgadmin on ubuntu 13.10 

do this

sudo cp /etc/apache2/conf.d/phppgadmin /etc/apache2/conf-enabled/phppgadmin.conf

sudo /etc/init.d/apache2 restart


create user and grant privileges on postgres 

 

sudo su postgres
psql
postgres=# CREATE USER your_login_name WITH PASSWORD 'your_password';


then you can login from http://localhost/phppgadmin

No comments:

Post a Comment