英文:
How to stop posgresql server using pgadmin?
问题
我想停止 PostgreSQL 13 服务器,因为我安装了 PostgreSQL 15。我在 pgadmin 中寻找停止服务器按钮,但似乎不存在这种按钮。
对于这么简单的功能,我可能漏掉了什么。我为什么认为错了?为什么没有停止服务器按钮?
英文:
I want to stop postgres server 13 since I installed postgres 15. I look for a stop server button in pgadmin but it looks like that this kind of a button does not exist.
For such a simple functionality, I may have missed something. What do I think wrong? Why isn't there a stop server button?
答案1
得分: 1
pgAdmin,与其名字所示相反,不是一个数据库管理程序。它是一个客户端程序,提供了模式浏览器、交互式查询工具以及通过pg_dump
/pg_restore
进行导入和导出的支持。
要停止服务器,您必须登录到数据库服务器机器。
英文:
pgAdmin is, contrary to what its name suggests, not a database administration program. It is a client program that offers a schema browser, an interactive query tool and support for import and export via pg_dump
/pg_restore
.
To stop the server, you must log into the database server machine.
答案2
得分: 0
pgAdmin不打算停止PostgreSQL服务器。这只是一个非常简单的功能,您只需使用您的操作系统的机制来完成:在Linux上使用systemctl或其他方式,在Windows上使用services.msc,在MacOS上不太清楚。
英文:
pgAdmin is not intended to stop PostgreSQL servers. It's such a simple feature that you just need to use mechanism of your OS for that: systemctl or whatever on Linux, services.msc on Windows, don't know what on MacOS.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论