远程重启 PostgreSQL
我可以通过 PGAdmin 远程重启 PostgreSQL 服务器吗?当前用户I是管理权限。
问候,
迪诺
Can I remotely restart a PostgreSQL server throught PGAdmin ? The user I currently is the administrative privileges.
Regards,
Dino
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为不存在这种可能性。最好的情况是,您可以使用
pg_reload_conf()
函数:命令:
您还可以安装 adminpack contrib 模块 并使用“工具”菜单重新加载服务器。
编辑:
根据 pgAdmin 文档:
您可以尝试使用“启动服务”/“停止服务”选项(在“工具”菜单中)重新启动远程服务器。
I don't think there is such possibility. At best you can reload connected PostgreSQL server using
pg_reload_conf()
function:Command:
You can also install adminpack contrib module and reload server using Tools menu.
EDIT:
According to pgAdmin documentation:
You can try use Start Service/Stop Service options (in Tools menu) to restart remote server.