Postgresql集群初始化
SQL 分发预初始化的目录集群,但对于 postgresql,我们需要使用 initdb 和网络服务帐户初始化集群。它在少数情况下会失败并造成一些痛苦!
可以自己初始化集群并分发预初始化的集群吗?
谢谢
SQL distributes pre-initialized catalog cluster but for postgresql we need initialize cluster using initdb and a network service account. It fails in few cases and causing bit of misery!
Can initialize cluster ourselves and distribute pre-initialized cluster?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“集群”(或数据目录)取决于操作系统和体系结构。因此,在 32 位 Linux 上使用 initdb 初始化的数据目录将无法在 64 位 Windows 上运行。
但你不需要这样做。仅当您想将 PostgreSQL 作为服务运行时,才需要服务帐户。
您可以轻松地使用 ZIP 发行版来安装和启动 Postgres,而无需完整的安装或服务帐户。
执行此操作的步骤如下:
请注意,步骤 2) 和 3) 必须使用同一用户运行,否则服务器将没有权限写入数据目录。
这些步骤可以轻松地放入批处理文件或 shell 脚本中。
The "cluster" (or data directory) depends on the operating system and the architecture. So a data directory that was initialized with initdb on a 32bit Linux will not work on a 64bit Windows.
But you don't need to do that. A service account is only necessary if you want to run PostgreSQL as a service.
You can easily use the ZIP distribution to install and start Postgres without the need for a full-fledge installation or a service account.
The steps to do so are:
Note that the steps 2) and 3) must be run using the same user, otherwise the server will have no priviliges to write to the data directory.
These steps can easily be put into a batch file or shell script.
很难理解你的问题,但我认为你正在谈论 PostgreSQL 的 Windows 安装程序。正确的?什么版本、什么安装程序、错误消息、日志记录等如何?
安装程序可以在此处找到。
Hard to understand your question, but I think you are talking about the Windows installer for PostgreSQL. Right? What version, what installer, what about error messages, loggings, etc. ?
The installer can be found here.