Server instrumentation

The server lacks instrumentation functions.

pgAdmin III uses some support functions that are not available by default in all PostgreSQL versions. These enable some tasks that make life easier when dealing with log files and configuration files.

The adminpack is installed and activated by default if you are running the 'official' pgInstaller distribution of PostgreSQL for Windows and is included as a contrib module with all versions of PostgreSQL 8.2 and above. However, if you are running any other version of PostgreSQL you will need to manually install it. To do so, simply copy the appropriate adminpack source code to the /contrib directory of your pre-configured PostgreSQL source tree. You can download the adminpacks here.

Run the following commands (substituting admin for admin81 if required):

    # cd $PGSRC/contrib/admin
    # make all
    # make install

The module should now be built, and installed into your existing PostgreSQL installation. To be used, you must now install the module into the database you use as pgAdmin's Maintenance DB (normally postgres, though you may wish to use a different database). To do so, locate the admin.sql or admin81.sql file installed in the previous step - normally this may be found in /usr/local/pgsql/share/contrib/ and run it against your database. You will normally need to do this as the PostgreSQL superuser:

    $ psql postgres < /usr/local/pgsql/share/contrib/admin.sql

The next time you connect to the server with pgAdmin, it will detect the presence of the adminpack and offer full functionality.

Extended server instrumentation is not supported for PostgreSQL 7.3 and 7.4.