pgadmin - Restart PostgreSQL Remotely -
pgadmin - Restart PostgreSQL Remotely -
can remotely restart postgresql server throught pgadmin ? user administrative privileges.
regards,
dino
i don't think there such possibility. @ best can reload connected postgresql server using pg_reload_conf() function:
pg_reload_conf sends sighup signal server, causing configuration files reloaded server processes.
command:
select pg_reload_conf(); you can install adminpack contrib module , reload server using tools menu.
edit:
according pgadmin documentation:
if pgadmin running on windows machine, can command postmaster service if have plenty access rights. come in name of service. in case of remote server, must prepended machine name (e.g. pse1\pgsql-8.0). pgadmin automatically find services running on local machine.
if pgadmin running on unix machine, can command processes running on local machine if have plenty access rights. come in total path , needed options access pg_ctl program. when executing service command functions, pgadmin append status/start/stop keywords this. example: sudo /usr/local/pgsql/bin/pg_ctl -d /data/pgsql
you can seek utilize start service/stop service options (in tools menu) restart remote server.
postgresql pgadmin
Comments
Post a Comment