Can I remotely restart a PostgreSQL server throught PGAdmin ? The user I currently is the administrative privileges.

Regards,

Dino

link|improve this question

Why do you want to restart? Is there some less drastic measure you can take to achieve your goal? – Mark Mann Jul 10 '11 at 6:32
feedback

1 Answer

up vote 1 down vote accepted

I don't think there is such possibility. At best you can reload connected PostgreSQL server using pg_reload_conf() function:

pg_reload_conf sends a SIGHUP signal to the server, causing configuration files to be reloaded by all server processes.

Command:

SELECT pg_reload_conf();

You can also install adminpack contrib module and reload server using Tools menu.

EDIT:

According to pgAdmin documentation:

If pgAdmin is running on a Windows machine, it can control the postmaster service if you have enough access rights. Enter the name of the service. In case of a remote server, it must be prepended by the machine name (e.g. PSE1\pgsql-8.0). pgAdmin will automatically discover services running on your local machine.

If pgAdmin is running on a Unix machine, it can control processes running on the local machine if you have enough access rights. Enter a full path and needed options to access the pg_ctl program. When executing service control functions, pgAdmin will append status/start/stop keywords to this. Example: sudo /usr/local/pgsql/bin/pg_ctl -D /data/pgsql

You can try use Start Service/Stop Service options (in Tools menu) to restart remote server.

link|improve this answer
1  
Note: reloading does not acknowledge changes for many of the settings in postgresql.conf (e.g. ListenAddress). You need a full restart for some settings changes to take effect. – Mark Mann Jul 10 '11 at 6:31
@MarkMann: Thanks for addition, you're right (+1) – Grzegorz Szpetkowski Jul 10 '11 at 10:38
@Grzegors and @Markmann : Thanks for the answers, now I now what the limitations on administration and what I can do. – Dino Jul 11 '11 at 7:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.