phpPgAdmin

phpPgAdmin is a web-based tool to help manage PostgreSQL databases using an PHP frontend.

Installation

PhpPgAdmin requires a web server with PHP, such as Apache. To set it up, see Apache HTTP Server and Apache HTTP Server#PHP.

Install the phppgadmin package.

Configuration

PHP

You need to enable the pgsql extension in PHP by editing /etc/php/php.ini and uncommenting the following line:

extension=pgsql

You need to make sure that PHP can access /etc/webapps. Add it to open_basedir in /etc/php/php.ini if necessary:

open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/etc/webapps

Apache

Create the Apache configuration file:

/etc/httpd/conf/extra/phppgadmin.conf
Alias /phppgadmin "/usr/share/webapps/phppgadmin"
<Directory "/usr/share/webapps/phppgadmin">
    DirectoryIndex index.php
    AllowOverride All
    Options FollowSymlinks
    Require all granted

    # phppgadmin raises deprecated warnings that lead
    # to parsing errors in JS
    #php_flag display_startup_errors off
    #php_flag display_errors off
    #php_flag html_errors off
</Directory>

And include it in /etc/httpd/conf/httpd.conf:

# phpPgAdmin configuration
Include conf/extra/phppgadmin.conf

You also need to connect php7:

Include conf/extra/php7_module.conf
LoadModule php7_module modules/libphp7.so

By default, everyone can see the phpPgAdmin page, to change this, edit to your liking. For example, if you only want to be able to access it from the same machine, replace by .

Lighttpd

The php setup for lighttpd is exactly the same as for apache. Make an alias for phppgadmin in your lighttpd config.

 alias.url = ( "/phppgadmin" => "/usr/share/webapps/phppgadmin/")

Then enable mod_alias, mod_fastcgi and mod_cgi in your config ( server.modules section )

Make sure lighttpd is setup to serve php files, Lighttpd#FastCGI

Restart lighttpd and browse to http://localhost/phppgadmin/index.php

nginx

Make sure to set up nginx#FastCGI with separate configuration file for PHP as shown in nginx#nginx configuration.

Using this method, you will access PhpPgAdmin as phppgadmin.<domain>.

You can setup a sub domain (or domain) with a server block such as:

server {
    server_name     phppgadmin.<domain.tld>;
    root    /usr/share/webapps/phppgadmin;
    index   index.php;
    include php.conf;
}

phpPgAdmin configuration

phpPgAdmin's configuration file is located at .

If your PostgreSQL server is on the , you may need to edit the following line:

$conf['servers'][0]['host'] = ;

to

$conf['servers'][0]['host'] = 'localhost';

Accessing your phpPgAdmin installation

Your phpPgAdmin installation is now complete. Before start using it you need to restart your apache server by restarting .

You can access your phpPgAdmin installation by going to http://localhost/phppgadmin/

Troubleshooting

Login disallowed for security reasons

If extra login security is true, then logins via phpPgAdmin with no password or certain usernames (pgsql, postgres, root, administrator) will be denied. Only set this to once you have read the FAQ and understand how to change PostgreSQL's to enable passworded local connections.

Edit and change the following line:

$conf['extra_login_security'] = true;

to:

$conf['extra_login_security'] = false;

Then restart .

Virtual Class -- cannot instantiate

This error may possibly a deprecated warning. Issue

Edit and change the following lines:

       /**                                                             
        * Constructor
        */                                                              
       function __construct()
       {                                  
               die('Virtual Class -- cannot instantiate');
       }

to:

       /**                                                             
        * Constructor
        */                                                              
       function __construct()
       {                                  
               // die('Virtual Class -- cannot instantiate');
       }
gollark: I think some people here like just passing through the drives to the OS and letting ZFS or whatever manage them.
gollark: RAID 1 is mirroring the same data onto every drive. You probably don't want to mirror to 12 different drives.
gollark: <@201025106422661120> We'll inevitably end up no deal while being told everything is fine.
gollark: <@90689480716976128> I mean, you could just have all of those volumes be in a single folder and zip that.
gollark: Have you tried with backplane and without VM?
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.